/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Disable animations/transitions until page is fully ready to prevent initial flicker */
html:not(.page-ready) *,
html:not(.page-ready) *::before,
html:not(.page-ready) *::after {
  transition: none !important;
  animation: none !important;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #364d59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #feb900; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.55);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #1a1f2b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffd700; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size-adjust: 0.5;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size-adjust: 0.5;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
  font-size-adjust: 0.5;
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 12px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .topbar-slogan {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 40px;
  margin: 0;
  color: var(--contrast-color);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 40px;
  text-align: right;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 30px;
  margin-right: 8px;
}

.header .logo .sitename {
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  color: #DAA520;
}

.header .logo .sitename-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header .logo .sitename-main {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #DAA520;
  line-height: 1.2;
}

.header .logo .sitename-sub {
  font-size: 15px;
  margin: 0;
  font-weight: 500;
  color: #c4a657;
  line-height: 1;
  margin-top: 2px;
}

/* Responsive logo styles */
@media (max-width: 768px) {
  .header .logo .sitename-main {
    font-size: 24px;
  }
  
  .header .logo .sitename-sub {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .header .logo .sitename-main {
    font-size: 20px;
  }
  
  .header .logo .sitename-sub {
    font-size: 12px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
  --nav-hover-color: #3c3c3c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 12px 10px;
  }

  .navmenu>ul>li>a {
    border-radius: 999px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 8px 12px;
    font-family: var(--nav-font);
    font-weight: 600;
    font-size-adjust: 0.5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
    text-transform: uppercase;
    border-radius: 999px;
    background: transparent;
  }

  .navmenu>ul>li>a.active,
  .navmenu>ul>li.active>a,
  .navmenu>ul>li>a.active:focus,
  .navmenu>ul>li.active>a:focus {
    color: #1a1a1a;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 179, 0, 0.95) 100%);
    box-shadow: 0 8px 22px rgba(255, 215, 0, 0.35);
  }

  .navmenu>ul>li>a.active i,
  .navmenu>ul>li.active>a i {
    color: #1a1a1a;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    display: none;
  }

  .navmenu li:hover>a:not(.active),
  .navmenu li:hover>a:not(.active):focus {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 14px 0;
    background: #ffffff;
    display: none;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 14px;
    z-index: 99;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 22px;
    font-size: 0.95rem;
    text-transform: none;
    font-weight: 500;
    color: var(--nav-dropdown-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  color: inherit;
  transition: transform 0.2s ease;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #ffd700;
    background: rgba(15, 23, 42, 0.05);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    display: block;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
    display: none;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
    display: block;
  }

  .navmenu .dropdown>a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .navmenu .dropdown>a .toggle-dropdown {
    margin-left: 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
  }

  /* Right-opening submenu for "Egyéb szolgáltatások" */
  .navmenu .dropdown .dropdown ul.dropdown-right {
    top: 0;
    left: 100%;
    visibility: hidden;
    display: none;
  }

  .navmenu .dropdown .dropdown:hover>ul.dropdown-right {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
    display: block;
  }

  /* Multi-level dropdown styling for "Műanyag nyílászárók" */
  .navmenu .dropdown .dropdown ul.dropdown-right {
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f7f8fb;
  }

  .navmenu .dropdown .dropdown ul.dropdown-right li {
    min-width: 200px;
  }

  .navmenu .dropdown .dropdown ul.dropdown-right a {
    padding: 10px 18px;
    font-size: 14px;
    color: #1a1f2b;
    border-radius: 8px;
    margin: 2px 10px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .navmenu .dropdown .dropdown ul.dropdown-right a:hover {
    color: #ffd700;
    background: rgba(15, 23, 42, 0.05);
    transform: none;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .navmenu .mobile-call-item {
    padding: 12px 24px 0;
    text-align: center;
  }

  .navmenu .mobile-call-link {
    width: auto;
    max-width: 320px;
    margin: 0 auto;
  }
  .mobile-nav-toggle {
    color: #ffd700;
    font-size: 28px;
    line-height: 1;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease-in-out;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    transform: rotate(0deg);
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .mobile-nav-toggle::before {
    display: block;
    line-height: 1;
    text-align: center;
    width: 1em;
    height: 1em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-75%, -50%);
  }

  .mobile-nav-toggle:hover {
    color: #ffbe32;
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
  }

  .mobile-nav-toggle:active {
    transform: scale(0.95);
  }

  .mobile-nav-toggle.active {
    transform: rotate(180deg);
  }

  .mobile-nav-toggle.active:hover {
    transform: rotate(180deg) scale(1.05);
  }

  .mobile-nav-toggle.active:active {
    transform: rotate(180deg) scale(0.95);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 16px 20px 16px;
    padding: 20px 0;
    margin: 0;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
    overflow-y: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    transform: translateX(100%);
    opacity: 0;
  }

  .navmenu ul::-webkit-scrollbar {
    width: 4px;
  }

  .navmenu ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }

  .navmenu ul::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.6);
    border-radius: 2px;
  }

  .navmenu ul::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.8);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #1a1f2b;
    padding: 14px 22px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.3s ease, background 0.3s ease;
    margin: 6px 18px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    display: none;
  }

  .navmenu a:hover,
  .navmenu a:focus:hover {
    color: #ffd700;
    background: rgba(15, 23, 42, 0.05);
    transform: none;
    box-shadow: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 16px;
    margin-left: 10px;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    color: #ffd700;
    transform: none;
  }

  .navmenu a:hover,
  .navmenu a:focus-visible {
    color: #ffd700;
    background: rgba(15, 23, 42, 0.05);
  }

  .navmenu .dropdown.dropdown-active>a i,
  .navmenu .dropdown.dropdown-active>a:focus i {
    color: #ffd700;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 12px 0;
    margin: 8px 18px;
    background: #f7f8fb;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: none;
    transition: all 0.3s ease;
    transform: none;
    opacity: 0;
  }

  .navmenu .dropdown ul ul {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
  }

  /* Mobile multi-level dropdown styling */
  .navmenu .dropdown .dropdown ul.dropdown-right {
    background: transparent;
    border-radius: 12px;
    margin: 6px 0 0;
    padding: 8px 0;
  }

  .navmenu .dropdown .dropdown ul.dropdown-right li a {
    margin: 0 12px;
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 8px;
    background: transparent;
  }

  .navmenu .dropdown .dropdown ul.dropdown-right li a:hover {
    background: rgba(15, 23, 42, 0.05);
    transform: none;
  }

  .navmenu .dropdown ul li a {
    margin: 0;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 10px;
    background: transparent;
  }

  .navmenu .dropdown ul li a:hover {
    background: rgba(15, 23, 42, 0.05);
    transform: none;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background: transparent;
    transform: none;
    opacity: 1;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  /* Clean mobile overrides */
  .navmenu ul {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
    backdrop-filter: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #1a1f2b;
    padding: 14px 22px;
    margin: 6px 18px;
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    display: none;
  }

  .navmenu a:hover,
  .navmenu a:focus-visible {
    color: #ffd700;
    background: rgba(15, 23, 42, 0.05);
  }

  .navmenu a i,
  .navmenu a:focus i {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .navmenu .dropdown ul {
    background: #f7f8fb;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
    margin: 8px 18px;
    padding: 12px 0;
    transform: none;
  }

  .navmenu .dropdown ul li a {
    margin: 0;
    padding: 10px 18px;
    background: transparent;
    border-radius: 8px;
  }

  .navmenu .dropdown ul li a:hover {
    background: rgba(15, 23, 42, 0.05);
    transform: none;
  }

  .navmenu .dropdown .dropdown ul.dropdown-right {
    margin: 6px 0 0;
    padding: 8px 0;
    background: transparent;
  }

  .navmenu .dropdown .dropdown ul.dropdown-right li a {
    background: transparent;
    margin: 0 12px;
  }

  .navmenu .dropdown .dropdown ul.dropdown-right li a:hover {
    background: rgba(15, 23, 42, 0.05);
  }

  /* Dropdown arrow animations */
  .navmenu .toggle-dropdown {
    transition: transform 0.3s ease-in-out;
  }

  .navmenu .toggle-dropdown.bi-chevron-down.active {
    transform: rotate(180deg);
  }

  .navmenu .toggle-dropdown.bi-chevron-right.active {
    transform: rotate(90deg);
  }

  /* Second level dropdown arrows (nested dropdowns) */
  .navmenu .dropdown .dropdown .toggle-dropdown {
    transition: transform 0.3s ease-in-out;
  }

  .navmenu .dropdown .dropdown .toggle-dropdown.bi-chevron-right.active {
    transform: rotate(90deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transform: rotate(180deg);
  }

  .mobile-nav-active .mobile-nav-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    transform: rotate(180deg) scale(1.05);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: linear-gradient(135deg, 
      rgba(0, 0, 0, 0.85) 0%, 
      rgba(33, 37, 41, 0.9) 50%, 
      rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav-active .navmenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    transform: translateX(0);
    opacity: 1;
    animation: slideInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
}

/* Minimal full-screen mobile menu inspired by reference */
@media (max-width: 1199px) {
  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 24px;
    right: 24px;
  color: #ffd700;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 32px;
    z-index: 10001;
  }

  body.mobile-nav-active .mobile-nav-toggle:hover {
  color: #ffbe32;
    transform: scale(1.05);
  }

body.mobile-nav-active .navmenu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px 32px;
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
}

  body.mobile-nav-active .navmenu::before {
    display: none;
  }

  body.mobile-nav-active .navmenu>ul {
    position: static;
    inset: auto;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  max-width: 420px;
    width: 100%;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
  overflow-x: hidden;
  }

  body.mobile-nav-active .navmenu li {
    width: 100%;
    text-align: center;
  }

  body.mobile-nav-active .navmenu a,
  body.mobile-nav-active .navmenu a:focus {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #3a3f47;
    letter-spacing: -0.01em;
    padding: 0;
    display: inline-block;
    text-transform: none;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    border: none;
    background: transparent;
    box-shadow: none;
    transform: none;
  font-size-adjust: 0.5;
  }

  body.mobile-nav-active .navmenu a:hover,
  body.mobile-nav-active .navmenu a:focus-visible {
    color: #ffd700;
  }

  body.mobile-nav-active .navmenu > ul > li:not(.dropdown) > a.active,
  body.mobile-nav-active .navmenu > ul > li:not(.dropdown) > a.active:focus {
    color: #1a1a1a;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 179, 0, 0.95) 100%);
    padding: 10px 24px;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.35);
  }

  body.mobile-nav-active .navmenu > ul > li > a.btn,
  body.mobile-nav-active .navmenu > ul > li > a.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    max-width: 320px;
    padding: 14px 32px;
    border-radius: 999px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: none;
    box-shadow: 0 15px 35px rgba(255, 179, 0, 0.35);
    border: none;
  }

  body.mobile-nav-active .navmenu > ul > li > a.btn:hover,
  body.mobile-nav-active .navmenu > ul > li > a.btn:focus-visible {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 179, 0, 0.45);
  }

  body.mobile-nav-active .navmenu .dropdown.active.keep-active > a {
    color: #1a1a1a;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 179, 0, 0.95) 100%);
    padding: 10px 24px;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.35);
  }

  body.mobile-nav-active .navmenu .dropdown>a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

body.mobile-nav-active .navmenu a::before {
  display: none;
}

body.mobile-nav-active .navmenu a i,
body.mobile-nav-active .navmenu a:focus i {
  background: transparent;
  border: none;
  box-shadow: none;
  margin-left: 10px;
}

body.mobile-nav-active .navmenu a i:hover,
body.mobile-nav-active .navmenu a:focus i:hover {
  color: #ffd700;
  transform: none;
}

  body.mobile-nav-active .navmenu .dropdown>a .toggle-dropdown {
    font-size: 0.95rem;
    color: inherit;
    margin-left: 12px;
  }

  body.mobile-nav-active .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 12px 0 4px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
  }

  body.mobile-nav-active .navmenu .dropdown ul.dropdown-active {
    display: block;
  }

  body.mobile-nav-active .navmenu .dropdown ul a {
    font-size: 1rem;
    font-weight: 500;
    color: #7d828c;
    display: block;
    padding: 6px 0;
  }

  body.mobile-nav-active .navmenu .dropdown ul a:hover {
    color: #ffd700;
  }

  /* Highlight all active links in dropdowns (both leaf links and dropdown parent links if they are the current page) */
  body.mobile-nav-active .navmenu .dropdown ul > li > a.active,
  body.mobile-nav-active .navmenu .dropdown ul > li.active > a,
  body.mobile-nav-active .navmenu .dropdown ul.dropdown-right > li > a.active,
  body.mobile-nav-active .navmenu .dropdown ul.dropdown-right > li.active > a,
  body.mobile-nav-active .navmenu .dropdown .dropdown ul > li > a.active,
  body.mobile-nav-active .navmenu .dropdown .dropdown ul > li.active > a {
    color: #ffd700;
    background: transparent;
    padding: 6px 0;
    box-shadow: none;
    font-weight: 600;
  }
  
  /* Also highlight dropdown parent links if they are the current page (have active class on the link) */
  body.mobile-nav-active .navmenu .dropdown > a.active {
    color: #ffd700;
    background: transparent;
  }
  
  /* Don't highlight dropdown parent links that are just opened but not current page */
  body.mobile-nav-active .navmenu .dropdown.active:not(.keep-active) > a:not(.active) {
    color: #3a3f47;
    background: transparent;
  }

  body.mobile-nav-active .mobile-call-item {
    margin-top: 32px;
  }

  body.mobile-nav-active .mobile-call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    max-width: 320px;
    padding: 14px 24px;
    border-radius: 999px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(255, 179, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  body.mobile-nav-active .mobile-call-link:hover {
    transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 179, 0, 0.45);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  font-family: sans-serif;
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 30px;
  line-height: 1.6;
  margin-top: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: #DAA520;
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/* Hero Premium Styles */
.hero-badge {
  display: inline-block;
  margin-bottom: 2rem;
}

.badge-text {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.15) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
  white-space: nowrap;
  display: inline-block;
}

/* Mobile responsive styles for hero badge */
@media (max-width: 768px) {
  .badge-text {
    font-size: 12px;
    padding: 10px 20px;
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .badge-text {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.3px;
  }
}

.hero-title {
  margin-bottom: 2rem;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-highlight {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ffd700 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.title-subtitle {
  color: #ffffff;
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .title-subtitle {
    font-size: 0.7em;
    letter-spacing: 1px;
  }
}

.hero-description {
  color: #e8e8e8;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

.hero-features {
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Disable hover animation only for hero section feature items (landing page) */
.hero-features .feature-item:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
  box-shadow: none;
}

.hero-features .feature-item:hover .feature-icon {
  color: #ffd700;
  transform: none;
}

.hero-cta {
  margin-top: 2rem;
}

.cta-text {
  color: #e8e8e8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.cta-buttons .btn i {
  margin: 0;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border: none;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.cta-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
  }
  
  .section-title h2 span {
    display: block !important;
    margin-bottom: 5px;
  }
  
  .section-title h2 span:last-child {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts {
  padding-top: 60px;
  padding-bottom: 60px;
}

.recent-blog-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.gallery-2 .isotope-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.gallery-2 .isotope-filters li:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.gallery-2 .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 576px) {
  .gallery-2 .isotope-filters li {
    margin-bottom: 5px;
  }
}

.gallery-2 .gallery-item {
  margin-bottom: 30px;
}

.gallery-2 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-2 .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-2 .gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery-2 .gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-2 .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-2 .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-2 .gallery-img:hover img {
  transform: scale(1.05);
}

.gallery-2 .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery-2 .gallery-info {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery-2 .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-2 .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  margin-bottom: 15px;
}

.gallery-2 .gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  line-height: 1;
  transition: all 0.3s ease;
}

.gallery-2 .gallery-link i {
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gallery-2 .gallery-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .gallery-2 .gallery-info h4 {
    font-size: 16px;
  }

  .gallery-2 .gallery-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gallery-2 .isotope-filters li {
    padding: 6px 14px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery-2 .gallery-overlay {
    padding: 15px;
  }

  .gallery-2 .gallery-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .gallery-2 .gallery-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gallery-2 .gallery-link {
    width: 35px;
    height: 35px;
  }

  .gallery-2 .gallery-link i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.premium-primary-btn {
  /* ensure consistent spacing below CTA across pages */
  margin-bottom: 0;
}

/* container with multiple CTA buttons */
.premium-cta-buttons {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .premium-primary-btn {
    margin-bottom: 24px !important;
  }
  .premium-cta-buttons {
    margin-bottom: 24px !important;
  }
}
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action 12 Section
--------------------------------------------------------------*/
.call-to-action-12 {
  position: relative;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-12 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action-12 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action-12 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action-12 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.call-to-action-12 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-12 .features .feature-item span {
  font-weight: 500;
}

.call-to-action-12 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action-12 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-12 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action-12 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action-12 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action-12 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action-12 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-12 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action-12 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-12 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action-12 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action-12 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action-12 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action-12 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action-12 .decoration .circle-1,
.call-to-action-12 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-12 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action-12 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action-12 {
    padding: 2rem;
  }

  .call-to-action-12 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action-12 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.call-to-action-12 .carousel {
  width: 100%;
  height: auto;
}

.call-to-action-12 .carousel .carousel-inner {
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-12 .carousel .carousel-control-prev,
.call-to-action-12 .carousel .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.call-to-action-12 .carousel .carousel-control-prev:hover,
.call-to-action-12 .carousel .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.call-to-action-12 .carousel .carousel-control-prev span,
.call-to-action-12 .carousel .carousel-control-next span {
  filter: invert(1);
}

.call-to-action-12 .carousel .carousel-control-prev {
  left: -1.5rem;
}

.call-to-action-12 .carousel .carousel-control-next {
  right: -1.5rem;
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 .info-item+.info-item {
  margin-top: 40px;
}

.contact-3 .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-3 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-3 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-3 .php-email-form {
  height: 100%;
}

.contact-3 .php-email-form input[type=text],
.contact-3 .php-email-form input[type=email],
.contact-3 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-3 .php-email-form input[type=text]:focus,
.contact-3 .php-email-form input[type=email]:focus,
.contact-3 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-3 .php-email-form input[type=text]::placeholder,
.contact-3 .php-email-form input[type=email]::placeholder,
.contact-3 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-3 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-3 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.info-item {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: 0.3s ease;
}

.info-item:hover {
  background: #eef0f4;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.call-to-action .image-wrapper img {
  transition: transform 0.5s ease;
}

.call-to-action .image-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .call-to-action .image-wrapper {
    margin-bottom: 30px;
  }
}

.call-to-action .content-wrapper {
  padding: 20px;
}

.call-to-action .content-wrapper h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .call-to-action .content-wrapper h2 {
    font-size: 2rem;
  }
}

.call-to-action .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.call-to-action .features {
  margin-bottom: 35px;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.call-to-action .features .feature-item span {
  font-size: 1.05rem;
}

.call-to-action .cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.call-to-action .cta-actions .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action .cta-actions .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.call-to-action .cta-actions .secondary-btn {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action .cta-actions .secondary-btn i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.call-to-action .cta-actions .secondary-btn:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 7 Section
--------------------------------------------------------------*/
.about-7 .about-content {
  position: relative;
  z-index: 1;
}

.about-7 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-7 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-7 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-7 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-7 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-7 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-7 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-7 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-7 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-7 .about-content::before,
.about-7 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-7 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-7 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-7 .about-image {
  position: relative;
  z-index: 1;
}

.about-7 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-7 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-7 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  --background-color: var(--contrast-color);
}

.call-to-action-2 .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action-2 .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action-2 .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action-2 .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action-2 .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action-2 .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-2 .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action-2 .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action-2 .cta-box {
    padding: 60px 20px;
  }

  .call-to-action-2 .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action-2 .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action-2 .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 7 Section
--------------------------------------------------------------*/
.call-to-action-7 .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.call-to-action-7 .image-wrapper img {
  transition: transform 0.5s ease;
}

.call-to-action-7 .image-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .call-to-action-7 .image-wrapper {
    margin-bottom: 30px;
  }
}

.call-to-action-7 .content-wrapper {
  padding: 20px;
}

.call-to-action-7 .content-wrapper h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .call-to-action-7 .content-wrapper h2 {
    font-size: 2rem;
  }
}

.call-to-action-7 .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.call-to-action-7 .features {
  margin-bottom: 35px;
}

.call-to-action-7 .features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.call-to-action-7 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.call-to-action-7 .features .feature-item span {
  font-size: 1.05rem;
}

.call-to-action-7 .cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action-7 .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.call-to-action-7 .cta-actions .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-7 .cta-actions .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.call-to-action-7 .cta-actions .secondary-btn {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-7 .cta-actions .secondary-btn i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.call-to-action-7 .cta-actions .secondary-btn:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 14 Section
--------------------------------------------------------------*/
.about-14 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-14 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-14 .about-title {
    font-size: 1.6rem;
  }
}

.about-14 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-14 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-14 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-14 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about-14 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-14 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-14 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-14 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-14 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-14 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-14 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-14 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-14 .content-card:hover .card-image img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# About 10 Section
--------------------------------------------------------------*/
.about-10 .about-content {
  position: relative;
  z-index: 1;
}

.about-10 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-10 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-10 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-10 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-10 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-10 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-10 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-10 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-10 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-10 .about-content::before,
.about-10 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-10 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-10 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-10 .about-image {
  position: relative;
  z-index: 1;
}

.about-10 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-10 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-10 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 8 Section
--------------------------------------------------------------*/
.call-to-action-8 {
  --background-color: var(--contrast-color);
}

.call-to-action-8 .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action-8 .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action-8 .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action-8 .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action-8 .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action-8 .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-8 .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action-8 .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action-8 .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action-8 .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action-8 .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action-8 .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action-8 .cta-box {
    padding: 60px 20px;
  }

  .call-to-action-8 .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action-8 .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action-8 .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 6 Section
--------------------------------------------------------------*/
.call-to-action-6 .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.call-to-action-6 .image-wrapper img {
  transition: transform 0.5s ease;
}

.call-to-action-6 .image-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .call-to-action-6 .image-wrapper {
    margin-bottom: 30px;
  }
}

.call-to-action-6 .content-wrapper {
  padding: 20px;
}

.call-to-action-6 .content-wrapper h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .call-to-action-6 .content-wrapper h2 {
    font-size: 2rem;
  }
}

.call-to-action-6 .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.call-to-action-6 .features {
  margin-bottom: 35px;
}

.call-to-action-6 .features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.call-to-action-6 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.call-to-action-6 .features .feature-item span {
  font-size: 1.05rem;
}

.call-to-action-6 .cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action-6 .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.call-to-action-6 .cta-actions .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-6 .cta-actions .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.call-to-action-6 .cta-actions .secondary-btn {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-6 .cta-actions .secondary-btn i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.call-to-action-6 .cta-actions .secondary-btn:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 9 Section
--------------------------------------------------------------*/
.about-9 {
  background-color: #f5f5f5;
}

.about-9 .about-content {
  position: relative;
  z-index: 1;
}

.about-9 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-9 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-9 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-9 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-9 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-9 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-9 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-9 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-9 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-9 .about-content::before,
.about-9 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-9 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-9 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-9 .about-image {
  position: relative;
  z-index: 1;
}

.about-9 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-9 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-9 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About 12 Section
--------------------------------------------------------------*/
.about-12 {
  background-color: #fdf8f2;
}

.about-12 .about-content {
  position: relative;
  z-index: 1;
}

.about-12 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-12 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-12 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-12 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-12 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-12 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-12 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-12 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-12 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-12 .about-content::before,
.about-12 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-12 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-12 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-12 .about-image {
  position: relative;
  z-index: 1;
}

.about-12 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-12 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-12 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About 13 Section
--------------------------------------------------------------*/
.about-13 {
  background-color: #faf3e0;
}

.about-13 .about-content {
  position: relative;
  z-index: 1;
}

.about-13 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-13 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-13 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-13 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-13 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-13 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-13 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-13 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-13 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-13 .about-content::before,
.about-13 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-13 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-13 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-13 .about-image {
  position: relative;
  z-index: 1;
}

.about-13 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-13 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-13 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 5 Section
--------------------------------------------------------------*/
.call-to-action-5 {
  --background-color: var(--contrast-color);
}

.call-to-action-5 .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action-5 .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action-5 .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action-5 .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action-5 .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action-5 .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-5 .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action-5 .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action-5 .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action-5 .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action-5 .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action-5 .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action-5 .cta-box {
    padding: 60px 20px;
  }

  .call-to-action-5 .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action-5 .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action-5 .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 9 Section
--------------------------------------------------------------*/
.call-to-action-9 .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.call-to-action-9 .image-wrapper img {
  transition: transform 0.5s ease;
}

.call-to-action-9 .image-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .call-to-action-9 .image-wrapper {
    margin-bottom: 30px;
  }
}

.call-to-action-9 .content-wrapper {
  padding: 20px;
}

.call-to-action-9 .content-wrapper h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .call-to-action-9 .content-wrapper h2 {
    font-size: 2rem;
  }
}

.call-to-action-9 .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.call-to-action-9 .features {
  margin-bottom: 35px;
}

.call-to-action-9 .features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.call-to-action-9 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.call-to-action-9 .features .feature-item span {
  font-size: 1.05rem;
}

.call-to-action-9 .cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action-9 .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.call-to-action-9 .cta-actions .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-9 .cta-actions .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.call-to-action-9 .cta-actions .secondary-btn {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-9 .cta-actions .secondary-btn i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.call-to-action-9 .cta-actions .secondary-btn:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 11 Section
--------------------------------------------------------------*/
.about-11 .about-content {
  position: relative;
  z-index: 1;
}

.about-11 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-11 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-11 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-11 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-11 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-11 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-11 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-11 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-11 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-11 .about-content::before,
.about-11 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-11 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-11 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-11 .about-image {
  position: relative;
  z-index: 1;
}

.about-11 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-11 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-11 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 10 Section
--------------------------------------------------------------*/
.call-to-action-10 {
  --background-color: var(--contrast-color);
}

.call-to-action-10 .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action-10 .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action-10 .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action-10 .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action-10 .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action-10 .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-10 .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action-10 .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action-10 .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action-10 .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action-10 .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action-10 .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action-10 .cta-box {
    padding: 60px 20px;
  }

  .call-to-action-10 .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action-10 .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action-10 .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# About 6 Section
--------------------------------------------------------------*/
.about-6 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-6 .content ul {
  list-style: none;
  padding: 0;
}

.about-6 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-6 .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-6 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-4 .content ul {
  list-style: none;
  padding: 0;
}

.about-4 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-4 .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-4 .content p:last-child {
  margin-bottom: 0;
}

.about-4 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.call-to-action-3 .image-wrapper img {
  transition: transform 0.5s ease;
}

.call-to-action-3 .image-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .call-to-action-3 .image-wrapper {
    margin-bottom: 30px;
  }
}

.call-to-action-3 .content-wrapper {
  padding: 20px;
}

.call-to-action-3 .content-wrapper h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .call-to-action-3 .content-wrapper h2 {
    font-size: 2rem;
  }
}

.call-to-action-3 .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.call-to-action-3 .features {
  margin-bottom: 35px;
}

.call-to-action-3 .features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.call-to-action-3 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.call-to-action-3 .features .feature-item span {
  font-size: 1.05rem;
}

.call-to-action-3 .cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action-3 .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.call-to-action-3 .cta-actions .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-3 .cta-actions .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.call-to-action-3 .cta-actions .secondary-btn {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-3 .cta-actions .secondary-btn i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.call-to-action-3 .cta-actions .secondary-btn:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 15 Section
--------------------------------------------------------------*/
.about-15 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-15 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-15 .about-title {
    font-size: 1.6rem;
  }
}

.about-15 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-15 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-15 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-15 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about-15 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-15 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-15 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-15 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-15 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-15 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-15 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-15 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-15 .content-card:hover .card-image img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# About 8 Section
--------------------------------------------------------------*/
.about-8 .about-content {
  position: relative;
  z-index: 1;
}

.about-8 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-8 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-8 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-8 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-8 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-8 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-8 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-8 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-8 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-8 .about-content::before,
.about-8 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-8 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-8 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-8 .about-image {
  position: relative;
  z-index: 1;
}

.about-8 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-8 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-8 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Call To Action 4 Section
--------------------------------------------------------------*/
.call-to-action-4 {
  --background-color: var(--contrast-color);
}

.call-to-action-4 .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action-4 .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action-4 .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action-4 .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action-4 .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action-4 .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-4 .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action-4 .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action-4 .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action-4 .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action-4 .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action-4 .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action-4 .cta-box {
    padding: 60px 20px;
  }

  .call-to-action-4 .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action-4 .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action-4 .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Blog Details 2 Section
--------------------------------------------------------------*/
.blog-details-2 {
  padding-bottom: 30px;
}

.blog-details-2 .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details-2 .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details-2 .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details-2 .content {
  margin-top: 20px;
}

.blog-details-2 .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details-2 .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details-2 .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details-2 .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-2 .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-2 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details-2 .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details-2 .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-2 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details-2 .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details-2 .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details-2 .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details-2 .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details-2 .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details-2 .meta-bottom .cats li {
  display: inline-block;
}

.blog-details-2 .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details-2 .meta-bottom .tags li {
  display: inline-block;
}

.blog-details-2 .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details-2 .meta-bottom .share {
  font-size: 16px;
}

.blog-details-2 .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Details 4 Section
--------------------------------------------------------------*/
.blog-details-4 {
  padding-bottom: 30px;
}

.blog-details-4 .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details-4 .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details-4 .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details-4 .content {
  margin-top: 20px;
}

.blog-details-4 .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details-4 .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details-4 .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details-4 .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-4 .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-4 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details-4 .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details-4 .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-4 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details-4 .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details-4 .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details-4 .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details-4 .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details-4 .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details-4 .meta-bottom .cats li {
  display: inline-block;
}

.blog-details-4 .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details-4 .meta-bottom .tags li {
  display: inline-block;
}

.blog-details-4 .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details-4 .meta-bottom .share {
  font-size: 16px;
}

.blog-details-4 .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Details 3 Section
--------------------------------------------------------------*/
.blog-details-3 {
  padding-bottom: 30px;
}

.blog-details-3 .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details-3 .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details-3 .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details-3 .content {
  margin-top: 20px;
}

.blog-details-3 .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details-3 .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details-3 .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details-3 .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-3 .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-3 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details-3 .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details-3 .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-3 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details-3 .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details-3 .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details-3 .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details-3 .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details-3 .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details-3 .meta-bottom .cats li {
  display: inline-block;
}

.blog-details-3 .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details-3 .meta-bottom .tags li {
  display: inline-block;
}

.blog-details-3 .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details-3 .meta-bottom .share {
  font-size: 16px;
}

.blog-details-3 .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Details 5 Section
--------------------------------------------------------------*/
.blog-details-5 {
  padding-bottom: 30px;
}

.blog-details-5 .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details-5 .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details-5 .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details-5 .content {
  margin-top: 20px;
}

.blog-details-5 .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details-5 .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details-5 .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details-5 .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-5 .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-5 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details-5 .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details-5 .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-5 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details-5 .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details-5 .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details-5 .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details-5 .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details-5 .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details-5 .meta-bottom .cats li {
  display: inline-block;
}

.blog-details-5 .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details-5 .meta-bottom .tags li {
  display: inline-block;
}

.blog-details-5 .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details-5 .meta-bottom .share {
  font-size: 16px;
}

.blog-details-5 .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Details 6 Section
--------------------------------------------------------------*/
.blog-details-6 {
  padding-bottom: 30px;
}

.blog-details-6 .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details-6 .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details-6 .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details-6 .content {
  margin-top: 20px;
}

.blog-details-6 .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details-6 .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details-6 .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details-6 .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-6 .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-6 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details-6 .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details-6 .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-6 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details-6 .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details-6 .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details-6 .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details-6 .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details-6 .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details-6 .meta-bottom .cats li {
  display: inline-block;
}

.blog-details-6 .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details-6 .meta-bottom .tags li {
  display: inline-block;
}

.blog-details-6 .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details-6 .meta-bottom .share {
  font-size: 16px;
}

.blog-details-6 .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Details 7 Section
--------------------------------------------------------------*/
.blog-details-7 {
  padding-top: 60px;
  padding-bottom: 30px;
}

.blog-details-7 .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details-7 .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details-7 .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details-7 .content {
  margin-top: 20px;
}

.blog-details-7 .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details-7 .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details-7 .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details-7 .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-7 .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-7 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details-7 .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details-7 .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-7 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details-7 .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details-7 .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details-7 .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details-7 .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details-7 .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details-7 .meta-bottom .cats li {
  display: inline-block;
}

.blog-details-7 .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details-7 .meta-bottom .tags li {
  display: inline-block;
}

.blog-details-7 .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details-7 .meta-bottom .share {
  font-size: 16px;
}

.blog-details-7 .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 ul {
  list-style: none;
  padding: 0;
}

.about-5 ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about-5 ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about-5 .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-5 .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about-5 .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-5 .read-more:hover i {
  transform: translate(5px, 0);
}


.carousel-inner {
  aspect-ratio: 16 / 9; /* vagy height: 400px; */
  overflow: hidden;
}
.carousel-inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.service-item .img {
  height: 250px; /* vagy amennyi jól mutat, pl. 220px, 300px */
  overflow: hidden;
}

.service-item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.equal-height-cards > [class^="col-"] {
  display: flex;
}

.content-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-content p {
  margin-top: auto;
  font-size: 0.95rem;
}
.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-body p {
  margin-top: auto;
}

.clients {
  .clients-slider {
    padding: 1rem 0;
  }

  .client-item {
    padding: 1.25rem;
    text-align: center;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 0 20px color-mix(in srgb, var(--default-color), transparent 95%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-item img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
  }

  /* Specific fixes for Deceuninck logo - limit width */
  .client-item img[alt="Deceuninck"] {
    max-height: 80px;
    max-width: 85px;
    width: auto;
    object-fit: contain;
    object-position: center;
  }

  /* Keep Rehau logo at standard size */
  .client-item img[alt="Rehau"] {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    object-position: center;
  }
    overflow: hidden;

    img {
      max-width: 100%;
      max-height: 60px;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      opacity: 0.75;
      object-fit: contain;
    }

    &:hover {
      box-shadow: 0 5px 25px color-mix(in srgb, var(--accent-color), transparent 85%);

      img {
        transform: scale(1.1);
        opacity: 1;
      }
    }
  }

  .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  @media (max-width: 991px) {
    .client-item {
      height: 90px;
      padding: 1rem;

      img {
        max-height: 60px;
      }

      /* Specific fixes for Deceuninck logo on tablet - limit width */
      img[alt="Deceuninck"] {
        max-height: 60px;
        max-width: 70px;
        object-position: center;
      }

      /* Keep Rehau logo at standard size on tablet */
      img[alt="Rehau"] {
        max-height: 60px;
        object-position: center;
      }
    }
  }

  @media (max-width: 575px) {
    .client-item {
      height: 80px;
      padding: 0.875rem;

      img {
        max-height: 50px;
      }

      /* Specific fixes for Deceuninck logo on mobile - limit width */
      img[alt="Deceuninck"] {
        max-height: 50px;
        max-width: 55px;
        object-position: center;
      }

      /* Keep Rehau logo at standard size on mobile */
      img[alt="Rehau"] {
        max-height: 50px;
        object-position: center;
      }
    }
  }


/* nat��v ny��l elt��ntet��se */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* anim��lt ny��l forgat��s */
select + i {
  transition: transform 0.2s ease;
}

select:focus + i,
select:active + i {
  transform: rotate(180deg);
}

/* Product List Styles */
.staticSection {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.staticSection.backgroundGrey {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.staticSection.backgroundGrey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.staticSection.backgroundWhite {
  background: #ffffff;
  position: relative;
}

.staticTitleHolder {
  position: relative;
  margin-bottom: 60px;
  padding: 0 20px;
}

.staticTitleTop {
  margin-bottom: 70px;
}

.staticTitleBottom {
  margin-top: 70px;
}

.staticBlankEffect {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, rgba(254, 185, 0, 0.3) 50%, transparent 100%);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(254, 185, 0, 0.3);
}

.staticEffectLeft {
  left: 0;
  right: 250px;
}

.staticEffectRight {
  right: 0;
  left: 250px;
  background: linear-gradient(90deg, transparent, rgba(254, 185, 0, 0.3) 50%, var(--accent-color) 100%);
}

.staticTitleContent {
  position: relative;
  z-index: 2;
}

.staticTitleContentLeft {
  text-align: left;
}

.staticTitleContentRight {
  text-align: right;
}

.staticTitle {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
  display: inline-block;
  background: linear-gradient(135deg, var(--background-color) 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.staticTitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.staticTitle:hover::before {
  left: 100%;
}

.staticTitlePositionTopLeft {
  position: relative;
}

.staticTitlePositionTopRight {
  position: relative;
}

.staticTitlePositionBottomRight {
  position: relative;
}

.staticTitleSize2 {
  font-size: 2.5rem;
}

.staticContent {
  position: relative;
}

.paddingTop {
  padding-top: 20px;
}

.paddingBottom {
  padding-bottom: 20px;
}

.staticText {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--default-color);
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
}

.staticText::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), rgba(254, 185, 0, 0.5));
  border-radius: 20px 20px 0 0;
}

.productListHolder {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.productListSelector {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 300px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.productListSelector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), rgba(254, 185, 0, 0.7));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.productListSelector:hover::before {
  transform: scaleX(1);
}

.productListSelector:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(254, 185, 0, 0.3);
}

.productListImage {
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 249, 250, 0.3) 100%);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.productListImage img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.productListSelector:hover .productListImage img {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.productListText {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Extra spacing for top product */
.productListSelector.topProduct .productListText {
  margin-bottom: 30px;
}

.productListText a {
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.productListText a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.productListText span {
  display: block;
  font-size: 0.95rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Top product frame styling */
.productListSelector.topProduct {
  border: 3px solid var(--accent-color);
  position: relative;
  background: linear-gradient(135deg, rgba(254, 185, 0, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
  min-height: 350px;
  padding-bottom: 80px;
}

.productListSelector.topProduct::before {
  background: linear-gradient(90deg, var(--accent-color), rgba(254, 185, 0, 0.8));
  transform: scaleX(1);
}

/* Top product label */
.topProductLabel {
  position: absolute;
  top: -2px;
  left: -2px;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0 0 15px 0;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

/* Product stats section - bottom of the box */
.productStatsSection {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 0 0 20px 20px;
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--accent-color);
}

.statsRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.statsRow:last-child {
  margin-bottom: 0;
}

.statLabel {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.statValue {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: right;
}

.animatedCounter {
  display: inline-block;
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premiumBadge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 4px 8px;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
  }
}

.anchor {
  position: relative;
  top: -80px;
  visibility: hidden;
}

/* Clean Page Title */
.clean-page-title {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%), 
              url('assets/img/page-title-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clean-page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="clean-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23clean-pattern)"/></svg>');
  pointer-events: none;
}

.title-content {
  position: relative;
  z-index: 3;
  color: white;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--heading-font);
}

.subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--default-font);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e6a700 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(254, 185, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(254, 185, 0, 0.4);
  color: white;
}

.cta-button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateY(2px);
}

/* Responsive Design for Clean Page Title */
@media (max-width: 768px) {
  .clean-page-title {
    padding: 100px 0 60px;
  }
  
  .main-title {
    font-size: 2.8rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 2.2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* CTA Section Enhancement */
.cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e6a700 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h3 {
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: var(--accent-color);
  border: none;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .staticTitleSize2 {
    font-size: 2rem;
    padding: 12px 25px;
  }
  
  .staticEffectLeft,
  .staticEffectRight {
    display: none;
  }
  
  .productListHolder {
    gap: 25px;
    padding: 0 10px;
  }
  
  .productListSelector {
    width: 100%;
    max-width: 320px;
    padding: 25px 20px;
  }
  
  .staticText {
    font-size: 1.1rem;
    text-align: left;
    padding: 30px 25px;
  }
  
  .staticSection {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .staticSection {
    padding: 50px 0;
  }
  
  .staticTitleSize2 {
    font-size: 1.8rem;
    padding: 10px 20px;
  }
  
  .productListSelector {
    padding: 20px 15px;
    min-height: 200px;
    width: 100%;
    max-width: 280px;
  }
  
  .productListImage {
    padding: 15px;
  }
  
  .productListImage img {
    max-height: 180px;
  }
  
  .staticText {
    padding: 25px 20px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Probléma-Megoldás Section
--------------------------------------------------------------*/
.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
  .feature-item {
    padding: 25px 15px !important;
  }
  
  .feature-item h4 {
    font-size: 16px !important;
  }
  
  .feature-item p {
    font-size: 13px !important;
  }
  
  .problem-solution-section h3 {
    font-size: 22px !important;
  }
  
  .problem-solution-section .text-center p {
    font-size: 16px !important;
  }
}

@media (max-width: 576px) {
  .problem-solution-section h3 {
    font-size: 20px !important;
  }
  
  .problem-solution-section .text-center p {
    font-size: 15px !important;
  }
  
  .feature-item div[style*="width: 80px"] {
    width: 60px !important;
    height: 60px !important;
  }
  
  .feature-item i {
    font-size: 28px !important;
  }
}

/*--------------------------------------------------------------
# Probléma-Megoldás Section - Probléma/Megoldás boxok
--------------------------------------------------------------*/
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

.arrow-icon:hover {
  transform: translateX(10px);
}

.problem-solution-section .problem-box,
.problem-solution-section .solution-box {
  transition: all 0.3s ease;
}

.problem-solution-section .problem-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
}

.problem-solution-section .solution-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.2);
}

/* Mobilos megjelenés */
@media (max-width: 991px) {
  .problem-solution-section {
    padding: 60px 0 !important;
  }
  
  .problem-solution-section .row {
    margin-top: 60px !important;
  }
  
  .problem-solution-section .row:first-child {
    margin-top: 0 !important;
  }
  
  .problem-divider {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  
  .problem-solution-section .col-lg-2 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
  }
  
  .problem-solution-section .arrow-container {
    transform: rotate(90deg);
    margin: 30px 0 !important;
  }
  
  .problem-solution-section .arrow-icon {
    font-size: 48px !important;
  }
  
  .problem-solution-section .problem-box,
  .problem-solution-section .solution-box {
    padding: 30px !important;
  }
  
  .problem-solution-section h3 {
    font-size: 20px !important;
  }
  
  .problem-solution-section p {
    font-size: 15px !important;
  }
}

@media (max-width: 576px) {
  .problem-solution-section {
    padding: 40px 0 !important;
  }
  
  .problem-solution-section .row {
    margin-top: 50px !important;
  }
  
  .problem-solution-section .row:first-child {
    margin-top: 0 !important;
  }
  
  .problem-divider {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  
  .problem-solution-section .problem-box,
  .problem-solution-section .solution-box {
    padding: 25px !important;
    margin-bottom: 20px;
  }
  
  .problem-solution-section .col-lg-2 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  
  .problem-solution-section .arrow-container {
    margin: 20px 0 !important;
  }
  
  .problem-solution-section .arrow-icon {
    font-size: 40px !important;
  }
  
  .problem-solution-section h3 {
    font-size: 18px !important;
  }
  
  .problem-solution-section p {
    font-size: 14px !important;
  }
  
  .problem-solution-section i.bi-exclamation-triangle-fill,
  .problem-solution-section i.bi-check-circle-fill,
  .problem-solution-section i.bi-volume-up-fill,
  .problem-solution-section i.bi-volume-mute-fill,
  .problem-solution-section i.bi-sun-fill,
  .problem-solution-section i.bi-shield-fill-check,
  .problem-solution-section i.bi-house-slash-fill,
  .problem-solution-section i.bi-house-heart-fill {
    font-size: 36px !important;
  }
}

/*--------------------------------------------------------------
# Service Benefits Section - Premium Hover Effects
--------------------------------------------------------------*/

/* Benefit Card Hover Effect */
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Icon Hover Animation */
.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.benefit-card .benefit-icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icon Rotation on Hover */
.benefit-card:hover .benefit-icon i {
  animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* CTA Buttons Hover Effects */
.premium-primary-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
}

.premium-secondary-cta-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  transform: translateY(-2px);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .benefit-card {
    padding: 35px !important;
  }
  
  .benefit-card h3 {
    font-size: 1.4rem !important;
  }
  
  .benefit-card p {
    font-size: 1rem !important;
  }
  
  .benefit-icon {
    width: 60px !important;
    height: 60px !important;
  }
  
  .benefit-icon i {
    font-size: 26px !important;
  }
}

/*--------------------------------------------------------------
# Bemutatkozás / Hitelesség Section - Statistics & Trust
--------------------------------------------------------------*/

/* Stat Box Hover Effect */
.stat-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 0 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Number Counter Animation */
.stat-box h3 {
  transition: all 0.3s ease;
}

.stat-box:hover h3 {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Icon in stat box animation */
.stat-box:hover > div:first-of-type {
  transform: rotate(360deg) scale(1.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-box > div:first-of-type {
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Trust Badge / Logo Hover - Updated for image badge */
#bemutatkozas [style*="width: 100px; height: 60px"]:hover,
#bemutatkozas [style*="border-radius: 16px; padding: 20px 30px"]:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 0 20px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Why Choose Us - Icon Box Hover */
#bemutatkozas .col-lg-6:hover [style*="flex-shrink: 0"] {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.45);
}

#bemutatkozas [style*="flex-shrink: 0"] {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mobile responsive for stats section */
@media (max-width: 768px) {
  .stat-box {
    padding: 30px 20px !important;
  }
  
  .stat-box h3 {
    font-size: 2rem !important;
  }
  
  .stat-box > div:first-of-type {
    width: 50px !important;
    height: 50px !important;
  }
  
  .stat-box > div:first-of-type i {
    font-size: 22px !important;
  }
  
  #bemutatkozas [style*="padding: 60px 50px"] {
    padding: 40px 30px !important;
  }
  
  #bemutatkozas h3 {
    font-size: 1.6rem !important;
  }
  
  #bemutatkozas h4 {
    font-size: 1.2rem !important;
  }
}

/*--------------------------------------------------------------
# Title with Lines - Gold Accent Lines
--------------------------------------------------------------*/

.title-with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gold-line {
  flex: 1;
  max-width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
}

.gold-line.left {
  background: linear-gradient(90deg, transparent 0%, #ffd700 100%);
}

.gold-line.right {
  background: linear-gradient(90deg, #ffd700 0%, transparent 100%);
}

@media (max-width: 768px) {
  .gold-line {
    max-width: 50px;
  }
}

/*--------------------------------------------------------------
# Bónusz és Garancia Section - Premium Cards
--------------------------------------------------------------*/

/* Bonus Card Hover Effect */
.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Highlight Card (TOP bonus) Enhanced Hover */
.highlight-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.35);
  border-color: rgba(255, 215, 0, 0.5);
}

/* Icon Hover in Bonus/Guarantee Cards */
.bonus-card:hover > div:nth-of-type(2),
.guarantee-card:hover > div:nth-of-type(2) {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.bonus-card > div:nth-of-type(2),
.guarantee-card > div:nth-of-type(2) {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icon Pulse Animation */
.bonus-card:hover i,
.guarantee-card:hover i {
  animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Guarantee Card Hover */
.guarantee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Premium Badge Pulse on Hover */
.highlight-card:hover [style*="position: absolute; top: 15px"] {
  animation: badgePulse 1s infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); box-shadow: 0 6px 18px rgba(255, 215, 0, 0.6); }
}

/* Section Subtitles Gold Line Animation */
#bonusz-garancia h3:hover + div {
  width: 120px;
  transition: width 0.3s ease;
}

/* Mobile Responsive for Bonus/Guarantee */
@media (max-width: 768px) {
  .bonus-card,
  .guarantee-card,
  .highlight-card {
    padding: 35px 25px !important;
  }
  
  .bonus-card h4,
  .guarantee-card h4 {
    font-size: 1.25rem !important;
  }
  
  .bonus-card p,
  .guarantee-card p {
    font-size: 1rem !important;
  }
  
  .bonus-card > div:nth-of-type(2),
  .guarantee-card > div:nth-of-type(2) {
    width: 65px !important;
    height: 65px !important;
  }
  
  .bonus-card > div:nth-of-type(2) i,
  .guarantee-card > div:nth-of-type(2) i {
    font-size: 28px !important;
  }
  
  #bonusz-garancia h2 {
    font-size: 1.8rem !important;
  }
  
  #bonusz-garancia h3 {
    font-size: 1.6rem !important;
  }
}

/*--------------------------------------------------------------
# Folyamat Section - Process Cards
--------------------------------------------------------------*/

/* Process Card Hover Effect */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 35px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Step Number Badge Pulse */
.process-card:hover [style*="width: 45px; height: 45px"] {
  animation: numberPulse 1s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6); }
}

/* Icon Hover in Process Cards */
.process-card:hover [style*="width: 70px; height: 70px"] {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.process-card [style*="width: 70px; height: 70px"] {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icon Rotate Animation */
.process-card:hover i {
  animation: iconRotate 0.6s ease-in-out;
}

@keyframes iconRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(10deg) scale(1.1); }
}

/* Mobile Responsive for Process Cards */
@media (max-width: 768px) {
  .process-card {
    padding: 30px 25px !important;
  }
  
  .process-card h3 {
    font-size: 1.3rem !important;
  }
  
  .process-card p {
    font-size: 1rem !important;
  }
  
  .process-card [style*="width: 70px; height: 70px"] {
    width: 60px !important;
    height: 60px !important;
  }
  
  .process-card [style*="width: 45px; height: 45px"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }
  
  .process-card [style*="width: 70px; height: 70px"] i {
    font-size: 26px !important;
  }
  
  #folyamat h2 {
    font-size: 1.8rem !important;
  }
}

/*--------------------------------------------------------------
# G.Y.I.K. Section - FAQ Cards
--------------------------------------------------------------*/

/* FAQ Card Hover Effect */
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12), 0 0 30px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

/* Icon Hover in FAQ Cards */
.faq-card:hover [style*="width: 50px; height: 50px"] {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.45);
}

.faq-card [style*="width: 50px; height: 50px"] {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* FAQ Question (H3) Hover */
.faq-card:hover h3 {
  color: #ffb300;
}

.faq-card h3 {
  transition: color 0.3s ease;
}

/* Mobile Responsive for FAQ Cards */
@media (max-width: 768px) {
  .faq-card {
    padding: 30px 25px !important;
  }
  
  .faq-card h3 {
    font-size: 1.15rem !important;
  }
  
  .faq-card p {
    font-size: 0.95rem !important;
  }
  
  .faq-card [style*="width: 50px; height: 50px"] {
    width: 45px !important;
    height: 45px !important;
  }
  
  .faq-card [style*="width: 50px; height: 50px"] i {
    font-size: 20px !important;
  }
  
  #gyik h2 {
    font-size: 1.8rem !important;
  }
}

/* ========================================
   Utolsó Kegyelemdöfés Section Styles
======================================== */

/* Float Animation for Background Elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Benefit Cards Hover Effects */
.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(166, 105, 43, 0.3) !important;
}

.benefit-card {
  cursor: pointer;
}

/* CTA Button Hover Effects */
.premium-primary-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6) !important;
}

.premium-primary-cta-btn:hover div[style*="position: absolute; top: 0; left: -100%"] {
  left: 0 !important;
}

.premium-secondary-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  color: #000000 !important;
  border-color: #FFB300 !important;
}

.premium-secondary-cta-btn:hover div[style*="position: absolute; top: 0; left: -100%"] {
  left: 0 !important;
}

.premium-secondary-cta-btn:hover i {
  color: #000000 !important;
}

/* Mobile Responsive for Felhívás Section */
@media (max-width: 768px) {
  #felhivas h2 {
    font-size: 2.2rem !important;
  }
  
  #felhivas h2 span {
    display: block !important;
    margin-bottom: 5px;
  }
  
  #felhivas h3 {
    font-size: 1.3rem !important;
  }
  
  #felhivas .benefit-card {
    padding: 30px 20px !important;
  }
  
  #felhivas .benefit-card h4 {
    font-size: 1.2rem !important;
  }
  
  .premium-primary-cta-btn,
  .premium-secondary-cta-btn {
    padding: 16px 30px !important;
    font-size: 1rem !important;
  }
  
  .premium-primary-cta-btn span,
  .premium-secondary-cta-btn span {
    font-size: 0.95rem !important;
  }
  
  /* Mobile layout for benefit highlights */
  #felhivas .benefit-highlights {
    display: block !important;
  }
  
  #felhivas .benefit-highlights span {
    display: block !important;
    margin-bottom: 8px !important;
  }
  
  #felhivas .benefit-highlights span:last-child {
    margin-bottom: 0 !important;
  }
}

/* reCAPTCHA badge positioning */
.grecaptcha-badge {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  z-index: 1000 !important;
  opacity: 0.8 !important;
  transition: opacity 0.3s ease !important;
  width: 64px !important; /* show only the icon area */
  height: 64px !important;
  overflow: hidden !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* Mobile responsive hero title */
@media (max-width: 768px) {
  .premium-main-title {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 480px) {
  .premium-main-title {
    font-size: 1.6rem !important;
    line-height: 1.4 !important;
    padding: 0 10px;
  }
}

.grecaptcha-badge:hover {
  opacity: 1 !important;
}

/*--------------------------------------------------------------
# Icon Vertical Alignment Fix - Global Fix for All Icons in Boxes
--------------------------------------------------------------*/

/* Global fix for all Bootstrap Icons - ensures icons are centered vertically */
i[class*="bi-"],
.bi,
i.bi {
  line-height: 1 !important;
  display: inline-block;
  vertical-align: middle !important;
}

/* Fix for icons in flex/inline-flex containers with align-items: center */
div[style*="display: inline-flex"][style*="align-items"] > i,
div[style*="display: flex"][style*="align-items"] > i,
div[style*="inline-flex"] > i,
div[style*="flex"] > i:not([class*="toggle"]) {
  line-height: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

/* Fix for all icons inside containers that use flexbox centering */
div[style*="inline-flex"] i[class*="bi-"],
div[style*="flex"] i[class*="bi-"]:not([class*="toggle"]),
[style*="display: inline-flex"] i[class*="bi-"],
[style*="display: flex"] i[class*="bi-"]:not([class*="toggle"]) {
  line-height: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

/* Specific fix for common icon container classes */
.benefit-card i,
.stat-box i,
.icon-box i,
.card-icon i,
.benefit-icon i,
.premium-service-icon i {
  line-height: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

/* Fix for Bootstrap Icons pseudo-element */
.bi::before,
i[class*="bi-"]::before {
  line-height: 1 !important;
  vertical-align: middle !important;
}

/*--------------------------------------------------------------
# Badge Icon Size Fix - Reduce icon size in premium-badge and cta-badge
--------------------------------------------------------------*/

/* Reduce icon size in premium-badge and cta-badge to match text size proportionally */
.premium-badge i,
.cta-badge i,
.premium-badge i[class*="bi-"],
.cta-badge i[class*="bi-"] {
  font-size: 0.75rem !important;
}

/*--------------------------------------------------------------
# Index Page Yellow Box Icon Size Fix - Reduce icon size in yellow boxes
--------------------------------------------------------------*/

/* Fix for icons in yellow gradient boxes on index page - reduces 24px icons to 18px */
/* Targets icons that are direct children of divs with yellow gradient background and flex layout */
div[style*="background: linear-gradient"][style*="#ffd700"] > i[class*="bi-"][style*="font-size: 24px"],
div[style*="background: linear-gradient"][style*="#FFD700"] > i[class*="bi-"][style*="font-size: 24px"] {
  font-size: 18px !important;
}

/* More general fix for all icons in yellow gradient containers (55px and 50px boxes) */
#bemutatkozas div[style*="flex-shrink: 0"][style*="width: 55px"] > i,
#bemutatkozas div[style*="flex-shrink: 0"][style*="width: 50px"] > i,
.faq-card div[style*="flex-shrink: 0"][style*="width: 50px"] > i {
  font-size: 18px !important;
}

/* Fallback: target icons with 24px in any yellow gradient container */
body div[style*="background: linear-gradient(135deg, #ffd700"] i[style*="font-size: 24px"],
body div[style*="background: linear-gradient(135deg, #FFD700"] i[style*="font-size: 24px"] {
  font-size: 18px !important;
}
