/* Fonts */


:root {
  --default-font: "Lato",
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --heading-font: "Roboto", sans-serif;
  --nav-font: "Poppins", sans-serif;

}

/* Global Colors - Dynamically from DB */
:root {
                        --background-color: #ffffff;
                    --default-color: #222222;
                    --heading-color: #502e1d;
                    --accent-color: #6d9540;
                    --surface-color: #f8f9fa;
                    --contrast-color: #ffffff;
                    --nav-color: #343a40;
                    --nav-hover-color: #6d9540;
                    --nav-mobile-background-color: #ffffff;
                    --nav-dropdown-background-color: #ffffff;
                    --nav-dropdown-color: #502e1d;
                    --nav-dropdown-hover-color: #6d9540;
                    --nav-dropdown-hover-background: #cfcfcf;
            }



/* 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: #f8fbff;
  --surface-color: #ffffff;
}

.light-background {
                        --background-color: #ffffff;
                    --default-color: #222222;
                    --heading-color: #111111;
                    --accent-color: #6d9540;
                    --surface-color: #999999;
                    --contrast-color: #000000;
            }

.dark-background {
                        --background-color: #0b0f14;
                    --default-color: #cfd8dc;
                    --heading-color: #ffffff;
                    --accent-color: #6d9540;
                    --surface-color: #11161d;
                    --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);
}

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);
}

/* 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);
  }
}

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



/* Topbar Header */
.header .topbar {
    background-color: var(--background-color); /* You can override with dark or light */
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff; /* Default text color */
    line-height: 40px;
    position: relative;
    z-index: 10;
}

.header .topbar a {
    color: #fff; /* Link color */
    text-decoration: none;
    transition: color 0.3s;
}

.header .topbar a:hover {
    color: var(--accent-color); /* Highlight color on hover */
}

.header .topbar .contact-info i {
    display: flex;
    align-items: center;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    margin-left: 5px;
}

.header .topbar .contact-info i.ms-4 {
    margin-left: 20px !important; /* extra spacing for second item */
}

.header .topbar .social-links a {
    color: #fff;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    transition: color 0.3s;
}

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

.header .topbar.dark-background {
    background-color: #222; /* Dark background for topbar */
}

@media (max-width: 767px) {
    .header .topbar .social-links {
        display: none; /* Hide social links on small screens */
    }

    .header .topbar .contact-info {
        justify-content: center;
    }
}


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

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

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
@media (min-width: 1200px) {
  .mobile-nav-toggle {
    display: none !important;
  }
  
  .navmenu-overlay {
    display: none !important;
  }

  /* Hide mobile wrapper on desktop */
  .mobile-menu-wrapper {
    display: none !important;
  }

  /* Show desktop menu */
  .navmenu .desktop-menu {
    display: flex !important;
  }

  .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: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 18px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  /* Hide dropdown separator on desktop */
  .navmenu .dropdown-separator {
    display: none;
  }

  /* Menu item content wrapper */
  .navmenu a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
  }

  /* Reset all margins and positions for icons */
  .navmenu .menu-icon {
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    float: none !important;
  }

  /* Main desktop menu icons - BIG AND CENTERED */
  .navmenu > ul > li > a .menu-icon,
  .navmenu .desktop-menu > li > a .menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 90%);
    transition: 0.3s;
  }

  .navmenu > ul > li > a .menu-icon i,
  .navmenu .desktop-menu > li > a .menu-icon i {
    font-size: 18px;
    color: var(--nav-dropdown-hover-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Menu text for desktop */
  .navmenu a .menu-text {
    flex: 1;
    font-size: 18px;
    margin: 0;
    padding: 0;
  }

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

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 100%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
    position: relative;
  }

  .navmenu .dropdown ul a {
    padding: 12px 20px;
    font-size: 16px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    word-break: break-word;
  }

  .navmenu .dropdown ul a .menu-item-content {
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  /* Dropdown (sub-menu) icons - BIG AND CENTERED, ALIGNED LEFT */
  .navmenu .dropdown ul a .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 90%);
    transition: 0.3s;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .navmenu .dropdown ul a .menu-icon i {
    font-size: 16px;
    color: var(--nav-dropdown-hover-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 95%);
  }

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

  /* Sub-sub menus (third level) */
  .navmenu .dropdown .dropdown > ul {
    top: 0;
    left: 100%;
    visibility: hidden;
    margin-top: 0;
    margin-left: 0;
    min-width: 240px;
    max-width: 320px;
  }

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

  /* Sub-sub menu items */
  .navmenu .dropdown .dropdown ul a {
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    padding-left: 30px;
  }

  .navmenu .dropdown .dropdown ul a .menu-item-content {
    gap: 8px;
  }

  /* Sub-sub menu icons - BIG AND CENTERED, PROPERLY ALIGNED */
  .navmenu .dropdown .dropdown ul a .menu-icon {
    margin-left: -20px !important; /* Pull icon left to align with indented text */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 90%);
    transition: 0.3s;
  }

  .navmenu .dropdown .dropdown ul a .menu-icon i {
    font-size: 15px;
    color: var(--nav-dropdown-hover-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  .navmenu .dropdown .dropdown ul a .menu-text {
    margin-left: 8px;
  }

  /* Hide mobile specific classes on desktop */
  .navmenu .dropdown-active {
    position: relative;
  }
}

/* Mobile Navigation - Off Canvas */
@media (max-width: 1199px) {
  /* Prevent body scroll when mobile menu is open */
  body.mobile-nav-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* Mobile Toggle Button */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
    z-index: 9999;
    position: relative;
  }

  /* Hide desktop menu on mobile */
  .navmenu .desktop-menu {
    display: none !important;
  }

  /* Show mobile wrapper */
  .mobile-menu-wrapper {
    display: flex !important;
    flex-direction: column;
    height: 100%;
  }

  /* Off-canvas Menu Container */
  .navmenu {
    position: relative;
    z-index: 9997;
  }

  /* Main Off-canvas Container */
  .mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: var(--nav-mobile-background-color);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9998;
  }

  /* Mobile menu logo section - NO BORDER ON HOVER */
  .mobile-menu-logo {
    padding: 50px 20px 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    text-align: center;
    background-color: var(--nav-mobile-background-color);
    flex-shrink: 0;
  }

  .mobile-menu-logo .mobile-logo {
    max-width: 160px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: opacity 0.3s ease;
  }

  /* Logo link - NO BORDER EFFECTS */
  .mobile-menu-logo a {
    display: inline-block;
    border: none !important;
    outline: none !important;
    text-decoration: none;
  }

  .mobile-menu-logo a:hover,
  .mobile-menu-logo a:focus {
    border: none !important;
    outline: none !important;
    background: none !important;
  }

  .mobile-menu-logo a:hover .mobile-logo {
    opacity: 0.9;
  }

  /* Mobile menu list container */
  .mobile-menu-list-container {
    flex: 1;
    overflow-y: auto;
    padding: 0;
  }

  .mobile-menu-list-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Menu Links - Full width background with VERTICAL LEFT BORDER */
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 0;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
    border-left: 3px solid transparent;
  }

  /* Remove border from last item */
  .navmenu li:last-child > a {
    border-bottom: none;
  }

  /* Make dropdown links have space for toggle icon */
  .navmenu .dropdown > a {
    padding-right: 50px;
  }

  /* Menu item content wrapper */
  .navmenu a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 14px 20px;
    transition: background-color 0.3s;
    cursor: pointer;
    z-index: 1;
    position: relative;
    margin: 0;
  }

  /* Reset all margins for mobile icons */
  .mobile-menu-wrapper .menu-icon {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Main mobile menu icons */
  .navmenu a .menu-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 90%);
    transition: background-color 0.3s;
    margin: 0 !important;
  }

  .navmenu a .menu-icon i {
    font-size: 16px;
    color: var(--nav-dropdown-hover-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Menu text for mobile */
  .navmenu a .menu-text {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    padding: 0;
  }

  /* Vertical line separator for mobile ONLY */
  .navmenu .dropdown-separator {
    width: 1px;
    height: 24px;
    background-color: color-mix(in srgb, var(--nav-dropdown-color), transparent 70%);
    margin: 0 12px;
    display: block !important;
    align-self: center;
    cursor: pointer;
  }

  /* Dropdown toggle icon */
  .navmenu .toggle-dropdown {
    font-size: 14px;
    margin: 0;
    transition: transform 0.3s ease;
    width: 50px;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent !important;
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 100%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
  }

  /* Make the entire menu item clickable for non-dropdown items */
  .navmenu li:not(.dropdown) > a .menu-item-content {
    width: 100%;
  }

  /* VERTICAL LEFT BORDER ON HOVER AND ACTIVE - EXCLUDE LOGO */
  .navmenu a:hover:not(.mobile-menu-logo a),
  .navmenu .active:not(.mobile-menu-logo a),
  .navmenu .active:focus:not(.mobile-menu-logo a) {
    border-left: 3px solid var(--nav-dropdown-hover-color);
  }

  /* Hover and Active States - NO BACKGROUND ON DROPDOWNS */
  .navmenu a:hover .menu-item-content:not(.mobile-menu-logo .menu-item-content),
  .navmenu .active .menu-item-content:not(.mobile-menu-logo .menu-item-content),
  .navmenu .active:focus .menu-item-content:not(.mobile-menu-logo .menu-item-content) {
    color: var(--nav-dropdown-hover-color);
  }

  /* Only apply background to main menu items, not dropdowns */
  .navmenu > .mobile-menu-wrapper .mobile-menu-list-container > ul > li > a:hover .menu-item-content,
  .navmenu > .mobile-menu-wrapper .mobile-menu-list-container > ul > li.active > a .menu-item-content {
    background-color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 95%);
  }

  /* Remove icon background on hover/active */
  .navmenu a:hover .menu-icon:not(.mobile-menu-logo .menu-icon),
  .navmenu .active .menu-icon:not(.mobile-menu-logo .menu-icon),
  .navmenu .active:focus .menu-icon:not(.mobile-menu-logo .menu-icon) {
    background-color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 90%) !important;
  }

  .navmenu .active .menu-icon:not(.mobile-menu-logo .menu-icon) {
    background-color: var(--accent-color);
  }

  .navmenu .active .menu-icon i:not(.mobile-menu-logo .menu-icon i) {
    color: var(--contrast-color);
  }

  /* Off-canvas Overlay */
  .navmenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9996;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  /* Mobile Dropdowns - NO BACKGROUND, NO ROUNDNESS */
  .navmenu .dropdown > ul {
    display: none;
    padding: 0;
    margin: 0;
    background-color: transparent !important;
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
  }

  .navmenu .dropdown.dropdown-active > ul {
    display: block;
    animation: slideDown 0.3s ease;
  }

  /* Submenu items */
  .navmenu .dropdown ul li {
    position: relative;
    width: 100%;
  }

  .navmenu .dropdown ul li a {
    border-left: 3px solid transparent;
  }

  .navmenu .dropdown ul li a .menu-item-content {
    padding-left: 40px;
    background-color: transparent !important;
    margin: 0;
  }

  /* VERTICAL LEFT BORDER FOR SUBMENU ITEMS ON HOVER/ACTIVE */
  .navmenu .dropdown ul li a:hover,
  .navmenu .dropdown ul li.active > a {
    border-left: 3px solid var(--nav-dropdown-hover-color);
  }

  /* Remove hover background from dropdown items */
  .navmenu .dropdown ul li a:hover .menu-item-content,
  .navmenu .dropdown ul li.active > a .menu-item-content {
    background-color: transparent !important;
    color: var(--nav-dropdown-hover-color);
  }

  /* Nested submenus (sub-sub menus) - NO BACKGROUND, FURTHER INDENTED */
  .navmenu .dropdown-child > ul {
    background-color: transparent !important;
  }

  .navmenu .dropdown-submenu {
    padding-left: 0;
    width: 100%;
  }

  /* Sub-sub menu items - FURTHER INDENTED TO THE RIGHT */
  .navmenu .dropdown-submenu li a {
    border-left: 3px solid transparent;
  }

  .navmenu .dropdown-submenu li a .menu-item-content {
    padding-left: 80px !important;
    font-size: 14.5px;
    background-color: transparent !important;
    margin: 0;
  }

  /* VERTICAL LEFT BORDER FOR SUB-SUBMENU ITEMS ON HOVER/ACTIVE */
  .navmenu .dropdown-submenu li a:hover,
  .navmenu .dropdown-submenu li.active > a {
    border-left: 3px solid var(--nav-dropdown-hover-color);
  }

  /* Sub-sub menu icons */
  .navmenu .dropdown-submenu .menu-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    margin-right: 8px;
    margin-left: 0 !important;
  }

  .navmenu .dropdown-submenu .menu-icon i {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Mobile menu social section */
  .mobile-menu-social {
    padding: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    background-color: var(--nav-mobile-background-color);
    flex-shrink: 0;
  }

  .mobile-menu-social .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .mobile-menu-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .mobile-menu-social .social-icon:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
  }

  /* Active States */
  .mobile-nav-active .navmenu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-active .mobile-menu-wrapper {
    right: 0;
  }

  /* Mobile toggle button when active */
  .mobile-nav-active .mobile-nav-toggle {
    color: var(--nav-hover-color);
    position: fixed;
    right: 15px;
    top: 20px;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Rotate dropdown icon when active */
  .navmenu .dropdown-active > a .toggle-dropdown {
    transform: rotate(180deg);
  }

  /* Mobile menu animations */
  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      max-height: 500px;
      transform: translateY(0);
    }
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Ensure proper scrolling for menu list */
  .mobile-menu-list-container {
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--accent-color), transparent 50%) transparent;
  }

  .mobile-menu-list-container::-webkit-scrollbar {
    width: 6px;
  }

  .mobile-menu-list-container::-webkit-scrollbar-track {
    background: transparent;
  }

  .mobile-menu-list-container::-webkit-scrollbar-thumb {
    background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    border-radius: 3px;
  }
}

/* Ensure proper stacking on mobile */
@media (max-width: 1199px) {
  .header {
    z-index: 9990;
  }
  
  .mobile-nav-toggle {
    z-index: 9999;
  }
}


/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
    /* Hide Mobile Megamenu in Desktop */
    /* Tab Navigation */
    /* Tab Content */
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 250px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border: none;
    width: 100%;
    background: transparent;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding-left: 30px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background-color: var(--surface-color);
    border-left-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    /* Content Grid Layout */
    /* Featured Banner */
    /* Resources Layout */
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(8px);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 18px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
    transform: translateX(4px);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
    transform: translateX(3px);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    transition: 0.3s;
  }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .megamenu-2 {
    /* Hide Desktop Megamenu in Mobile */
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* Extended Dropdown 2 - Desktop */
@media (min-width: 1200px) {
  .extended-dropdown-2 ul {
    min-width: 380px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 5%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .extended-dropdown-2 ul li {
    min-width: auto;
    border-bottom: none;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .extended-dropdown-2 ul a {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--nav-dropdown-color);
    transition: all 0.25s ease;
    border-radius: 10px;
    background-color: transparent;
    position: relative;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 18px;
    color: var(--accent-color);
    margin: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--nav-dropdown-color);
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 13px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .extended-dropdown-2 ul a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon {
    transform: translateY(-2px);
  }

  .extended-dropdown-2 ul a:hover .menu-icon::before {
    opacity: 0, 3;
    box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon i {
    color: color-mix(in srgb, var(--accent-color), #000000 10%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-description {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 30%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge {
    transform: scale(1.05);
  }

  .extended-dropdown-2 ul a:hover .menu-badge:not(.hot):not(.updates) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 75%);
  }
}

/* Extended Dropdown 2 - Mobile */
@media (max-width: 1199px) {
  .extended-dropdown-2 ul {
    background-color: var(--nav-mobile-background-color);
    border-radius: 10px;
    padding: 10px;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .extended-dropdown-2 ul a {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 16px;
    color: var(--accent-color);
    margin: 0;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 12px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 10px;
    flex-shrink: 0;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }

  .extended-dropdown-2 ul a:hover,
  .extended-dropdown-2 ul a:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title,
  .extended-dropdown-2 ul a:active .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul .active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul .active .menu-title {
    color: var(--nav-dropdown-hover-color);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

/*--------------------------------------------------------------
# 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(--contrast-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;
}

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

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  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: 400;
}

.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 70%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section - Complete Fixed Version
--------------------------------------------------------------*/

/* Hero Section Base */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--accent-color);
}

/* Carousel Containers */
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Carousel Inner */
.hero .carousel-inner {
  height: 100%;
}

/* Carousel Items - Critical for proper animation */
.hero .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.hero .carousel-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Disable ALL Bootstrap default transitions */
.hero .carousel-item,
.hero .carousel-item-next,
.hero .carousel-item-prev,
.hero .carousel-item-start,
.hero .carousel-item-end {
  transform: none !important;
  transition: none !important;
}

.hero .carousel-item-next:not(.carousel-item-start),
.hero .active.carousel-item-end,
.hero .carousel-item-prev:not(.carousel-item-end),
.hero .active.carousel-item-start {
  transform: none !important;
}

/* Background Image */
.hero .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.8s ease-in-out;
}

/* Dark Overlay */
.hero .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}

/* Container */
.hero .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Hero Content */
.hero .hero-content {
  color: #ffffff;
  padding: 30px 40px;
  background: rgba(0,0,0,0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Content Alignment */
.hero .hero-content.text-center {
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-content.text-start {
  margin-right: auto;
}

.hero .hero-content.text-end {
  margin-left: auto;
}

/* Title Styles */
.hero .hero-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Colored Span in Title - WITH UNDERLINE ANIMATION */
.hero .hero-content h1 span {
  color: var(--surface-color, #e84545);
  position: relative;
  display: inline-block;
  --underline-scale: 0;
}

/* Underline Animation using CSS Variable */
.hero .hero-content h1 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color, #e84545);
  border-radius: 2px;
  opacity: 0.8;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left;
  transition: transform 0.5s ease;
}

/* Paragraph Styles */
.hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hero Actions Container */
.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero .hero-actions.justify-content-center {
  justify-content: center;
}

.hero .hero-actions.justify-content-start {
  justify-content: flex-start;
}

.hero .hero-actions.justify-content-end {
  justify-content: flex-end;
}

/* Primary Button */
.hero .btn-primary {
  background: var(--accent-color, #e84545);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--accent-color, #e84545);
  border-color: var(--accent-color, #e84545);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Video Button */
.hero .btn-video {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.hero .btn-video i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-color, #e84545);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.hero .btn-video:hover {
  color: var(--accent-color, #e84545);
}

.hero .btn-video:hover i {
  background: #ffffff;
  color: var(--accent-color, #e84545);
  transform: scale(1.1);
}

/* ============ ANIMATION STATES ============ */

/* Active Slide - All elements become visible */
.hero .carousel-item.active .hero-bg-image {
  opacity: 1;
}

.hero .carousel-item.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero .carousel-item.active .hero-content h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero .carousel-item.active .hero-content p {
  opacity: 1;
  transform: translateY(0);
}

.hero .carousel-item.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Underline animation - Controlled by JS via CSS Variable */
.hero .carousel-item.active .hero-content h1 span {
  --underline-scale: 1;
}

/* Animation Out State */
.hero .carousel-item.animate-out .hero-bg-image {
  opacity: 0;
  transition: opacity 0.4s ease !important;
}

.hero .carousel-item.animate-out .hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease !important;
}

.hero .carousel-item.animate-out .hero-content h1 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.hero .carousel-item.animate-out .hero-content p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.hero .carousel-item.animate-out .hero-actions {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.hero .carousel-item.animate-out .hero-content h1 span {
  --underline-scale: 0;
}

.hero .carousel-item.animate-out .hero-content h1 span::after {
  transition: transform 0.3s ease !important;
}

/* ============ CAROUSEL CONTROLS ============ */

/* Indicators/Dots */
.hero .carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 4;
  margin: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  gap: 8px;
}

.hero .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero .carousel-indicators .active {
  background-color: var(--accent-color, #e84545);
  width: 35px;
  border-radius: 20px;
}

/* Navigation Arrows */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 20px;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.hero .carousel-control-prev {
  left: 20px;
}

.hero .carousel-control-next {
  right: 20px;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: var(--accent-color, #e84545);
  opacity: 1;
  border-color: var(--accent-color, #e84545);
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-image: none;
  filter: brightness(0) invert(1);
  position: relative;
}

.hero .carousel-control-prev-icon::before,
.hero .carousel-control-next-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero .carousel-control-prev-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.hero .carousel-control-next-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ============ RESPONSIVE DESIGN ============ */

/* Large Desktop */
@media (max-width: 1400px) {
  .hero {
    height: 75vh;
  }
  
  .hero .hero-content {
    padding: 25px 35px;

  }
  
  .hero .hero-content h1 {
    font-size: 2.6rem;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .hero {
    height: 70vh;
    min-height: 550px;
  }
  
  .hero .hero-content {
    max-width: auto;
  }
  
  .hero .hero-content h1 {
    font-size: 2.8rem;
  }
}

/* Tablet Landscape */
@media (max-width: 992px) {
  .hero {
    height: 65vh;
    min-height: 500px;
  }
  
  .hero .hero-content {
    padding: 25px 30px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero .hero-actions {
    justify-content: center !important;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 42px;
    height: 42px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 450px;
  }
  
  .hero .hero-content {
    padding: 20px 25px;
    top: 60%;
  }
  
  .hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero .hero-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .hero .btn-primary,
  .hero .btn-video {
    width: 100%;
    justify-content: center;
  }
  
  .hero .btn-video {
    justify-content: center;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 38px;
    height: 38px;
    margin: 0 10px;
  }
  
  .hero .carousel-indicators {
    bottom: 20px;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .hero {
    height: 55vh;
    min-height: 400px;
  }
  
  .hero .hero-content {
    align:center;
    padding: 20px;
    margin-top: 100px;
  }
  
  .hero .hero-content h1 {
    color: #ffffff;
    font-size: 1.8rem;
  }
  
  .hero .hero-content p {
    display:none;
    color: #ffffff;
    font-size: 0.9rem;
  }
  
  .hero .btn-primary {
    padding: 12px 24px;
    font-size: 13px;
    text-align:center;
    width: 70%;
  }
  
  .hero .btn-video {
    font-size: 13px;
  }
  
  .hero .btn-video i {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .hero .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
  
  .hero .carousel-indicators .active {
    width: 28px;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 34px;
    height: 34px;
    margin-top:50px;
  }
  
  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }
}

/* Mobile Small */
@media (max-width: 400px) {
  .hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero .hero-content {
    padding: 15px;
  }
  
  .hero .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero .hero-content p {
    font-size: 0.85rem;
  }
  
  .hero .btn-primary {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .hero .btn-video {
    font-size: 12px;
  }
  
  .hero .btn-video i {
    width: 34px;
    height: 34px;
    font-size: 14px;
    margin-right: 8px;
  }
  
  .hero .carousel-indicators {
    bottom: 15px;
  }
  
  .hero .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
  }
  
  .hero .carousel-indicators .active {
    width: 24px;
  }
}

/* ============ ACCESSIBILITY ============ */

/* Focus States */
.hero .carousel-control-prev:focus-visible,
.hero .carousel-control-next:focus-visible,
.hero .carousel-indicators [data-bs-target]:focus-visible,
.hero .btn-primary:focus-visible,
.hero .btn-video:focus-visible {
  outline: 3px solid var(--accent-color, #e84545);
  outline-offset: 3px;
  opacity: 1;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero .hero-content {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ffffff;
  }
  
  .hero .btn-primary {
    border: 2px solid #ffffff;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    background: #000000;
    border: 2px solid #ffffff;
  }
  
  .hero .carousel-indicators [data-bs-target] {
    background-color: #ffffff;
    border: 1px solid #000000;
  }
  
  .hero .carousel-indicators .active {
    background-color: #000000;
    border: 2px solid #ffffff;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero *,
  .hero *::before,
  .hero *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero .carousel-item.active .hero-bg-image,
  .hero .carousel-item.active .hero-content,
  .hero .carousel-item.active .hero-content h1,
  .hero .carousel-item.active .hero-content p,
  .hero .carousel-item.active .hero-actions,
  .hero .carousel-item.active .hero-content h1 span::after {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .hero .hero-content h1 span {
    --underline-scale: 1 !important;
  }
}

/* Force remove any problematic Bootstrap classes but KEEP display property */
.hero .carousel-item.carousel-item-next,
.hero .carousel-item.carousel-item-prev,
.hero .carousel-item.carousel-item-start,
.hero .carousel-item.carousel-item-end {
  transform: none !important;
  transition: none !important;
  /* DO NOT set display: none */
}

/* Ensure active slide is visible */
.hero .carousel-item.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============ DARK MODE SUPPORT ============ */
@media (prefers-color-scheme: dark) {
  .hero .hero-content {
    background: rgba(0, 0, 0, 0.4);
  }
}

/* ============ PRINT STYLES ============ */
@media print {
  .hero {
    height: auto;
    min-height: auto;
    page-break-inside: avoid;
    background: #ffffff !important;
  }
  
  .hero .carousel-item:not(.active) {
    display: none !important;
  }
  
  .hero .carousel-item.active {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .hero .hero-bg-image,
  .hero .carousel-item::after {
    display: none !important;
  }
  
  .hero .hero-content {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #dddddd !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .hero .hero-content h1 {
    color: #000000 !important;
  }
  
  .hero .hero-content h1 span {
    color: #333333 !important;
    --underline-scale: 1 !important;
  }
  
  .hero .hero-content p {
    color: #333333 !important;
  }
  
  .hero .hero-content h1 span::after {
    background: #333333 !important;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next,
  .hero .carousel-indicators {
    display: none !important;
  }
  
  .hero .btn-primary {
    background: #333333 !important;
    color: #ffffff !important;
    border: none !important;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 30px;
  padding-bottom: 120px;
}

.about .about-image {
  position: relative;
}

.about .about-image img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about .about-image img:hover {
  transform: translateY(-5px);
}

.about .content {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .about .content {
    padding-left: 0;
    margin-top: 60px;
  }
}

.about .content h1 {
  font-size: 3.5remrem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}
.about .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.about .content .lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .stats-row {
  display: flex;
  gap: 40px;
  margin: 60px 0 40px 0;
  padding: 40px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .about .stats-row {
    flex-direction: column;
    gap: 30px;
  }
}

.about .stats-row .stat-item {
  text-align: center;
}

.about .stats-row .stat-item h3 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--accent-color);
  line-height: 1;
}

.about .stats-row .stat-item p {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .cta-wrapper {
  margin-top: 40px;
}

.about .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.about .btn-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.about .btn-cta:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.services .service-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-card:hover .service-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.services .service-card:hover .service-link {
  color: var(--accent-color);
}

.services .service-card:hover .service-link i {
  transform: translateX(4px);
}

.services .service-icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.services .service-icon i {
  font-size: 24px;
}

.services h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services p {
  flex: 1;
  margin-bottom: 24px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-link {
  display: flex;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-link i {
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 24px 20px;
  }

  .services .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .services .service-icon i {
    font-size: 20px;
  }

  .services h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .services p {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .features .features-grid {
    grid-template-columns: 1fr;
  }
}

.features .features-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.features .features-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features .features-card:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .features-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.features .features-card .icon-wrapper i {
  font-size: 32px;
}

.features .features-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

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

.features .features-card .features-list {
  margin-bottom: 25px;
}

.features .features-card .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.features .features-card .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.features .features-card .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  margin-top: 3px;
}

.features .features-card .features-list .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.features .features-card .image-container {
  margin-top: auto;
  text-align: center;
}

.features .features-card .image-container img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.features .features-card:hover .image-container img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.portfolio .portfolio-filters {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.portfolio .portfolio-filters::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.4s ease-out;
  letter-spacing: 0.5px;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease-out;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.portfolio .portfolio-card {
  background: var(--surface-color);
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
  transform: scale(1.05);
}

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

.portfolio .portfolio-card:hover .content h3 {
  color: var(--accent-color);
}

.portfolio .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

.portfolio .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
  transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .content {
  padding: 30px 0;
  text-align: center;
}

.portfolio .content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.portfolio .content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 992px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work {
  padding-top: 60px;
  padding-bottom: 40px;
}

.how-we-work .step-item {
  text-align: center;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}

.how-we-work .step-item::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  z-index: 0;
}

.how-we-work .step-item:last-child::after {
  display: none;
}

.how-we-work .step-circle {
  width: 70px;
  height: 70px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-circle span {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-item:hover .step-circle {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.how-we-work .step-item:hover .step-circle span {
  color: var(--contrast-color);
}

.how-we-work h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.how-we-work p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .how-we-work .step-item::after {
    display: none;
  }

  .how-we-work .step-circle {
    width: 60px;
    height: 60px;
  }

  .how-we-work .step-circle span {
    font-size: 1.3rem;
  }

  .how-we-work h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .how-we-work .step-circle {
    width: 50px;
    height: 50px;
  }

  .how-we-work .step-circle span {
    font-size: 1.1rem;
  }

  .how-we-work h3 {
    font-size: 1.1rem;
  }

  .how-we-work p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.tabs .tabs-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .tabs .tabs-header {
    margin-bottom: 60px;
  }
}

.tabs .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 0;
  background: var(--surface-color);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.tabs .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.tabs .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tabs .tabs-header .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h6,
.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text small {
  color: var(--contrast-color);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) .tab-content-preview .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 13px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.tabs .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.tabs .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.tabs .tab-content .content-area .content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}

.tabs .tab-content .content-area .content-badge i {
  font-size: 14px;
}

.tabs .tab-content .content-area h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area h3 {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area p {
    font-size: 15px;
  }
}

.tabs .tab-content .content-area .highlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area .highlight-stats {
    gap: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabs .tab-content .content-area .feature-points {
  margin-bottom: 40px;
}

.tabs .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tabs .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.tabs .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.tabs .tab-content .content-area .feature-points .point-item span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
}

.tabs .tab-content .content-area .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tabs .tab-content .content-area .explore-link:hover {
  gap: 12px;
  color: var(--accent-color);
}

.tabs .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.tabs .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.tabs .tab-content .visual-content {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .visual-content {
    padding-left: 0;
  }
}

.tabs .tab-content .visual-content img {
  width: 100%;
  border-radius: 8px;
}

.tabs .tab-content .visual-content .floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element {
    bottom: 15px;
    right: 15px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card i {
  font-size: 20px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card i {
    font-size: 18px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card .card-info span {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tabs .tab-content .visual-content .floating-element .floating-card .card-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card .card-info strong {
    font-size: 12px;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {

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

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

/*--------------------------------------------------------------
# Testimonials Section (also applies to Features)
--------------------------------------------------------------*/
.testimonials,
.features {
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-slider,
.features .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper,
.features .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item,
.features .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before,
.features .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover,
.features .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before,
.features .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img,
.features .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-header,
.features .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img,
.features .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating,
.features .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i,
.features .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body,
.features .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p,
.features .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.features .testimonial-body p::before,
.testimonials .testimonial-body p::after,
.features .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before,
.features .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after,
.features .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer,
.features .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5,
.features .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span,
.features .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

/* REMOVED .quote-icon styles completely */

.testimonials .swiper-navigation,
.features .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.features .swiper-button-prev,
.testimonials .swiper-button-next,
.features .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.features .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover,
.features .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.features .swiper-button-prev::after,
.testimonials .swiper-button-next::after,
.features .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination,
.features .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet,
.features .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.features .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header,
  .features .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img,
  .features .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .features .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer,
  .features .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item,
  .features .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header,
  .features .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img,
  .features .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i,
  .features .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body,
  .features .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p,
  .features .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer,
  .features .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5,
  .features .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span,
  .features .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .swiper-button-prev,
  .features .swiper-button-prev,
  .testimonials .swiper-button-next,
  .features .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .features .swiper-button-prev::after,
  .testimonials .swiper-button-next::after,
  .features .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider,
  .features .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header,
  .features .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img,
  .features .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .features .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p,
  .features .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer,
  .features .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5,
  .features .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .swiper-navigation,
  .features .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.pricing .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing .pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.pricing .pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.pricing .pricing-card.featured .featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pricing .pricing-card .plan-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .plan-header .plan-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.pricing .pricing-card .plan-header .plan-description {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.pricing .pricing-card .pricing-display {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .pricing-display .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing .pricing-card .pricing-display .price .currency {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.pricing .pricing-card .pricing-display .price .amount {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.pricing .pricing-card .pricing-display .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .pricing-card .features-list {
  margin-bottom: 2.5rem;
}

.pricing .pricing-card .features-list .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.pricing .pricing-card .features-list .feature i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing .pricing-card .features-list .feature span {
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.5;
}

.pricing .pricing-card .btn-plan {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: transparent;
  border: 1.5px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.pricing .pricing-card .btn-plan:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.pricing .pricing-card.featured .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.featured .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.pricing .pricing-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-footer .guarantee-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1rem;
}

.pricing .pricing-footer .contact-text {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}

.pricing .pricing-footer .contact-text a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.pricing .pricing-footer .contact-text a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .pricing .pricing-card.featured {
    transform: none;
  }

  .pricing .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 0;
  }

  .pricing .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing .pricing-display .price .amount {
    font-size: 2.75rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: left;
}

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-container {
  padding: 60px 60px;
}

.contact .contact-form-container .form-intro {
  margin-bottom: 60px;
}

.contact .contact-form-container .form-intro h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro h2 {
    font-size: 28px;
  }
}

.contact .contact-form-container .form-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-form-container .contact-form .row {
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
  margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
  position: relative;
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .form-field.message-field {
  margin-bottom: 50px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.contact .contact-form-container .contact-form .form-field .form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  padding: 20px 0 15px 0;
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  opacity: 1;
}

.contact .contact-form-container .contact-form .form-field .message-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  padding-top: 25px;
}

.contact .contact-form-container .contact-form .send-button {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
  transform: translateX(5px);
}

.contact .contact-sidebar {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  height: 100%;
  padding: 60px 40px;
}

.contact .contact-sidebar .contact-header {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-header h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .contact-sidebar .contact-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-sidebar .contact-methods {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.contact .contact-sidebar .contact-method:last-child {
  margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-sidebar .contact-method .contact-icon i {
  font-size: 20px;
}

.contact .contact-sidebar .contact-method .contact-details {
  flex: 1;
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact .contact-sidebar .contact-method .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-sidebar .connect-section {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 40px;
}

.contact .contact-sidebar .connect-section .connect-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.contact .contact-sidebar .connect-section .social-links {
  display: flex;
  gap: 15px;
}

.contact .contact-sidebar .connect-section .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-sidebar .connect-section .social-links .social-link i {
  font-size: 16px;
}

.contact .contact-sidebar .connect-section .social-links .social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact .contact-form-container {
    padding: 40px 0;
  }

  .contact .contact-sidebar {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro {
    margin-bottom: 40px;
    text-align: center;
  }

  .contact .contact-form-container .contact-form .row {
    margin-bottom: 20px;
  }

  .contact .contact-form-container .contact-form .form-field {
    margin-bottom: 30px;
  }

  .contact .contact-sidebar {
    padding: 30px 25px;
  }

  .contact .contact-sidebar .contact-header,
  .contact .contact-sidebar .contact-methods {
    margin-bottom: 40px;
  }

  .contact .contact-sidebar .contact-method {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-container {
    padding: 30px 20px;
  }

  .contact .contact-sidebar {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 5rem;
  --content-spacing: 4rem;
  --subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .project-hero {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-hero .project-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .project-hero .project-meta-grid .meta-column {
  text-align: center;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.portfolio-details .visual-showcase {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .visual-showcase .main-visual {
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-details .visual-showcase .main-visual .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .visual-showcase .main-visual .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  border-radius: 50%;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 600;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next:hover,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
  left: 30px;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next {
  right: 30px;
}

.portfolio-details .content-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .content-section .project-overview {
  text-align: center;
}

.portfolio-details .content-section .project-overview h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.portfolio-details .content-section .project-overview .overview-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 4rem;
}

.portfolio-details .content-section .project-overview .challenge-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block h3,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block p,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .metrics-showcase {
  padding: 4rem 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  margin: var(--section-spacing) -15px;
  border-radius: 8px;
}

.portfolio-details .metrics-showcase .metrics-content h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .metrics-showcase .metrics-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .metrics-showcase .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item {
  text-align: center;
  padding: 1.5rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.4;
}

.portfolio-details .technology-stack {
  margin-bottom: var(--section-spacing);
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .technology-stack h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0;
}

.portfolio-details .technology-stack .tech-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .category-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

.portfolio-details .process-gallery {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .process-gallery h3 {
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading-color);
}

.portfolio-details .process-gallery .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item.large {
  grid-row: span 2;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover {
  transform: translateY(-5px);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.portfolio-details .key-features-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .key-features-section .features-intro {
  padding-right: 2rem;
}

.portfolio-details .key-features-section .features-intro h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .key-features-section .features-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details .key-features-section .features-list .feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-details .key-features-section .features-list .feature-row:last-child {
  margin-bottom: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

.portfolio-details .project-footer {
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details .project-footer .footer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-details .project-footer .footer-navigation .nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
  color: var(--heading-color);
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-direction,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-direction {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.25rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-title,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project:hover,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
  text-align: right;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 25px;
  color: var(--heading-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects i {
  font-size: 1rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .portfolio-details .project-hero .hero-content .project-title {
    font-size: 3rem;
  }

  .portfolio-details .project-hero .project-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-details .content-section .project-overview .challenge-solution {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portfolio-details .content-section .project-overview h2 {
    font-size: 2.25rem;
  }

  .portfolio-details .metrics-showcase .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .key-features-section .features-intro {
    margin-bottom: 2rem;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .portfolio-details {
    --section-spacing: 3rem;
  }

  .portfolio-details .project-hero .hero-content .project-title {
    font-size: 2.5rem;
  }

  .portfolio-details .project-hero .project-meta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-slide img {
    height: 400px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next,
  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
  .portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
    font-size: 0.9rem;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {
    left: 15px;
  }

  .portfolio-details .visual-showcase .main-visual .swiper-button-next {
    right: 15px;
  }

  .portfolio-details .content-section .project-overview h2 {
    font-size: 2rem;
  }

  .portfolio-details .project-footer .footer-navigation {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
  .portfolio-details .project-footer .footer-navigation .nav-link.next-project {
    text-align: center;
  }

  .portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
    order: -1;
  }

  .portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .gallery-masonry {
    grid-template-columns: 1fr !important;
  }

  .portfolio-details .gallery-masonry .gallery-item.large {
    grid-row: span 1;
  }

  .portfolio-details .metrics-showcase {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  margin-bottom: 4rem;
}

.service-details .service-hero .service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .service-hero .service-meta .service-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-details .service-hero .service-meta .reading-time {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
  font-weight: 300;
}

.service-details .service-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.service-details .service-hero .service-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  margin: 0;
}

.service-details .service-visual {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 4px;
}

.service-details .service-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-details .service-visual img:hover {
  transform: scale(1.02);
}

.service-details .service-narrative {
  margin-bottom: 5rem;
}

.service-details .service-narrative h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .service-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--default-color);
  font-weight: 300;
}

.service-details .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-details .benefits-grid .benefit-card {
  text-align: center;
  padding: 0;
}

.service-details .benefits-grid .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-details .benefits-grid .benefit-card .benefit-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .benefits-grid .benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-details .benefits-grid .benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .timeline-section {
  margin-bottom: 4rem;
}

.service-details .timeline-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .timeline-section .timeline {
  position: relative;
}

.service-details .timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .timeline-section .timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.service-details .timeline-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-details .service-sidebar {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .service-details .service-sidebar {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.service-details .overview-card,
.service-details .success-story,
.service-details .consultation-form {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.service-details .overview-card:hover,
.service-details .success-story:hover,
.service-details .consultation-form:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .overview-card .overview-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.service-details .overview-card .overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-details .overview-card .overview-stats .stat-item {
  text-align: center;
}

.service-details .overview-card .overview-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-details .overview-card .overview-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .overview-card .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
}

.service-details .overview-card .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-details .overview-card .overview-details .detail-row:last-child {
  margin-bottom: 0;
}

.service-details .overview-card .overview-details .detail-row .detail-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}

.service-details .overview-card .overview-details .detail-row .detail-value {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .success-story .story-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
}

.service-details .success-story .story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .success-story .story-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .success-story .story-author .author-details h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.service-details .success-story .story-author .author-details span {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-author .author-details small {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .success-story .story-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .success-story .story-metrics .metric {
  text-align: center;
}

.service-details .success-story .story-metrics .metric .metric-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-metrics .metric .metric-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .consultation-form .form-header {
  margin-bottom: 2rem;
}

.service-details .consultation-form .form-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .consultation-form .form-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.service-details .consultation-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.service-details .consultation-form .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-details .consultation-form input[type=text],
.service-details .consultation-form input[type=email],
.service-details .consultation-form input[type=tel],
.service-details .consultation-form select,
.service-details .consultation-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details .consultation-form input[type=text]:focus,
.service-details .consultation-form input[type=email]:focus,
.service-details .consultation-form input[type=tel]:focus,
.service-details .consultation-form select:focus,
.service-details .consultation-form textarea:focus {
  border-color: var(--accent-color);
}

.service-details .consultation-form input[type=text]::placeholder,
.service-details .consultation-form input[type=email]::placeholder,
.service-details .consultation-form input[type=tel]::placeholder,
.service-details .consultation-form select::placeholder,
.service-details .consultation-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .consultation-form .btn-consultation {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: none;
}

.service-details .consultation-form .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.service-details .consultation-form .btn-consultation i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .service-details .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-details .service-hero .service-description {
    font-size: 1.1rem;
  }

  .service-details .service-visual img {
    height: 250px;
  }

  .service-details .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details .timeline-section .timeline::before {
    left: 20px;
  }

  .service-details .timeline-section .timeline .timeline-item {
    padding-left: 60px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker span {
    font-size: 1rem;
  }

  .service-details .overview-card .overview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* ====================================================
   MOBILE & TABLET FONT SIZE INCREASES
   ==================================================== */

/* Tablet Devices (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  /* General typography */
  body {
    font-size: 16px; /* Increase from default */
  }
  
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.8rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.3rem; }
  h6 { font-size: 1.1rem; }
  
  p, li, .section p, .content p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  /* Navigation */
  .navmenu a {
    font-size: 18px !important;
  }
  
  .navmenu a .menu-text {
    font-size: 18px !important;
  }
  
  .navmenu .dropdown ul a {
    font-size: 16px !important;
  }
  
  /* Hero section */
  .hero .hero-content h1 {
    font-size: 2rem !important;
  }
  
  .hero .hero-content p {
    font-size: 1rem !important;
  }
  
  .hero .btn-primary,
  .hero .btn-video {
  text-align: center;
    font-size: 16px !important;
  }
  
  /* Section titles */
  .section-title h2 {
    font-size: 5rem;
  }
  
  .section-title p {
    font-size: 1.2rem;
  }
  
  /* About section */
  .about .content h2 {
    font-size: 2.3rem;
  }
  
  .about .content .lead {
    font-size: 1.35rem;
  }
  
  .about .content p {
    font-size: 1.1rem;
  }
  
  .about .stats-row .stat-item h3 {
    font-size: 2.8rem;
  }
  
  .about .stats-row .stat-item p {
    font-size: 1rem;
  }
  
  /* Services section */
  .services .service-card h3 {
    font-size: 1.5rem;
  }
  
  .services .service-card p {
    font-size: 1.1rem;
  }
  
  .services .service-link {
    font-size: 1.1rem;
  }
  
  /* Features section */
  .features .features-card h3 {
    font-size: 1.6rem;
  }
  
  .features .features-card p {
    font-size: 1.1rem;
  }
  
  .features .features-card .features-list .feature-item span {
    font-size: 1.05rem;
  }
  
  /* Portfolio section */
  .portfolio .portfolio-filters li {
    font-size: 1.1rem;
  }
  
  .portfolio .portfolio-card .content h3 {
    font-size: 1.3rem;
  }
  
  .portfolio .portfolio-card .content p {
    font-size: 1rem;
  }
  
  /* Tabs section */
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 1rem;
  }
  
  .tabs .tab-content .content-area h3 {
    font-size: 2.4rem;
  }
  
  .tabs .tab-content .content-area p {
    font-size: 1.1rem;
  }
  
  .tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 2rem;
  }
  
  .tabs .tab-content .content-area .feature-points .point-item span {
    font-size: 1.05rem;
  }
  
  /* Testimonials section */
  .testimonials .testimonial-item .testimonial-body p {
    font-size: 1.1rem;
  }
  
  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1.2rem;
  }
  
  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 1rem;
  }
  
  /* Pricing section */
  .pricing .pricing-card .plan-header .plan-name {
    font-size: 1.8rem;
  }
  
  .pricing .pricing-card .plan-header .plan-description {
    font-size: 1.1rem;
  }
  
  .pricing .pricing-card .pricing-display .price .amount {
    font-size: 3.2rem;
  }
  
  .pricing .pricing-card .features-list .feature span {
    font-size: 1.1rem;
  }
  
  .pricing .pricing-card .btn-plan {
    font-size: 1.1rem;
  }
  
  /* FAQ section */
  .faq .faq-item .faq-header .faq-number {
    font-size: 1.2rem;
  }
  
  .faq .faq-item .faq-header h4 {
    font-size: 1.3rem;
  }
  
  .faq .faq-item .faq-content .content-inner p {
    font-size: 1.1rem;
  }
  
  /* Team section */
  .team .team-member .member-info h4 {
    font-size: 1.4rem;
  }
  
  .team .team-member .member-info span {
    font-size: 1.1rem;
  }
  
  .team .team-member .member-info p {
    font-size: 1.05rem;
  }
  
  .team .team-member .member-info .social a {
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
  }
  
  /* Contact section */
  .contact .contact-form-container .form-intro h2 {
    font-size: 2.4rem;
  }
  
  .contact .contact-form-container .form-intro p {
    font-size: 1.2rem;
  }
  
  .contact .contact-form-container .contact-form .form-field .field-label {
    font-size: 0.95rem;
  }
  
  .contact .contact-form-container .contact-form .form-field .form-input {
    font-size: 1.1rem;
  }
  
  .contact .contact-form-container .contact-form .send-button {
    font-size: 1rem;
    padding: 16px 36px;
  }
  
  .contact .contact-sidebar .contact-header h3 {
    font-size: 2rem;
  }
  
  .contact .contact-sidebar .contact-header p {
    font-size: 1.1rem;
  }
  
  .contact .contact-sidebar .contact-method .contact-details p {
    font-size: 1.05rem;
  }
  
  /* Footer */
  .footer .footer-content p {
    font-size: 1.1rem;
  }
  
  .footer h4 {
    font-size: 1.4rem;
  }
  
  .footer .footer-links ul a {
    font-size: 1.05rem;
  }
  
  .footer .footer-contact .contact-item .contact-info p {
    font-size: 1.05rem;
  }
  
  .footer .footer-bottom .copyright p,
  .footer .footer-bottom .footer-bottom-links a,
  .footer .footer-bottom .credits {
    font-size: 1rem;
  }
  
  /* Page title */
  .page-title h1 {
    font-size: 3rem;
  }
  
  .page-title .breadcrumbs ol {
    font-size: 1.1rem;
  }
  
  /* Input fields */
  input[type=text],
  input[type=email],
  textarea {
    font-size: 1rem;
  }
}

/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
  /* General typography */
  body {
    font-size: 15px;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.6rem; }
  h4 { font-size: 1.4rem; }
  h5 { font-size: 1.2rem; }
  h6 { font-size: 1.1rem; }
  
  p, li, .section p, .content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Navigation */
  .navmenu a {
    font-size: 17px !important;
  }
  
  .navmenu a .menu-text {
    font-size: 17px !important;
  }
  
  .navmenu .dropdown ul a {
    font-size: 16px !important;
  }
  
  .navmenu .dropdown-submenu li a .menu-item-content {
    font-size: 15px !important;
  }
  
  /* Hero section */
  .hero .hero-content h1 {
    font-size: 1.8rem !important;
  }
  
  .hero .hero-content p {
    font-size:1rem !important;
  }
  
  .hero .btn-primary,
  .hero .btn-video {
    font-size: 15px !important;
  }
  
  /* Section titles */
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-title p {
    font-size: 1.1rem;
  }
  
  /* About section */
  .about .content h2 {
    font-size: 2rem;
  }
  
  .about .content .lead {
    font-size: 1.25rem;
  }
  
  .about .content p {
    font-size: 1.05rem;
  }
  
  .about .stats-row .stat-item h3 {
    font-size: 2.5rem;
  }
  
  .about .stats-row .stat-item p {
    font-size: 0.95rem;
  }
  
  .about .btn-cta {
    font-size: 1rem;
  }
  
  /* Services section */
  .services .service-card h3 {
    font-size: 1.4rem;
  }
  
  .services .service-card p {
    font-size: 1rem;
  }
  
  .services .service-link {
    font-size: 1rem;
  }
  
  /* Features section */
  .features .features-card h3 {
    font-size: 1.5rem;
  }
  
  .features .features-card p {
    font-size: 1rem;
  }
  
  .features .features-card .features-list .feature-item span {
    font-size: 1rem;
  }
  
  /* Portfolio section */
  .portfolio .portfolio-filters li {
    font-size: 1rem;
  }
  
  .portfolio .portfolio-card .content h3 {
    font-size: 1.2rem;
  }
  
  .portfolio .portfolio-card .content p {
    font-size: 0.95rem;
  }
  
  /* How we work */
  .how-we-work h3 {
    font-size: 1.2rem;
  }
  
  .how-we-work p {
    font-size: 0.95rem;
  }
  
  /* Tabs section */
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 0.95rem;
  }
  
  .tabs .tab-content .content-area h3 {
    font-size: 2rem;
  }
  
  .tabs .tab-content .content-area p {
    font-size: 1rem;
  }
  
  .tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 1.8rem;
  }
  
  .tabs .tab-content .content-area .feature-points .point-item span {
    font-size: 1rem;
  }
  
  /* Testimonials section */
  .testimonials .testimonial-item .testimonial-body p {
    font-size: 1rem;
  }
  
  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1.1rem;
  }
  
  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.95rem;
  }
  
  /* Pricing section */
  .pricing .pricing-card .plan-header .plan-name {
    font-size: 1.6rem;
  }
  
  .pricing .pricing-card .plan-header .plan-description {
    font-size: 1rem;
  }
  
  .pricing .pricing-card .pricing-display .price .amount {
    font-size: 3rem;
  }
  
  .pricing .pricing-card .features-list .feature span {
    font-size: 1rem;
  }
  
  .pricing .pricing-card .btn-plan {
    font-size: 1rem;
  }
  
  /* FAQ section */
  .faq .faq-item .faq-header .faq-number {
    font-size: 1.1rem;
  }
  
  .faq .faq-item .faq-header h4 {
    font-size: 1.2rem;
  }
  
  .faq .faq-item .faq-content .content-inner p {
    font-size: 1rem;
  }
  
  /* Team section */
  .team .team-member .member-info h4 {
    font-size: 1.3rem;
  }
  
  .team .team-member .member-info span {
    font-size: 1rem;
  }
  
  .team .team-member .member-info p {
    font-size: 1rem;
  }
  
  .team .team-member .member-info .social a {
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
  }
  
  /* Contact section */
  .contact .contact-form-container .form-intro h2 {
    font-size: 2rem;
  }
  
  .contact .contact-form-container .form-intro p {
    font-size: 1.1rem;
  }
  
  .contact .contact-form-container .contact-form .form-field .field-label {
    font-size: 0.9rem;
  }
  
  .contact .contact-form-container .contact-form .form-field .form-input {
    font-size: 1rem;
  }
  
  .contact .contact-form-container .contact-form .send-button {
    font-size: 0.95rem;
    padding: 14px 32px;
  }
  
  .contact .contact-sidebar .contact-header h3 {
    font-size: 1.8rem;
  }
  
  .contact .contact-sidebar .contact-header p {
    font-size: 1rem;
  }
  
  .contact .contact-sidebar .contact-method .contact-details p {
    font-size: 1rem;
  }
  
  /* Footer */
  .footer .footer-content p {
    font-size: 1rem;
  }
  
  .footer h4 {
    font-size: 1.3rem;
  }
  
  .footer .footer-links ul a {
    font-size: 1rem;
  }
  
  .footer .footer-contact .contact-item .contact-info p {
    font-size: 1rem;
  }
  
  .footer .footer-bottom .copyright p,
  .footer .footer-bottom .footer-bottom-links a,
  .footer .footer-bottom .credits {
    font-size: 0.95rem;
  }
  
  /* Page title */
  .page-title h1 {
    font-size: 2.4rem;
  }
  
  .page-title .breadcrumbs ol {
    font-size: 1rem;
  }
  
  /* Input fields */
  input[type=text],
  input[type=email],
  textarea {
    font-size: 1rem;
  }
  
  /* Portfolio details, service details, etc. */
  .portfolio-details .project-hero .project-meta-grid .meta-column .meta-label {
    font-size: 0.9rem;
  }
  
  .portfolio-details .project-hero .project-meta-grid .meta-column .meta-value {
    font-size: 1.1rem;
  }
  
  .service-details .service-hero h1 {
    font-size: 2.4rem;
  }
  
  .service-details .service-hero .service-description {
    font-size: 1.1rem;
  }
  
  .service-details .service-narrative p {
    font-size: 1rem;
  }
  
  .service-details .benefits-grid .benefit-card h4 {
    font-size: 1.2rem;
  }
  
  .service-details .benefits-grid .benefit-card p {
    font-size: 0.95rem;
  }
  
  .error-404 .error-title {
    font-size: 2.2rem;
  }
  
  .error-404 .error-description {
    font-size: 1.1rem;
  }
  
  .error-404 .error-actions .btn-primary,
  .error-404 .error-actions .btn-secondary {
    font-size: 1rem;
  }
  
  .error-404 .helpful-links .link-item span {
    font-size: 1rem;
  }
}

/* Small Mobile Devices (up to 480px) - Additional adjustments */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.5rem; }
  
  .hero .hero-content h1 {
    font-size: 2rem !important;
  }
  
  .hero .hero-content p {
    font-size: 1.1rem !important;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about .content h2 {
    font-size: 1.8rem;
  }
  
  .services .service-card h3 {
    font-size: 1.3rem;
  }
  
  .navmenu a {
    font-size: 16px !important;
  }
  
  .navmenu a .menu-text {
    font-size: 16px !important;
  }
  
  .contact .contact-form-container .form-intro h2 {
    font-size: 1.8rem;
  }
  
  .page-title h1 {
    font-size: 2rem;
  }
}

/*Contact */
/* ===== CONTACT PAGE STYLES WITH ANIMATED BACKGROUND ===== */
:root {
    --accent-color: #6d9540;
    --accent-light: rgba(109, 149, 64, 0.1);
    --accent-hover: #5a7d34;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 50px rgba(109, 149, 64, 0.15);
}

/* Contact Page Header */
.contact-page-header {
    position: relative;
    padding: 150px 0 40px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Animated Background Shapes */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: var(--accent-color);
    animation: floatShape 22s ease-in-out infinite;
}

.shape-2 {
    width: 450px;
    height: 450px;
    bottom: -150px;
    left: -80px;
    background: #3498db;
    opacity: 0.15;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 350px;
    height: 350px;
    top: 20%;
    left: 10%;
    background: #e74c3c;
    opacity: 0.1;
    animation: floatShape 20s ease-in-out infinite 2s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 15%;
    background: #f39c12;
    opacity: 0.12;
    animation: floatShape 23s ease-in-out infinite 1s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 20%;
    background: var(--accent-color);
    opacity: 0.15;
    animation: floatShape 18s ease-in-out infinite 3s;
}

.shape-6 {
    width: 400px;
    height: 400px;
    top: 15%;
    right: 20%;
    background: #9b59b6;
    opacity: 0.08;
    animation: floatShape 28s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(60px, -40px) scale(1.1);
    }
    50% {
        transform: translate(30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(-50px, 30px) scale(1.05);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(109, 149, 64, 0.08) 0%, transparent 60%);
    animation: pulseGradient 10s ease-in-out infinite;
}

@keyframes pulseGradient {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Breadcrumb */
.breadcrumb-wrapper {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(109, 149, 64, 0.15);
    padding: 15px 0;
    margin-bottom: 50px;
    animation: slideDown 0.8s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    animation: fadeInRight 0.5s ease-out forwards;
    opacity: 0;
}

.breadcrumb-list li:nth-child(1) { animation-delay: 0.1s; }
.breadcrumb-list li:nth-child(2) { animation-delay: 0.2s; }
.breadcrumb-list li:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInRight {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.breadcrumb-list li a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: var(--white);
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(109, 149, 64, 0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.breadcrumb-list li a i {
    color: var(--accent-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.breadcrumb-list li a:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(109, 149, 64, 0.25);
}

.breadcrumb-list li a:hover i {
    color: var(--white);
}

.breadcrumb-list .separator {
    color: var(--accent-color);
    opacity: 0.4;
    font-size: 0.9rem;
}

.breadcrumb-list .active {
    color: var(--accent-color);
    font-weight: 600;
    background: rgba(109, 149, 64, 0.1);
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(109, 149, 64, 0.3);
}

/* Header Content */
.header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.decoration-line {
    width: 70px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    animation: linePulse 2.5s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { 
        width: 70px; 
        opacity: 0.4;
        background: var(--accent-color);
    }
    50% { 
        width: 120px; 
        opacity: 0.8;
        background: var(--accent-hover);
    }
}

.title-decoration i {
    font-size: 2.5rem;
    color: var(--accent-color);
    animation: iconSpin 8s linear infinite;
    transition: all 0.3s ease;
}

.title-decoration i:hover {
    color: var(--accent-hover);
    transform: scale(1.1);
}

@keyframes iconSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.header-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: var(--gray-light);
    position: relative;
}

.contact .container {
    max-width: 1200px;
}

/* Form Container */
.contact-form-container {
    background: var(--white);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-form-container:hover {
    box-shadow: var(--shadow-hover);
}

.form-intro {
    margin-bottom: 35px;
}

.form-intro h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Form Fields */
.form-field {
    position: relative;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 5px rgba(109, 149, 64, 0.1);
}

.form-input:focus + .field-label,
.form-input:not(:placeholder-shown) + .field-label {
    transform: translateY(-30px) translateX(-5px) scale(0.9);
    color: var(--accent-color);
    background: var(--white);
    padding: 0 10px;
}

.field-label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: #95a5a6;
    transition: all 0.2s ease;
    pointer-events: none;
    background: transparent;
    font-size: 1rem;
}

textarea.form-input {
    resize: vertical;
    min-height: 140px;
}

/* Form Status */
.form-status {
    margin: 25px 0 20px;
}

.loading {
    display: none;
    color: var(--accent-color);
    font-weight: 500;
    padding: 10px;
    background: rgba(109, 149, 64, 0.05);
    border-radius: 10px;
    text-align: center;
}

.error-message {
    display: none;
    color: #e74c3c;
    padding: 10px;
    background: rgba(231, 76, 60, 0.05);
    border-radius: 10px;
    text-align: center;
}

.sent-message {
    display: none;
    color: #27ae60;
    padding: 10px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 10px;
    text-align: center;
}

/* Send Button */
.send-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(109, 149, 64, 0.25);
    letter-spacing: 0.5px;
}

.send-button:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(109, 149, 64, 0.35);
    gap: 18px;
}

.send-button .button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.send-button:hover .button-arrow {
    transform: translateX(8px);
}

/* Contact Sidebar */
.contact-sidebar {
    background: var(--white);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-sidebar:hover {
    box-shadow: var(--shadow-hover);
}

.contact-header {
    margin-bottom: 35px;
}

.contact-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-header p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(109, 149, 64, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(109, 149, 64, 0.2);
}

.contact-details {
    flex: 1;
}

.method-label {
    display: block;
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Connect Section */
.connect-section {
    margin-top: 35px;
}

.connect-label {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(109, 149, 64, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(109, 149, 64, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-page-header {
        padding: 140px 0 60px 0;
    }
    
    .header-content h2 {
        font-size: 2.8rem;
    }
    
    .contact-sidebar {
        margin-top: 30px;
    }
    
    .contact-form-container,
    .contact-sidebar {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-page-header {
        padding: 140px 0 50px 0;
        min-height: 350px;
    }
    
    .header-content h2 {
        font-size: 2.4rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .title-decoration i {
        font-size: 2rem;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    @keyframes linePulse {
        0%, 100% { width: 40px; }
        50% { width: 70px; }
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-form-container,
    .contact-sidebar {
        padding: 30px;
    }
    
    .form-intro h2 {
        font-size: 1.8rem;
    }
    
    .contact-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-page-header {
        padding: 120px 0 40px 0;
    }
    
    .header-content h2 {
        font-size: 2rem;
    }
    
    .breadcrumb-list {
        justify-content: center;
    }
    
    .breadcrumb-list li a {
        padding: 6px 14px;
        font-size: 0.9rem;
    }
    
    .contact-form-container,
    .contact-sidebar {
        padding: 25px;
    }
    
    .form-intro h2 {
        font-size: 1.6rem;
    }
    
    .contact-header h3 {
        font-size: 1.6rem;
    }
    
    .social-links {
        justify-content: center;
    }
}