@charset "UTF-8";

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

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

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

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

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

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

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

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

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(0, 0, 0, 0.72);
  --default-color: #ffffff;
  --heading-color: #cc9d2b;
  --accent-color: #cc9d2a;
  --surface-color: #ffffff;
  --contrast-color: #000000;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

  .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: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/* 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 {
  --background-color: #06361c;
  --heading-color: #cc9d2a;
  --accent-color: #cc9d2a;
  --contrast-color: #cc9d2a;
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding: 60px 0 0 0;
  font-size: 15px;
}

.footer .footer-top {
  padding-bottom: 40px;
}

.footer h2 {
  font-size: 28px;
  margin-bottom: 0px;
  color: var(--head-color);
  font-weight: 700;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

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

.footer p.lead {
  text-transform: uppercase;
  color: var(--accent-color);
}

.footer .footer-info p {
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--background-color);
  background-color: var(--accent-color);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

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

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

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

.footer .footer-links li i {
  font-size: 12px;
  color: var(--accent-color);
  margin-right: 8px;
  line-height: 0;
}

.footer .footer-links li a {
  color: var(--default-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer .footer-contact .contact-info {
  margin-top: 15px;
}

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

.footer .footer-contact .contact-item i {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--accent-color);
  margin-top: 4px;
  margin-right: 15px;
  line-height: 1;
}

.footer .footer-contact .contact-item p {
  margin: 0;
  line-height: 1.5;
}

.footer .footer-newsletter p {
  margin-bottom: 15px;
}

.footer .footer-newsletter form {
  position: relative;
  margin-bottom: 30px;
}

.footer .footer-newsletter form input[type=email] {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 10px 15px;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .footer-newsletter form input[type=email]:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: none;
}

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

.footer .footer-newsletter form button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 15px;
  height: 44px;
  border-radius: 0 4px 4px 0;
  transition: 0.3s;
}

.footer .footer-newsletter form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-newsletter .opening-hours {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 20px;
}

.footer .footer-newsletter .opening-hours h5 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.footer .footer-newsletter .opening-hours h5 i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.footer .footer-newsletter .opening-hours p {
  margin-bottom: 0;
  line-height: 1.7;
}

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

.footer .copyright p {
  margin-bottom: 0;
  font-size: 14px;
}

.footer .copyright .sitename {
  color: var(--accent-color);
}

.footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

.footer .credits a {
  color: var(--accent-color);
}

.footer .credits a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 992px) {

  .footer .footer-info,
  .footer .footer-links,
  .footer .footer-contact,
  .footer .footer-newsletter {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-links li {
    justify-content: center;
  }

  .footer .footer-contact .contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer .footer-contact .contact-item i {
    margin-right: 10px;
  }

  .footer .footer-contact .contact-item p {
    text-align: center;
  }

  .footer .opening-hours h5 {
    justify-content: center;
  }

  .footer .opening-hours p {
    text-align: center;
  }

  .footer .footer-info p {
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
  }
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 140px 0 80px 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: 60px 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: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  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 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding: 0;
  background-color: #0a0a0a;
}

.hero-2 .cinema-slider {
  position: relative;
}

.hero-2 .swiper {
  overflow: hidden;
}

.hero-2 .swiper-wrapper {
  height: auto !important;
}

.hero-2 .cinema-frame {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.hero-2 .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-2 .swiper-slide-active .cinema-frame img {
  transform: scale(1.08);
}

.hero-2 .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-2 .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
}

.hero-2 .content-inner {
  max-width: 690px;
  text-align: center;
}

.hero-2 .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 28px;
  transition: width 0.6s ease;
}

.hero-2 .swiper-slide-active .accent-line {
  width: 80px;
}

.hero-2 .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero-2 .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero-2 .content-inner h3 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
}

.hero-2 .content-inner h4 {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: lighter;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
  font-style: italic;
}

.hero-2 .swiper-slide-active .content-inner h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero-2 .content-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff 72%, transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.hero-2 .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero-2 .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero-2 .refined-btn i {
  font-size: 14px;
  transition: transform 0.5s ease;
}

.hero-2 .refined-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-2 .refined-btn:hover i {
  transform: translateX(5px);
}

.hero-2 .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero-2 .swiper-slide-active .refined-btn:hover {
  transition: all 0.5s ease;
}

.hero-2 .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero-2 .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-2 .swiper-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero-2 .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero-2 .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-2 .swiper-button-prev,
.hero-2 .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero-2 .swiper-button-prev::after,
.hero-2 .swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero-2 .swiper-button-prev:hover,
.hero-2 .swiper-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero-2 .swiper-button-prev:hover::after,
.hero-2 .swiper-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero-2 .content-inner h3 {
    font-size: 42px;
  }

  .hero-2 .content-inner {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero-2 .cinema-frame {
    min-height: 480px;
  }

  .hero-2 .content-inner h3 {
    font-size: 36px;
  }

  .hero-2 .content-inner p {
    font-size: 16px;
  }

  .hero-2 .frame-content {
    padding: 0 6%;
  }

  .hero-2 .slider-controls {
    right: 6%;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero-2 .cinema-frame {
    min-height: 520px;
  }

  .hero-2 .frame-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
  }

  .hero-2 .frame-content {
    align-items: flex-end;
    padding: 0 24px 120px;
  }

  .hero-2 .content-inner {
    max-width: 100%;
  }

  .hero-2 .content-inner h3 {
    font-size: 30px;
  }

  .hero-2 .content-inner p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-2 .refined-btn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero-2 .slider-controls {
    bottom: 24px;
    right: 24px;
  }

  .hero-2 .controls-inner {
    gap: 20px;
  }

  .hero-2 .swiper-button-prev,
  .hero-2 .swiper-button-next {
    width: 44px;
    height: 44px;
  }

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

  .hero-2 .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .hero-2 .cinema-frame {
    min-height: 460px;
  }

  .hero-2 .content-inner h3 {
    font-size: 26px;
  }

  .hero-2 .accent-line {
    width: 40px;
    margin-bottom: 20px;
  }

  .hero-2 .swiper-slide-active .accent-line {
    width: 56px;
  }

  .hero-2 .tag-label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero-2 .frame-content {
    padding: 0 20px 100px;
  }

  .hero-2 .slider-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero-2 .controls-inner {
    gap: 16px;
  }

  .hero-2 .swiper-button-prev,
  .hero-2 .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 100px;
  /*padding-bottom: 100px;*/
}

.call-to-action .cta-header {
  margin-bottom: 64px;
}

.call-to-action .cta-header .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.call-to-action .cta-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .call-to-action .cta-header h2 {
    font-size: 1.75rem;
  }
}

.call-to-action .cta-header .description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  max-width: 950px;
  margin: 0 auto;
}

.call-to-action .highlights {
  margin-bottom: 64px;
}

.call-to-action .highlights .highlight-card {
  padding: 32px 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  transition: border-color 0.3s ease;
}

.call-to-action .highlights .highlight-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.call-to-action .highlights .highlight-card i {
  display: block;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.call-to-action .highlights .highlight-card span {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

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

.call-to-action .cta-actions .btn {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.call-to-action .cta-actions .btn.btn-ghost {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.call-to-action .cta-actions .btn.btn-solid {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-solid:hover {
  opacity: 0.85;
}

.call-to-action .social-proof .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.call-to-action .social-proof .stars i {
  font-size: 14px;
  color: var(--accent-color);
}

.call-to-action .social-proof span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #cc9d2a;
  --surface-color: #06361c;
  --contrast-color: #ffffff;
  --card-border: color-mix(in srgb, var(--default-color), transparent 86%);
  --card-hover-border: color-mix(in srgb, var(--accent-color), transparent 50%);
  --card-soft-bg: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.services-4 .section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--surface-color);
}

@media (max-width: 768px) {
  .services-4 .section-title h2 {
    font-size: 1.75rem;
  }
}

.services-4 .section-title p {
  color: var(--surface-color);
}

.services-4 .service-card {
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.services-4 .service-card .service-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.services-4 .service-card .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card-soft-bg);
  color: var(--accent-color);
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.services-4 .service-card .service-icon i {
  font-size: 26px;
  line-height: 1;
}

.services-4 .service-card .service-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
}

.services-4 .service-card .service-text {
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
}

.services-4 .service-card .service-points {
  display: grid;
  gap: 8px;
  margin-bottom: 18px !important;
}

.services-4 .service-card .service-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.services-4 .service-card .service-points li i {
  color: var(--accent-color);
  line-height: 1.2;
  margin-top: 1px;
}

.services-4 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  transition: color 0.3s ease;
}

.services-4 .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services-4 .service-card.compact {
  padding: 24px;
}

.services-4 .service-card.compact .service-icon {
  width: 50px;
  height: 50px;
}

.services-4 .service-card.compact .service-icon i {
  font-size: 22px;
}

.services-4 .service-card.compact .service-title {
  font-size: 1.1rem;
}

.services-4 .service-card.compact .service-text {
  margin-bottom: 18px;
}

.services-4 .service-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

@media (max-width: 576px) {
  .services-4 .service-card {
    border-radius: 14px;
  }

  .services-4 .service-card .service-head {
    gap: 12px;
  }

  .services-4 .service-card .service-title {
    font-size: 1.05rem;
  }
}

/*--------------------------------------------------------------
# Faq 5 Section
--------------------------------------------------------------*/
.faq-5 .faq-info-card {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #000));
  border-radius: 24px;
  padding: 48px;
  color: var(--contrast-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.faq-5 .faq-info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--contrast-color) 10%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.faq-5 .faq-info-card .info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 32px;
}

.faq-5 .faq-info-card .info-badge i {
  font-size: 16px;
}

.faq-5 .faq-info-card h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--contrast-color);
}

.faq-5 .faq-info-card p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}

.faq-5 .faq-info-card .stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
}

.faq-5 .faq-info-card .stats-row .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-5 .faq-info-card .stats-row .stat-item .stat-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.faq-5 .faq-info-card .stats-row .stat-item .stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-5 .faq-info-card .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: fit-content;
  margin-top: auto;
}

.faq-5 .faq-info-card .contact-btn i {
  transition: transform 0.3s ease;
}

.faq-5 .faq-info-card .contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, #000 30%, transparent);
}

.faq-5 .faq-info-card .contact-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .faq-5 .faq-info-card {
    padding: 40px;
    margin-bottom: 32px;
  }

  .faq-5 .faq-info-card h3 {
    font-size: 28px;
  }

  .faq-5 .faq-info-card .stats-row {
    gap: 24px;
  }

  .faq-5 .faq-info-card .stats-row .stat-item .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .faq-5 .faq-info-card {
    padding: 32px 24px;
  }

  .faq-5 .faq-info-card h3 {
    font-size: 24px;
  }

  .faq-5 .faq-info-card .info-badge {
    padding: 8px 16px;
    font-size: 12px;
  }

  .faq-5 .faq-info-card .stats-row .stat-item .stat-number {
    font-size: 24px;
  }

  .faq-5 .faq-info-card .contact-btn {
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }
}

.faq-5 .faq-accordion {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.faq-5 .faq-item {
  background: var(--accent-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color) 6%, transparent);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-5 .faq-item:hover {
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color) 10%, transparent);
}

.faq-5 .faq-item.faq-active {
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.faq-5 .faq-item.faq-active .faq-header .faq-number {
  background: var(--contrast-color);
  color: var(--default-color);
}

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

.faq-5 .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--surface-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

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

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

.faq-5 .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--contrast-color) 85%, transparent);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.faq-5 .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--contrast-color);
  line-height: 1.5;
  transition: all 0.3s ease;
}

.faq-5 .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--surface-color) 75%, transparent);
  border-radius: 50%;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-5 .faq-item .faq-header .faq-toggle i {
  line-height: 1;
}

.faq-5 .faq-item .faq-header:hover .faq-number {
  /*background: color-mix(in srgb, var(--accent-color) 20%, transparent);*/
}

.faq-5 .faq-item .faq-header:hover .faq-toggle {
  /*background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);*/
}

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

.faq-5 .faq-item .faq-content .content-inner {
  overflow: hidden;
  padding: 0 20px 0px 20px;
}

.faq-5 .faq-item .faq-content .content-inner p {
  margin: 0;
  padding: 0 0 20px 0px;
  font-size: 16px;
  text-align: justify;
  line-height: 1.7;
  /*color: color-mix(in srgb, var(--default-color) 80%, transparent);*/
  color: var(--surface-color);
}

@media (max-width: 768px) {
  .faq-5 .faq-item .faq-header {
    padding: 20px 24px;
    gap: 16px;
  }

  .faq-5 .faq-item .faq-header .faq-number {
    width: 40px;
    height: 40px;
    font-size: 13px;
    border-radius: 10px;
  }

  .faq-5 .faq-item .faq-header h4 {
    font-size: 16px;
  }

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

  .faq-5 .faq-item .faq-content .content-inner {
    padding: 0 24px 20px 80px;
  }

  .faq-5 .faq-item .faq-content .content-inner p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-5 .faq-item .faq-header {
    padding: 18px 20px;
    gap: 12px;
  }

  .faq-5 .faq-item .faq-header .faq-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 8px;
  }

  .faq-5 .faq-item .faq-header h4 {
    font-size: 15px;
  }

  .faq-5 .faq-item .faq-header .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .faq-5 .faq-item .faq-content .content-inner {
    padding: 0 20px 18px 20px;
  }

  .faq-5 .faq-item .faq-content .content-inner p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 {
  padding-top: 60px;
  position: relative;
  padding-bottom: 60px;
}

.about-4 .sticky-lg-top {
  top: 120px;
  z-index: auto;
}

.about-4 .about-images {
  position: relative;
}

.about-4 .about-images .main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.about-4 .about-images .main-image img {
  width: 100%;
  height: auto;
}

.about-4 .about-images .overlay-images {
  position: absolute;
  bottom: -30px;
  right: -30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 60%;
}

@media (max-width: 992px) {
  .about-4 .about-images .overlay-images {
    display: none;
  }
}

.about-4 .about-images .overlay-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--background-color);
}

.about-4 .about-images .experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

@media (max-width: 992px) {
  .about-4 .about-images .experience-badge {
    left: 20px;
  }
}

.about-4 .about-images .experience-badge h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: var(--contrast-color);
}

.about-4 .about-images .experience-badge p {
  font-size: 14px;
  margin: 5px 0 0;
  color: var(--contrast-color);
  opacity: 0.9;
}

.about-4 .about-content {
  padding-left: 30px;
}

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

.about-4 .about-content .label {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-4 .about-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about-4 .about-content h2 {
    font-size: 32px;
  }
}

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

.about-4 .about-content .motto {
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--accent-color), #ffffff 90%);
}

.about-4 .about-content .motto span {
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-4 .right-col {
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: var(--surface-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #efefef;
}

.about-4 .features-list {
  margin-bottom: 30px;
}

.about-4 .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.about-4 .features-list .feature-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.about-4 .features-list .feature-item span {
  font-size: 16px;
  color: var(--default-color);
}

.about-4 .btn-learn-more {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-4 .btn-learn-more:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 {
  padding: 80px 0;
  /*background-color: color-mix(in srgb, var(--accent-color), transparent 95%);*/
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.call-to-action-3 .content h2 {
  color: var(--accent-color);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  text-align: center;
}

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

.call-to-action-3 .content p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.call-to-action-3 .content .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.call-to-action-3 .content .benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--default-color);
  font-size: 15px;
  font-weight: 500;
}

.call-to-action-3 .content .benefits-list li i {
  color: var(--accent-color);
  font-size: 10px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 0px;
}

@media (max-width: 991px) {
  .call-to-action-3 .cta-actions {
    margin-top: 32px;
  }
}

.call-to-action-3 .cta-actions .btn-primary,
.call-to-action-3 .cta-actions .btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.call-to-action-3 .cta-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  margin-bottom: 12px;
}

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

.call-to-action-3 .cta-actions .btn-secondary {
  background-color: var(--background-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  margin-bottom: 24px;
}

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

.call-to-action-3 .cta-actions .trust-indicators {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action-3 .cta-actions .trust-indicators .clients-served {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}

.call-to-action-3 .cta-actions .trust-indicators .clients-served strong {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}

.call-to-action-3 .cta-actions .trust-indicators .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
}

.call-to-action-3 .cta-actions .trust-indicators .rating i {
  color: #ffc107;
  font-size: 16px;
}

.call-to-action-3 .cta-actions .trust-indicators .rating span {
  color: var(--default-color);
  font-weight: 500;
  margin-left: 8px;
}

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

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

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

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

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

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

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

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

.call-to-action-4 .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  padding: 35px;
  opacity: 0.9;
  color: var(--accent-color);
}

.call-to-action-4 .cta-box .content p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: var(--contrast-color);
  margin: auto;
}

.call-to-action-4 .cta-box .content p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
  margin: auto;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 180px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-2 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action-2 .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  padding: 100px 0;
  background-color: var(--background-color);
}

@media (max-width: 768px) {
  .services-2 {
    padding: 64px 0;
  }
}

.services-2 .service-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-2 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.services-2 .service-card:hover .icon-wrapper {
  background: var(--accent-color);
}

.services-2 .service-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

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

.services-2 .service-card.featured {
  background: var(--accent-color);
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .services-2 .service-card.featured {
    transform: scale(1.05);
  }
}

.services-2 .service-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

@media (min-width: 992px) {
  .services-2 .service-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
  }
}

.services-2 .service-card.featured .icon-wrapper {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
}

.services-2 .service-card.featured .icon-wrapper i {
  color: var(--contrast-color);
}

.services-2 .service-card.featured h3 {
  color: var(--contrast-color);
}

.services-2 .service-card.featured p {
  color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
}

.services-2 .service-card.featured .service-link {
  color: var(--contrast-color);
}

.services-2 .service-card.featured .service-link:hover {
  color: var(--contrast-color);
}

.services-2 .service-card .featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.services-2 .service-card .featured-badge i {
  font-size: 10px;
}

.services-2 .service-card .icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.services-2 .service-card .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services-2 .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.services-2 .service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services-2 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services-2 .service-card .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services-2 .service-card .service-link:hover {
  color: color-mix(in srgb, var(--accent-color) 80%, black);
}

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

  .services-2 .service-card .icon-wrapper {
    width: 48px;
    height: 48px;
  }

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

  .services-2 .service-card h3 {
    font-size: 18px;
  }
}

.services-2 .stats-row {
  margin-top: 64px;
  padding: 48px 32px;
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  border-radius: 16px;
}

@media (max-width: 768px) {
  .services-2 .stats-row {
    margin-top: 48px;
    padding: 32px 24px;
  }
}

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

.services-2 .stats-row .stat-item .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .services-2 .stats-row .stat-item .stat-number {
    font-size: 28px;
  }
}

.services-2 .stats-row .stat-item .stat-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .services-2 .stats-row .stat-item .stat-label {
    font-size: 12px;
  }
}

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 24px 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-right: 32px;
  line-height: 1.4;
  cursor: pointer;
  transition: 0.3s;
}

.faq .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 32px;
  top: 28px;
  font-size: 16px;
  line-height: 0;
  color: var(--default-color);
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-active {
  border-color: var(--accent-color);
}

.faq .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 16px;
}

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

@media (max-width: 575px) {
  .faq .faq-item {
    padding: 16px 24px;
  }

  .faq .faq-item .faq-toggle {
    right: 24px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Faq 3 Section
--------------------------------------------------------------*/
.faq-3 .faq-item {
  position: relative;
  margin-bottom: 20px;
  padding: 25px 50px 25px 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  border-left: 4px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 92%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-3 .faq-item:last-child {
  margin-bottom: 0;
}

.faq-3 .faq-item:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq-3 .faq-item .faq-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-3 .faq-item .faq-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.faq-3 .faq-item h3 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
  flex: 1;
}

.faq-3 .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  padding-left: 55px;
}

.faq-3 .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 26px;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.faq-3 .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 30px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-3 .faq-item.faq-active,
.faq-3 .faq-item.active {
  border-left-color: var(--accent-color);
}

.faq-3 .faq-item.faq-active .faq-num,
.faq-3 .faq-item.active .faq-num {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq-3 .faq-item.faq-active h3,
.faq-3 .faq-item.active h3 {
  color: var(--accent-color);
}

.faq-3 .faq-item.faq-active .faq-content,
.faq-3 .faq-item.active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq-3 .faq-item.faq-active .faq-toggle,
.faq-3 .faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-3 .help-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  border-radius: 12px;
  padding: 40px;
  color: var(--contrast-color);
}

.faq-3 .help-banner i {
  font-size: 48px;
  color: var(--contrast-color);
  opacity: 0.85;
}

.faq-3 .help-banner h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.faq-3 .help-banner p {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 24px;
}

.faq-3 .help-banner .btn-help {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq-3 .help-banner .btn-help:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq-3 .faq-item {
    padding: 20px 45px 20px 20px;
  }

  .faq-3 .faq-item .faq-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 12px;
  }

  .faq-3 .faq-item h3 {
    font-size: 15px;
    line-height: 22px;
  }

  .faq-3 .faq-item .faq-content {
    padding-left: 49px;
  }

  .faq-3 .faq-item .faq-toggle {
    right: 18px;
    top: 24px;
  }

  .faq-3 .help-banner {
    padding: 30px 20px;
    text-align: center;
  }

  .faq-3 .help-banner h4 {
    font-size: 20px;
    margin-top: 15px;
  }

  .faq-3 .help-banner p {
    margin-bottom: 15px;
  }

  .faq-3 .help-banner .btn-help {
    margin-top: 5px;
  }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-list {
  margin-bottom: 48px;
}

.faq-2 .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-2 .faq-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.faq-2 .faq-item:hover {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.faq-2 .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8px;
  gap: 16px;
}

.faq-2 .faq-item .faq-label {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.faq-2 .faq-item .faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--heading-font);
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.faq-2 .faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-2 .faq-item .faq-toggle {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-2 .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease, opacity 0.2s ease;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 0 8px 20px 54px;
}

.faq-2 .faq-item.faq-active {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.faq-2 .faq-item.faq-active .faq-badge {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.faq-2 .faq-item.faq-active h3 {
  color: var(--accent-color);
}

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

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

.faq-2 .faq-cta .cta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

.faq-2 .faq-cta .cta-inner>i {
  font-size: 32px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-2 .faq-cta .cta-body {
  flex: 1;
}

.faq-2 .faq-cta .cta-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.faq-2 .faq-cta .cta-body p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.faq-2 .faq-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.faq-2 .faq-cta .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.faq-2 .faq-cta .cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .faq-2 .faq-item .faq-header {
    padding: 16px 4px;
    gap: 12px;
  }

  .faq-2 .faq-item h3 {
    font-size: 15px;
  }

  .faq-2 .faq-item .faq-content p {
    padding: 0 4px 16px 44px;
    font-size: 14px;
  }

  .faq-2 .faq-cta .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }

  .faq-2 .faq-cta .cta-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .faq-2 .faq-item .faq-label {
    gap: 10px;
  }

  .faq-2 .faq-item .faq-content p {
    padding-left: 4px;
  }
}

/*--------------------------------------------------------------
# Faq 4 Section
--------------------------------------------------------------*/
.faq-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-4 .faq-item {
  position: relative;
  margin-bottom: 20px;
  padding: 25px 50px 25px 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  border-left: 4px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 92%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-4 .faq-item:last-child {
  margin-bottom: 0;
}

.faq-4 .faq-item:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq-4 .faq-item .faq-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-4 .faq-item .faq-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.faq-4 .faq-item h3 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
  flex: 1;
}

.faq-4 .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  padding-left: 55px;
}

.faq-4 .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 26px;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.faq-4 .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 30px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-4 .faq-item.faq-active,
.faq-4 .faq-item.active {
  border-left-color: var(--accent-color);
}

.faq-4 .faq-item.faq-active .faq-num,
.faq-4 .faq-item.active .faq-num {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq-4 .faq-item.faq-active h3,
.faq-4 .faq-item.active h3 {
  color: var(--accent-color);
}

.faq-4 .faq-item.faq-active .faq-content,
.faq-4 .faq-item.active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq-4 .faq-item.faq-active .faq-toggle,
.faq-4 .faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-4 .help-banner {
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--contrast-color), #fff 25%));
  border-radius: 12px;
  padding: 40px;
  color: var(--accent-color);
}

.faq-4 .help-banner .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 100%, transparent);
  transition: all 0.3s ease;
}

.faq-4 .help-banner i {
  font-size: 30px;
  color: var(--contrast-color);
  /*opacity: 0.85;*/
}

.faq-4 .help-banner h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.faq-4 .help-banner p {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  line-height: 24px;
}

.faq-4 .help-banner .btn-help {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq-4 .help-banner .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq-4 .faq-item {
    padding: 20px 45px 20px 20px;
  }

  .faq-4 .faq-item .faq-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 12px;
  }

  .faq-4 .faq-item h3 {
    font-size: 15px;
    line-height: 22px;
  }

  .faq-4 .faq-item .faq-content {
    padding-left: 49px;
  }

  .faq-4 .faq-item .faq-toggle {
    right: 18px;
    top: 24px;
  }

  .faq-4 .help-banner {
    padding: 30px 20px;
    text-align: center;
  }

  .faq-4 .help-banner h4 {
    font-size: 20px;
    margin-top: 15px;
  }

  .faq-4 .help-banner p {
    margin-bottom: 15px;
  }

  .faq-4 .help-banner .btn-help {
    margin-top: 5px;
  }
}

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

.pricing-2 .pricing-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-2 .pricing-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-2 .pricing-card.featured .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--surface-color);
  padding: 6px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.pricing-2 .plan-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.pricing-2 .plan-header .plan-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.pricing-2 .plan-header .plan-subtitle {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.pricing-2 .plan-pricing {
  margin-bottom: 32px;
}

.pricing-2 .plan-pricing .price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-2 .plan-pricing .price-wrapper.custom {
  justify-content: flex-start;
}

.pricing-2 .plan-pricing .price-wrapper.custom .custom-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
}

.pricing-2 .plan-pricing .price-wrapper .currency {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
}

.pricing-2 .plan-pricing .price-wrapper .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing-2 .plan-pricing .price-wrapper .amount.annual-price {
  display: none;
}

.pricing-2 .plan-pricing .price-wrapper .period {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing-2 .plan-pricing .billing-info {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.pricing-2 .plan-pricing .billing-info.annual-billing {
  display: none;
}

.pricing-2 .plan-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-2 .plan-features .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-2 .plan-features .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing-2 .plan-features .features-list li:last-child {
  border-bottom: none;
}

.pricing-2 .plan-features .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-2 .plan-features .features-list li span {
  flex: 1;
}

.pricing-2 .plan-action {
  text-align: center;
}

.pricing-2 .plan-action .btn-plan {
  display: block;
  width: 100%;
  padding: 14px 28px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}

.pricing-2 .plan-action .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}

.pricing-2 .plan-action .trial-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 12px 0 0;
}

.pricing-2 .pricing-footer {
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.pricing-2 .pricing-footer .footer-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.pricing-2 .pricing-footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-2 .pricing-footer .footer-links a {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
}

.pricing-2 .pricing-footer .footer-links a:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.pricing-2 .pricing-footer .footer-links .divider {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing-2 .pricing-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .pricing-2 .pricing-toggle {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .pricing-2 .pricing-toggle .toggle-option {
    font-size: 14px;
  }

  .pricing-2 .pricing-card {
    padding: 24px;
  }

  .pricing-2 .plan-pricing .price-wrapper .amount {
    font-size: 40px;
  }

  .pricing-2 .plan-pricing .price-wrapper .currency {
    font-size: 18px;
  }

  .pricing-2 .plan-pricing .price-wrapper .period {
    font-size: 14px;
  }

  .pricing-2 .plan-pricing .price-wrapper.custom .custom-text {
    font-size: 28px;
  }

  .pricing-2 .plan-features .features-list li {
    font-size: 14px;
  }

  .pricing-2 .plan-features .features-list li i {
    font-size: 16px;
  }

  .pricing-2 .pricing-footer .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .pricing-2 .pricing-footer .footer-links .divider {
    display: none;
  }
}

/*--------------------------------------------------------------
# Services 5 Section
--------------------------------------------------------------*/
.services-5 {
  --card-border: color-mix(in srgb, var(--default-color), transparent 86%);
  --card-hover-border: color-mix(in srgb, var(--accent-color), transparent 50%);
  --card-soft-bg: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.services-5 .services-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  height: auto;
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.services-5 .service-card.first {
  position: relative;
  border: 0px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  background: transparent;
  text-align: left;
}

.services-5 .service-card {
  position: relative;
  border-radius: 18px;
  padding: 28px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.services-5 .service-card .service-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.services-5 .service-card .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card-soft-bg);
  color: var(--accent-color);
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.services-5 .service-card .service-icon i {
  font-size: 26px;
  line-height: 1;
}

.services-5 .service-card .service-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
}

.services-5 .service-card .service-text {
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
}

.services-5 .service-card .service-points {
  display: grid;
  gap: 8px;
  margin-bottom: 18px !important;
}

.services-5 .service-card .service-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.services-5 .service-card .service-points li i {
  color: var(--accent-color);
  line-height: 1.2;
  margin-top: 1px;
}

.services-5 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  transition: color 0.3s ease;
}

.services-5 .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services-5 .service-card.compact {
  padding: 24px;
}

.services-5 .service-card.compact .service-icon {
  width: 50px;
  height: 50px;
}

.services-5 .service-card.compact .service-icon i {
  font-size: 22px;
}

.services-5 .service-card.compact .service-title {
  font-size: 1.1rem;
}

.services-5 .service-card.compact .service-text {
  margin-bottom: 18px;
}

.services-5 .service-card:hover {
  border-color: var(--card-hover-border);
  /*transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);*/
}

.services-5 .service-card:hover .service-icon {
  /*background-color: var(--accent-color);
  color: var(--contrast-color);*/
}

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

.services-5 .service-card:hover .service-link i {
  transform: translate(2px, -2px);
}

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

@media (max-width: 576px) {
  .services-5 .service-card {
    border-radius: 14px;
  }

  .services-5 .service-card .service-head {
    gap: 12px;
  }

  .services-5 .service-card .service-title {
    font-size: 1.05rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  --card-border: color-mix(in srgb, var(--default-color), transparent 86%);
  --card-hover-border: color-mix(in srgb, var(--accent-color), transparent 50%);
  --card-soft-bg: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.services .service-card {
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.services .service-card .service-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.services .service-card .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card-soft-bg);
  color: var(--accent-color);
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.services .service-card .service-icon i {
  font-size: 26px;
  line-height: 1;
}

.services .service-card .service-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
}

.services .service-card .service-text {
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
}

.services .service-card .service-points {
  display: grid;
  gap: 8px;
  margin-bottom: 18px !important;
}

.services .service-card .service-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.services .service-card .service-points li i {
  color: var(--accent-color);
  line-height: 1.2;
  margin-top: 1px;
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  transition: color 0.3s ease;
}

.services .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services .service-card.compact {
  padding: 24px;
}

.services .service-card.compact .service-icon {
  width: 50px;
  height: 50px;
}

.services .service-card.compact .service-icon i {
  font-size: 22px;
}

.services .service-card.compact .service-title {
  font-size: 1.1rem;
}

.services .service-card.compact .service-text {
  margin-bottom: 18px;
}

.services .service-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.services .service-card:hover .service-link i {
  transform: translate(2px, -2px);
}

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

@media (max-width: 576px) {
  .services .service-card {
    border-radius: 14px;
  }

  .services .service-card .service-head {
    gap: 12px;
  }

  .services .service-card .service-title {
    font-size: 1.05rem;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .info-tile {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 3px solid var(--accent-color);
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-2 .info-tile:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-bottom-color: var(--accent-color);
}

.contact-2 .info-tile .tile-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-2 .info-tile .tile-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.contact-2 .info-tile h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

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

.contact-2 .map-block {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 88%);
}

.contact-2 .map-block iframe {
  width: 100%;
  height: 100%;
}

.contact-2 .social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 18px 24px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact-2 .social-bar span {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact-2 .social-bar .social-icons {
  display: flex;
  gap: 10px;
}

.contact-2 .social-bar .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-2 .social-bar .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .contact-2 .social-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.contact-2 .form-block {
  background-color: var(--surface-color);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 88%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-2 .form-block .form-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.contact-2 .form-block .form-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact-2 .form-block .form-header p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.contact-2 .form-block label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-2 .form-block .php-email-form {
  flex: 1;
}

.contact-2 .form-block .php-email-form .form-control {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-2 .form-block .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 88%);
  background-color: var(--surface-color);
}

.contact-2 .form-block .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.contact-2 .form-block .php-email-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-2 .form-block .php-email-form button[type=submit] {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.contact-2 .form-block .php-email-form button[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-2 .form-block {
    padding: 25px 20px;
  }

  .contact-2 .form-block .form-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact-2 .map-block {
    height: 260px;
  }
}