/* Esconde apenas as linhas extras de planos no mobile, sem afetar o Swiper */
@media (max-width: 767.98px) {
  #planos-grid,
  #planos-grid + .row,
  #planos-grid + .row + .row {
    display: none !important;
  }
}
  .planos-swiper-container .swiper-button-next,
  .planos-swiper-container .swiper-button-prev {
    color: var(--accent-color);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 38px;
    height: 38px;
    top: 40%;
    transition: background 0.2s;
  }
  .planos-swiper-container .swiper-button-next:hover,
  .planos-swiper-container .swiper-button-prev:hover {
    background: var(--accent-color);
    color: #fff;
  }
  .planos-swiper-container .swiper-button-next:after,
  .planos-swiper-container .swiper-button-prev:after {
    font-size: 20px;
  }
/* Carrossel de planos mobile */
@media (max-width: 767.98px) {
  .planos-swiper-container {
    margin-bottom: 2rem;
  }
  .planos-swiper-container .swiper {
    width: 100%;
    padding-bottom: 32px;
  }
  .planos-swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
  }
  .planos-swiper-container .pricing-card {
    min-width: 0;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  #planos-grid {
    display: none !important;
  }
}
@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Verdana",  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: "Questrial",  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: #535d6b; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #344761; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #215d8e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(83, 93, 107, 0.875);  /* The default color of the main navmenu links */
  --nav-hover-color: #215d8e; /* 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: #535d6b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #215d8e; /* 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: #f8fbff;
  --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(255, 255, 255, 0);
  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: 41.4px;
  margin-right: 8px;
}

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

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 24px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

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

  .header .header-social-links {
    order: 2;
  }

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

/*--------------------------------------------------------------
# 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: #f8fbff;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 60px 0;
}

.footer .footer-newsletter h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.footer .footer-newsletter .newsletter-form {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  height: 54px;
  border-radius: 50px;
  padding: 10px 25px;
  width: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.footer .footer-newsletter .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 15px;
}

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

.footer .footer-main {
  padding: 70px 0 40px;
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

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

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: flex-start;
}

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

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

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer .footer-main .footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer .footer-main .footer-links a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a:hover:before {
  width: 100%;
}

.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  color: var(--contrast-color);
}

.footer .footer-main .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-icons a:hover {
  background-color: var(--accent-color);
  transform: rotate(360deg);
  color: var(--contrast-color);
}

.footer .footer-bottom {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 0;
}

.footer .footer-bottom .payment-methods {
  display: flex;
  align-items: center;
}

.footer .footer-bottom .payment-methods span {
  margin-right: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .copyright {
  padding-top: 10px;
}

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

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  text-align: center;
  padding-top: 5px;
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0 15px 0;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

@media (max-width: 991.98px) {
  .footer .footer-newsletter {
    padding: 50px 0;
  }

  .footer .footer-newsletter h2 {
    font-size: 28px;
  }

  .footer .footer-main {
    padding: 60px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-newsletter {
    padding: 40px 0;
  }

  .footer .footer-newsletter h2 {
    font-size: 24px;
  }

  .footer .footer-newsletter p {
    font-size: 15px;
  }

  .footer .footer-newsletter .newsletter-form button {
    padding: 0 20px;
    font-size: 14px;
  }

  .footer .footer-bottom .payment-methods {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer .footer-bottom .copyright {
    text-align: center;
  }

  .footer .app-buttons {
    justify-content: center;
  }

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

/*--------------------------------------------------------------
# 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 3 Section
--------------------------------------------------------------*/
.hero-3 {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-3 .hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/education/showcase-1.webp") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  padding: 120px 20px;
  position: relative;
}

.hero-3 .hero-container .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-3 .hero-container .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero-3 .hero-container .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero-3 .hero-container .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero-3 .hero-container .hero-content p {
    font-size: 1.1rem;
  }
}

.hero-3 .hero-container .hero-content .cta-buttons {
  margin-bottom: 30px;
}

.hero-3 .hero-container .hero-content .cta-buttons a {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero-3 .hero-container .hero-content .cta-buttons a {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-apply {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-tour {
  background-color: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.hero-3 .hero-container .hero-content .cta-buttons .btn-tour:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-3 .hero-container .hero-content .announcement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
}

.hero-3 .hero-container .hero-content .announcement .announcement-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 15px;
  text-transform: uppercase;
}

.hero-3 .hero-container .hero-content .announcement p {
  margin: 0;
  font-size: 1rem;
}

.hero-3 .highlights-container {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.hero-3 .highlights-container .highlight-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hero-3 .highlights-container .highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-3 .highlights-container .highlight-item .icon {
  font-size: 2.5rem;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero-3 .highlights-container .highlight-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-3 .highlights-container .highlight-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-3 .event-banner {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  padding: 25px 0;
  margin-top: 40px;
}

.hero-3 .event-banner .event-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.hero-3 .event-banner .event-date .month {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-3 .event-banner .event-date .day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-3 .event-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-3 .event-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.hero-3 .event-banner .btn-register {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-3 .event-banner .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-3 .event-banner .btn-register {
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-3 .event-banner {
    text-align: center;
  }

  .hero-3 .event-banner .event-date {
    margin: 0 auto 15px;
    max-width: 100px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
  .steps .steps-grid {
    gap: 1.5rem;
  }
}

.steps .step-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.steps .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

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

.steps .step-card:hover .step-arrow {
  transform: translateX(5px);
}

.steps .step-card .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.steps .step-card .step-number {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.steps .step-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .steps .step-card h3 {
    font-size: 1.2rem;
  }
}

.steps .step-card p {
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.steps .step-card .step-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}

@media (max-width: 991px) {
  .steps .step-card .step-arrow {
    display: none;
  }
}

.steps .step-card:last-child .step-arrow {
  display: none;
}

@media (max-width: 991px) {
  .steps .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .steps .step-card {
    padding: 2rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-3 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-3 .features-card:last-child {
  margin-bottom: 0;
}

.features-3 .feature-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.features-3 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.features-3 .feature-image:hover img {
  transform: scale(1.05);
}

.features-3 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-3 .feature-image .overlay-icon i {
  font-size: 24px;
}

.features-3 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.features-3 .feature-content .content-inner {
  padding: 3rem;
}

@media (max-width: 992px) {
  .features-3 .feature-content .content-inner {
    padding: 2rem;
  }
}

.features-3 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.features-3 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .features-3 h3 {
    font-size: 24px;
  }
}

.features-3 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.features-3 .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.features-3 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-3 .feature-list li:last-child {
  margin-bottom: 0;
}

.features-3 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.features-3 .feature-action {
  margin-top: 1.5rem;
}

.features-3 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.features-3 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.features-3 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.features-3 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .features-3 .feature-image,
  .features-3 .feature-content {
    height: auto;
  }

  .features-3 .feature-content .content-inner {
    padding: 2rem;
  }

  .features-3 h3 {
    font-size: 22px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.call-to-action .container {
  position: relative;
}

.call-to-action h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.call-to-action .btn:hover {
  transform: translateY(-2px);
}

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

.call-to-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .scribble {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.call-to-action .scribble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.call-to-action .scribble-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 5%;
  animation-delay: 0s;
}

.call-to-action .scribble-1::before {
  clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
}

.call-to-action .scribble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.call-to-action .scribble-2::before {
  clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
}

.call-to-action .scribble-3 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: 15%;
  animation-delay: -4s;
}

.call-to-action .scribble-3::before {
  clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
}

@keyframes float {

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

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

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

  .call-to-action h2 {
    font-size: 2.5rem;
  }

  .call-to-action .lead {
    font-size: 1.1rem;
  }

  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .call-to-action .scribble {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding-top: 82px;
  position: relative;
  background-color: var(--background-color);
  overflow: hidden;
  padding-bottom: 120px;
}

.hero-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/construction/showcase-5.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.hero-2 .container {
  position: relative;
  z-index: 1;
}

.hero-2 .hero-content {
  margin-bottom: 30px;
}

.hero-2 .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.hero-2 .hero-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.hero-2 .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero-2 .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-2 .hero-content h1 {
    font-size: 32px;
  }
}

.hero-2 .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-2 .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .hero-2 .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.hero-2 .hero-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-2 .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-2 .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-2 .hero-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero-2 .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero-2 .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero-2 .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-2 .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.hero-2 .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero-2 .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero-2 .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-2 .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-2 .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

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

.hero-2 .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-2 .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero-2 .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero-2 {
    padding: 80px 0;
  }

  .hero-2 .hero-content {
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# Features 4 Section
--------------------------------------------------------------*/
.features-4 .content-wrapper {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  border-radius: 20px 0 0 20px;
}

.features-4 .content-wrapper .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  align-self: flex-start;
}

.features-4 .content-wrapper h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.features-4 .content-wrapper p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 35px;
}

.features-4 .features-checklist .check-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.features-4 .features-checklist .check-item i {
  font-size: 20px;
  color: var(--accent-color);
}

.features-4 .features-checklist .check-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
}

.features-4 .features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 40px;
  background: var(--surface-color);
  border-radius: 0 20px 20px 0;
  height: 100%;
}

.features-4 .feature-card {
  background: var(--background-color);
  padding: 30px 25px;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features-4 .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
}

.features-4 .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features-4 .feature-card.primary::before {
  background: linear-gradient(90deg, #3690e7, #4facfe);
}

.features-4 .feature-card.secondary::before {
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.features-4 .feature-card.tertiary::before {
  background: linear-gradient(90deg, #f093fb, #f5576c);
}

.features-4 .feature-card.quaternary::before {
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.features-4 .feature-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.features-4 .feature-card .card-header .icon-wrapper {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-4 .feature-card .card-header .icon-wrapper i {
  font-size: 22px;
  color: var(--accent-color);
}

.features-4 .feature-card .card-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.features-4 .feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 991px) {
  .features-4 .row {
    flex-direction: column;
  }

  .features-4 .content-wrapper {
    border-radius: 20px 20px 0 0;
    padding: 50px 30px;
  }

  .features-4 .content-wrapper h2 {
    font-size: 32px;
  }

  .features-4 .content-wrapper p {
    font-size: 16px;
  }

  .features-4 .features-cards {
    border-radius: 0 0 20px 20px;
    padding: 30px;
  }
}

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

  .features-4 .content-wrapper {
    text-align: center;
    padding: 40px 25px;
  }

  .features-4 .content-wrapper h2 {
    font-size: 28px;
  }

  .features-4 .content-wrapper .section-badge {
    align-self: center;
  }

  .features-4 .feature-card {
    padding: 25px 20px;
  }

  .features-4 .feature-card .card-header {
    gap: 12px;
  }

  .features-4 .feature-card .card-header .icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .features-4 .feature-card .card-header .icon-wrapper i {
    font-size: 20px;
  }

  .features-4 .feature-card .card-header h4 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .features-4 .content-wrapper {
    padding: 30px 20px;
  }

  .features-4 .content-wrapper h2 {
    font-size: 24px;
  }

  .features-4 .features-cards {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Features 5 Section
--------------------------------------------------------------*/
.features-5 .features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.features-5 .features-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-5 .features-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, color-mix(in srgb, var(--accent-color), transparent 70%), transparent);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.features-5 .features-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

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

@media (max-width: 992px) {
  .features-5 .features-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

.features-5 .features-content .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.features-5 .feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  height: 100%;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 94%);
}

.features-5 .feature-item:hover {
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.features-5 .feature-item:hover .feature-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.features-5 .feature-icon i {
  font-size: 1.25rem;
}

.features-5 .feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.features-5 .feature-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.features-5 .btn-learn-more {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.features-5 .btn-learn-more i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.features-5 .btn-learn-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features-5 .btn-learn-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .features-5 .feature-item {
    padding: 1rem;
  }

  .features-5 .feature-icon {
    width: 40px;
    height: 40px;
  }

  .features-5 .feature-icon i {
    font-size: 1rem;
  }

  .features-5 .feature-text h4 {
    font-size: 1rem;
  }

  .features-5 .feature-text p {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {

  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-item:hover .icon-wrapper {
  transform: scale(1.05);
  background: var(--accent-color);
}

.services .service-item:hover .service-btn {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateX(4px);
}

.services .service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services .icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 20%));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .icon-wrapper i {
  font-size: 28px;
  color: var(--contrast-color);
}

.services .badge-featured {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.services h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

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

.services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.services .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.services .feature-list li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.services .feature-list li:last-child {
  margin-bottom: 0;
}

.services .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}

.services .service-btn i {
  font-size: 16px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-btn:hover {
  color: var(--contrast-color);
}

.services .service-btn:hover i {
  transform: translateX(3px);
}

.services .cta-wrapper {
  margin-top: 64px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 93%), color-mix(in srgb, var(--accent-color), transparent 85%));
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 16px;
  padding: 48px;
}

@media (max-width: 992px) {
  .services .cta-wrapper {
    padding: 40px 32px;
    margin-top: 48px;
  }
}

@media (max-width: 768px) {
  .services .cta-wrapper {
    padding: 32px 24px;
    margin-top: 40px;
  }
}

.services .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (max-width: 992px) {
  .services .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

.services .cta-text {
  flex: 1;
}

.services .cta-text h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .services .cta-text h3 {
    font-size: 26px;
  }
}

.services .cta-text p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.services .cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .services .cta-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .services .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

.services .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--accent-color);
}

.services .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .services .btn-primary {
    width: 100%;
    text-align: center;
  }
}

.services .btn-secondary {
  background: transparent;
  color: var(--accent-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--accent-color);
}

.services .btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .services .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

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

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

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

  .services h3 {
    font-size: 20px;
  }

  .services p {
    font-size: 14px;
  }

  .services .feature-list li {
    font-size: 13px;
  }
}  

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  padding: 120px 0;
}

.hero-4 .hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-4 .hero-left .model-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-4 .hero-left .model-container .main-model {
  max-height: 600px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.hero-4 .hero-left .model-container .product-showcase {
  position: absolute;
  right: 15px;
  width: 280px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item {
  background-color: var(--surface-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item:hover {
  transform: translateX(-5px);
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item .item-image {
  width: 75px;
  height: 75px;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item .item-image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item .item-details {
  flex: 1;
  padding-left: 12px;
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item .item-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item .item-details .item-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item .item-details .item-price .price-current {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-color);
}

.hero-4 .hero-left .model-container .product-showcase .showcase-item .item-details .item-price .price-original {
  font-size: 14px;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero-4 .hero-left .floating-badge {
  position: absolute;
  left: 15%;
  bottom: 15%;
  z-index: 3;
}

.hero-4 .hero-left .floating-badge.limited-offer {
  width: 90px;
  height: 90px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

.hero-4 .hero-left .floating-badge.limited-offer .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--contrast-color);
}

.hero-4 .hero-left .floating-badge.limited-offer .badge-content .offer-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.hero-4 .hero-left .floating-badge.limited-offer .badge-content .offer-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-4 .hero-right {
  display: flex;
  align-items: center;
}

.hero-4 .hero-right .hero-content {
  padding: 30px 0;
}

.hero-4 .hero-right .hero-content .season-tag {
  display: inline-block;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 70%) 100%);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.hero-4 .hero-right .hero-content .season-tag span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.hero-4 .hero-right .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-4 .hero-right .hero-content h1 .highlight {
  position: relative;
  color: var(--accent-color);
}

.hero-4 .hero-right .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
  border-radius: 10px;
}

.hero-4 .hero-right .hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 30px;
}

.hero-4 .hero-right .hero-content .countdown-container {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.hero-4 .hero-right .hero-content .countdown-container .countdown-title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.hero-4 .hero-right .hero-content .countdown-container .countdown {
  display: flex;
  gap: 15px;
}

.hero-4 .hero-right .hero-content .countdown-container .countdown>div {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 10px 15px;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.hero-4 .hero-right .hero-content .countdown-container .countdown>div h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--accent-color);
}

.hero-4 .hero-right .hero-content .countdown-container .countdown>div h4 {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-4 .hero-right .hero-content .action-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-4 .hero-right .hero-content .action-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-4 .hero-right .hero-content .action-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.hero-4 .hero-right .hero-content .action-buttons .btn-secondary {
  background-color: transparent;
  color: var(--heading-color);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 70%);
  transition: all 0.3s ease;
}

.hero-4 .hero-right .hero-content .action-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-color: var(--heading-color);
}

.hero-4 .hero-right .hero-content .store-benefits {
  display: flex;
  gap: 30px;
}

.hero-4 .hero-right .hero-content .store-benefits .benefit-item {
  display: flex;
  align-items: center;
}

.hero-4 .hero-right .hero-content .store-benefits .benefit-item i {
  font-size: 26px;
  color: var(--accent-color);
  margin-right: 15px;
}

.hero-4 .hero-right .hero-content .store-benefits .benefit-item .benefit-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-4 .hero-right .hero-content .store-benefits .benefit-item .benefit-info p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1199.98px) {
  .hero-4 .hero-right .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 991.98px) {
  .hero-4 {
    padding: 80px 0;
  }

  .hero-4 .hero-left {
    margin-bottom: 60px;
    min-height: 450px;
  }

  .hero-4 .hero-left .model-container .product-showcase {
    right: 10%;
  }

  .hero-4 .hero-right .hero-content {
    text-align: center;
  }

  .hero-4 .hero-right .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-4 .hero-right .hero-content .action-buttons {
    justify-content: center;
  }

  .hero-4 .hero-right .hero-content .store-benefits {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-4 {
    padding: 60px 0;
  }

  .hero-4 .hero-left {
    min-height: 400px;
  }

  .hero-4 .hero-left .model-container .main-model {
    max-height: 450px;
  }

  .hero-4 .hero-left .model-container .product-showcase {
    width: 220px;
  }

  .hero-4 .hero-left .model-container .product-showcase .showcase-item .item-image {
    width: 60px;
    height: 60px;
  }

  .hero-4 .hero-left .floating-badge.limited-offer {
    width: 70px;
    height: 70px;
  }

  .hero-4 .hero-left .floating-badge.limited-offer .badge-content .offer-label {
    font-size: 14px;
  }

  .hero-4 .hero-left .floating-badge.limited-offer .badge-content .offer-value {
    font-size: 18px;
  }

  .hero-4 .hero-right .hero-content h1 {
    font-size: 2rem;
  }

  .hero-4 .hero-right .hero-content .countdown-container .countdown>div {
    min-width: 60px;
    padding: 8px 10px;
  }

  .hero-4 .hero-right .hero-content .countdown-container .countdown>div h3 {
    font-size: 20px;
  }

  .hero-4 .hero-right .hero-content .countdown-container .countdown>div h4 {
    font-size: 12px;
  }

  .hero-4 .hero-right .hero-content .action-buttons {
    flex-direction: column;
  }

  .hero-4 .hero-right .hero-content .action-buttons .btn-primary,
  .hero-4 .hero-right .hero-content .action-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  height: 100%;
  padding: 60px 40px;
  border-radius: 8px;
  transition: all 0.4s ease;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  position: relative;
  overflow: hidden;
}

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

.services-2 .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-2 .service-item:hover::before {
  transform: scaleX(1);
}

.services-2 .service-item:hover .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
}

.services-2 .service-item:hover .service-icon i {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.services-2 .service-item:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .services-2 .service-item {
    padding: 40px 30px;
  }
}

.services-2 .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.services-2 .service-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.services-2 h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
  color: var(--heading-color);
  line-height: 1.3;
}

.services-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 15px;
}

.services-2 .service-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.services-2 .service-link span {
  font-weight: 500;
}

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

.services-2 .service-link:hover {
  color: var(--heading-color);
}

.services-2 .row {
  margin: 0 -15px;
}

@media (max-width: 768px) {
  .services-2 .row {
    margin: 0 -10px;
  }
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 {
  padding: 90px 0;
}

.services-3 .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-3 .section-header .badge-wrapper {
  margin-bottom: 1rem;
}

.services-3 .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-3 .section-header .section-badge i {
  font-size: 14px;
}

.services-3 .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .services-3 .section-header .section-title {
    font-size: 2rem;
  }
}

.services-3 .section-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 700px;
  margin: 0 auto;
}

.services-3 .services-container {
  margin-bottom: 60px;
}

.services-3 .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services-3 .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.services-3 .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services-3 .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services-3 .services-container .service-item .service-icon {
  flex: 0 0 90px;
  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: 2rem;
  transition: all 0.3s ease;
}

.services-3 .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services-3 .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services-3 .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services-3 .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services-3 .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-3 .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services-3 .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-3 .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services-3 .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services-3 .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services-3 .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services-3 .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services-3 .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services-3 .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services-3 .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services-3 .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services-3 .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .services-3 .services-container .service-item {
    flex-direction: column;
  }

  .services-3 .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services-3 .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Features 6 Section
--------------------------------------------------------------*/
.features-6 .feature-card {
  background-color: var(--surface-color);
  padding: 40px 25px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.features-6 .feature-card .icon-holder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 25px auto;
  border: 5px solid var(--background-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.features-6 .feature-card .icon-holder i {
  font-size: 2.2rem;
  line-height: 0;
}

.features-6 .feature-card .feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.features-6 .feature-card .feature-title a {
  color: inherit;
  transition: color 0.3s;
}

.features-6 .feature-card .feature-title a:hover {
  color: var(--accent-color);
}

.features-6 .feature-card .feature-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.features-6 .feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.features-6 .feature-card:hover .icon-holder {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .features-6 .feature-card {
    padding: 35px 20px;
  }

  .features-6 .feature-card .icon-holder {
    width: 65px;
    height: 65px;
    margin-top: -60px;
  }

  .features-6 .feature-card .icon-holder i {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .features-6 .row>[class*=col-]:last-child .feature-card {
    margin-bottom: 0;
  }

  .features-6 .feature-card {
    margin-bottom: 50px;
    /* Adjust based on icon-holder negative margin */
  }

  .features-6 .feature-card .icon-holder {
    width: 60px;
    height: 60px;
    margin-top: -55px;
    /* Pulls icon holder further up from content edge to avoid large gap */
  }

  .features-6 .feature-card .icon-holder i {
    font-size: 1.8rem;
  }

  .features-6 .feature-card .feature-title {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 60px;
  background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  position: relative;
  padding-bottom: 60px;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 50%);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .contact-intro {
  margin-bottom: 40px;
}

.contact .contact-intro .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  margin-bottom: 24px;
}

.contact .contact-intro .intro-badge i {
  font-size: 16px;
  color: var(--accent-color);
}

.contact .contact-intro .intro-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
}

.contact .contact-intro h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--heading-color);
  line-height: 1.2;
}

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

.contact .contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact .channel-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .channel-card:hover .channel-icon {
  background: var(--accent-color);
  transform: scale(1.05);
}

.contact .channel-card:hover .channel-icon i {
  color: var(--contrast-color);
}

.contact .channel-card .channel-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .channel-card .channel-icon i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .channel-card .channel-info {
  flex: 1;
}

.contact .channel-card .channel-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.contact .channel-card .channel-info p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--default-color);
}

.contact .channel-card .channel-info .channel-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .trust-indicators {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
}

.contact .trust-indicators .indicator-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .trust-indicators .indicator-item:last-child {
  border-right: none;
}

.contact .trust-indicators .indicator-item .indicator-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
  line-height: 1;
}

.contact .trust-indicators .indicator-item .indicator-label {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact .form-wrapper {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 94%);
}

.contact .form-wrapper .form-header {
  margin-bottom: 32px;
}

.contact .form-wrapper .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--heading-color);
}

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

.contact .form-wrapper .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .form-wrapper .php-email-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .form-wrapper .php-email-form .form-group .form-control {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .form-wrapper .php-email-form .form-group .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .form-wrapper .php-email-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .form-wrapper .php-email-form .form-group select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact .form-wrapper .php-email-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact .form-wrapper .php-email-form .form-check-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.contact .form-wrapper .php-email-form .form-check-group .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 4px;
  flex-shrink: 0;
}

.contact .form-wrapper .php-email-form .form-check-group .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .form-wrapper .php-email-form .form-check-group .form-check-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  cursor: pointer;
  line-height: 1.5;
}

.contact .form-wrapper .php-email-form .submit-btn {
  width: 100%;
  height: 52px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 16px;
}

.contact .form-wrapper .php-email-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(3px);
}

.contact .form-wrapper .php-email-form .submit-btn i {
  font-size: 16px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .form-wrapper .php-email-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .form-wrapper .php-email-form .form-footer i {
  font-size: 16px;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.contact .form-wrapper .php-email-form .form-footer span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .contact .contact-intro h2 {
    font-size: 32px;
  }

  .contact .trust-indicators .indicator-item .indicator-value {
    font-size: 20px;
  }

  .contact .form-wrapper {
    margin-top: 40px;
  }
}

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

  .contact .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .contact .trust-indicators .indicator-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0 0 16px 0;
  }

  .contact .trust-indicators .indicator-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact .form-wrapper {
    padding: 32px 24px;
  }

  .contact .form-wrapper .form-header h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .contact .contact-intro h2 {
    font-size: 24px;
  }

  .contact .channel-card {
    flex-direction: column;
    text-align: center;
  }

  .contact .channel-card .channel-icon {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Enroll Section
--------------------------------------------------------------*/
.enroll {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.enroll .enrollment-form-wrapper {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .enroll .enrollment-form-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
  }
}

.enroll .enrollment-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .enroll .enrollment-header h2 {
    font-size: 2rem;
  }
}

.enroll .enrollment-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

.enroll .enrollment-form .form-group {
  margin-bottom: 1.5rem;
}

.enroll .enrollment-form .form-group .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.enroll .enrollment-form .form-group .form-control,
.enroll .enrollment-form .form-group .form-select {
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--default-color);
}

.enroll .enrollment-form .form-group .form-control:focus,
.enroll .enrollment-form .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: none;
}

.enroll .enrollment-form .form-group .form-control::placeholder,
.enroll .enrollment-form .form-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.enroll .enrollment-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.enroll .enrollment-form .schedule-options .form-check {
  margin-bottom: 12px;
  padding: 15px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.enroll .enrollment-form .schedule-options .form-check:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input {
  margin-top: 3px;
  margin-left: 0px;
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.enroll .enrollment-form .schedule-options .form-check .form-check-label {
  font-weight: 500;
  margin-left: 10px;
  cursor: pointer;
}

.enroll .enrollment-form .agreement-section {
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.enroll .enrollment-form .agreement-section .form-check {
  margin-bottom: 15px;
}

.enroll .enrollment-form .agreement-section .form-check:last-child {
  margin-bottom: 0;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label {
  font-size: 0.95rem;
  line-height: 1.5;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a:hover {
  color: var(--heading-color);
}

.enroll .enrollment-form .btn-enroll {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.enroll .enrollment-form .btn-enroll:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s;
}

.enroll .enrollment-form .btn-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.enroll .enrollment-form .btn-enroll:hover:before {
  left: 100%;
}

.enroll .enrollment-form .btn-enroll:active {
  transform: translateY(-1px);
}

.enroll .enrollment-form .btn-enroll .bi {
  font-size: 1.2rem;
}

.enroll .enrollment-form .enrollment-note {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
}

.enroll .enrollment-form .enrollment-note .bi {
  color: var(--accent-color);
  margin-right: 5px;
}

.enroll .enrollment-benefits {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.enroll .enrollment-benefits h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--heading-color);
  text-align: center;
}

.enroll .enrollment-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.enroll .enrollment-benefits .benefit-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateX(5px);
}

.enroll .enrollment-benefits .benefit-item .benefit-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.enroll .enrollment-benefits .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.enroll .enrollment-benefits .benefit-item .benefit-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.4;
}

.enroll .enrollment-benefits .enrollment-stats {
  background: var(--accent-color);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item {
  display: block;
  margin-bottom: 15px;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item:last-child {
  margin-bottom: 0;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--contrast-color);
  line-height: 1;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-top: 5px;
}

@media (max-width: 992px) {
  .enroll .enrollment-benefits {
    margin-top: 50px;
    position: static;
    top: auto;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 60px;
  --hero-surface: color-mix(in srgb, var(--accent-color), transparent 92%);
  --hero-shadow: 0 24px 60px color-mix(in srgb, var(--accent-color), transparent 88%);
  background: var(--hero-surface);
  padding-bottom: 60px;
}

.hero .hero-copy {
  max-width: 520px;
}

.hero .hero-copy .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero .hero-copy h1 {
  margin: 20px 0 16px;
  font-weight: 700;
}

.hero .hero-copy .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.hero .hero-copy .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .hero-copy .cta-buttons .btn {
  border-radius: 16px;
  padding: 12px 22px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero .hero-copy .cta-buttons .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-copy .cta-buttons .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.hero .hero-copy .cta-buttons .btn-ghost {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.hero .hero-copy .cta-buttons .btn-ghost:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.hero .hero-copy .cta-form {
  margin-top: 28px;
  padding: 16px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero .hero-copy .cta-form .input-group {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: nowrap;
}

.hero .hero-copy .cta-form input[type=email] {
  flex: 1;
  border-radius: 12px;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 16px;
}

.hero .hero-copy .cta-form input[type=email]:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.hero .hero-copy .cta-form .btn-submit {
  border-radius: 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .hero-copy .cta-form .btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px color-mix(in srgb, var(--accent-color), transparent 72%);
}

.hero .hero-copy .reassurance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.hero .hero-copy .reassurance i {
  color: var(--accent-color);
}

.hero .visual-stack {
  display: flex;
  justify-content: center;
}

.hero .visual-stack .app-preview {
  position: relative;
  padding: 28px;
  background: var(--surface-color);
  border-radius: 28px;
  box-shadow: var(--hero-shadow);
  overflow: hidden;
}

.hero .visual-stack .app-preview img {
  border-radius: 20px;
  box-shadow: 0 18px 38px color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero .visual-stack .app-preview .floating-card {
  position: absolute;
  border-radius: 18px;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
  backdrop-filter: blur(10px);
}

.hero .visual-stack .app-preview .progress-card {
  top: 40px;
  right: 32px;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero .visual-stack .app-preview .progress-card span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .visual-stack .app-preview .progress-card strong {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.hero .visual-stack .app-preview .progress-card p {
  margin: 0;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.hero .visual-stack .app-preview .activity-card {
  left: 28px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .visual-stack .app-preview .activity-card i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.hero .visual-stack .app-preview .activity-card span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.hero .visual-stack .app-preview .activity-card strong {
  display: block;
  font-size: 1rem;
  color: var(--default-color);
}

.hero .feature-cards {
  margin-top: 40px;
}

.hero .feature-cards .feature-card {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: var(--surface-color);
  box-shadow: 0 24px 48px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .feature-cards .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.hero .feature-cards .feature-card .icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  margin-bottom: 18px;
}

.hero .feature-cards .feature-card .icon-bubble i {
  font-size: 1.6rem;
}

.hero .feature-cards .feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero .feature-cards .feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .client-strip {
  margin-top: 48px;
  padding: 22px 28px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero .client-strip span {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero .client-strip .client-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero .client-strip .client-logos img {
  height: 32px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hero .client-strip .client-logos img:hover {
  opacity: 0.85;
}

@media (max-width: 992px) {
  .hero .hero-copy {
    max-width: 100%;
  }

  .hero .visual-stack .app-preview {
    margin: 0 auto;
    padding: 22px;
  }

  .hero .visual-stack .app-preview .progress-card {
    top: 24px;
    right: 24px;
    width: 160px;
  }

  .hero .visual-stack .app-preview .activity-card {
    left: 20px;
    bottom: 24px;
  }
}

@media (max-width: 768px) {
  .hero .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero .cta-form .input-group {
    flex-direction: column;
  }

  .hero .cta-form .input-group .btn-submit {
    width: 100%;
  }

  .hero .client-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero .client-strip .client-logos {
    justify-content: flex-start;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

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

/*--------------------------------------------------------------
# Steps 2 Section
--------------------------------------------------------------*/
.steps-2 {
  /* Responsive Styles */
}

.steps-2 .timeline-container {
  position: relative;
  padding: 30px 0;
}

.steps-2 .timeline-track {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-2 .timeline-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent-color) 10%, var(--accent-color) 90%, transparent);
  transform: translateX(-50%);
  z-index: 1;
}

.steps-2 .timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.steps-2 .timeline-item:last-child {
  margin-bottom: 0;
}

.steps-2 .timeline-item.left .timeline-content {
  padding-right: 50px;
  text-align: right;
}

.steps-2 .timeline-item.left .timeline-content .timeline-marker {
  right: -35px;
}

.steps-2 .timeline-item.right .timeline-content {
  padding-left: 50px;
  margin-left: 50%;
}

.steps-2 .timeline-item.right .timeline-content .timeline-marker {
  left: -35px;
}

.steps-2 .timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.steps-2 .timeline-item:hover .timeline-marker .step-icon {
  color: var(--contrast-color);
}

.steps-2 .timeline-item:hover .timeline-body {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.steps-2 .timeline-content {
  position: relative;
  width: 50%;
}

.steps-2 .timeline-marker {
  position: absolute;
  top: 15px;
  width: 70px;
  height: 70px;
  background-color: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps-2 .timeline-marker .step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 3;
  border: 3px solid var(--surface-color);
}

.steps-2 .timeline-marker .step-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.steps-2 .timeline-body {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.steps-2 .timeline-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

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

@media (max-width: 991px) {
  .steps-2 .timeline-track::before {
    left: 30px;
  }

  .steps-2 .timeline-item.left .timeline-content,
  .steps-2 .timeline-item.right .timeline-content {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .steps-2 .timeline-item.left .timeline-content .timeline-marker,
  .steps-2 .timeline-item.right .timeline-content .timeline-marker {
    left: 0;
    right: auto;
  }
}

@media (max-width: 767px) {
  .steps-2 .timeline-item {
    margin-bottom: 50px;
  }

  .steps-2 .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .steps-2 .timeline-marker .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .steps-2 .timeline-marker .step-icon {
    font-size: 1.3rem;
  }

  .steps-2 .timeline-body {
    padding: 20px;
  }

  .steps-2 .timeline-body h3 {
    font-size: 1.2rem;
  }

  .steps-2 .timeline-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .steps-2 .timeline-marker {
    width: 50px;
    height: 50px;
  }

  .steps-2 .timeline-marker .step-icon {
    font-size: 1.1rem;
  }

  .steps-2 .timeline-item.left .timeline-content,
  .steps-2 .timeline-item.right .timeline-content {
    padding-left: 70px;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  background-color: color-mix(in srgb, var(--accent-color), var(--background-color) 95%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cards .card-item.active,
.cards .card-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.cards .card-item.active h3,
.cards .card-item.active .icon,
.cards .card-item.active .read-more,
.cards .card-item:hover h3,
.cards .card-item:hover .icon,
.cards .card-item:hover .read-more {
  color: var(--contrast-color);
}

.cards .card-item.active .read-more:hover,
.cards .card-item:hover .read-more:hover {
  color: var(--contrast-color);
}

.cards .card-item:hover {
  transform: translateY(-5px);
}

.cards .card-item .icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.cards .card-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cards .card-item .img-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}

.cards .card-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards .card-item .read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.cards .card-item .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cards .card-item .read-more i {
  margin-left: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 .card-item {
  background-color: color-mix(in srgb, var(--accent-color), var(--background-color) 95%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cards-2 .card-item.active,
.cards-2 .card-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.cards-2 .card-item.active h3,
.cards-2 .card-item.active .icon,
.cards-2 .card-item.active .read-more,
.cards-2 .card-item:hover h3,
.cards-2 .card-item:hover .icon,
.cards-2 .card-item:hover .read-more {
  color: var(--contrast-color);
}

.cards-2 .card-item.active .read-more:hover,
.cards-2 .card-item:hover .read-more:hover {
  color: var(--contrast-color);
}

.cards-2 .card-item:hover {
  transform: translateY(-5px);
}

.cards-2 .card-item .icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.cards-2 .card-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cards-2 .card-item .img-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}

.cards-2 .card-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-2 .card-item .read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.cards-2 .card-item .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cards-2 .card-item .read-more i {
  margin-left: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Hero 6 Section
--------------------------------------------------------------*/
.hero-6 {
  --background-color: #215d8e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #2986cc;
  --surface-color: rgba(255, 255, 255, 0);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-6 .hero-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 992px) {
  .hero-6 .hero-wrapper {
    flex-direction: row;
  }
}

.hero-6 .hero-content {
  text-align: center;
  padding: 2rem 0;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .hero-6 .hero-content {
    text-align: left;
    padding-right: 3rem;
    margin: 0;
  }
}

.hero-6 .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-6 .hero-content h1 {
    font-size: 3.5rem;
  }
}

.hero-6 .hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

@media (min-width: 992px) {
  .hero-6 .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-6 .hero-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-6 .hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-6 .hero-buttons .btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--accent-color);
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-6 .hero-buttons .btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.hero-6 .hero-image-container {
  position: relative;
  margin-top: 2rem;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-6 .hero-image-container {
    margin-top: 0;
    flex: 1;
  }
}

.hero-6 .hero-image-container .device-image {
  position: relative;
  z-index: 2;
  width: 280px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-6 .hero-image-container .device-image {
    width: 350px;
  }
}

.hero-6 .hero-image-container .hero-circle-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--heading-color), transparent 80%));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.2;
}

@media (min-width: 768px) {
  .hero-6 .hero-image-container .hero-circle-bg {
    width: 600px;
    height: 600px;
  }
}

/*--------------------------------------------------------------
# Features 7 Section
--------------------------------------------------------------*/
.features-7 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-7 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-7 .feature-item .feature-icon.icon-red {
  background-color: color-mix(in srgb, #df4141, transparent 92%);
}

.features-7 .feature-item .feature-icon.icon-red i {
  color: #df4141;
}

.features-7 .feature-item .feature-icon.icon-green {
  background-color: color-mix(in srgb, #2ecc71, transparent 92%);
}

.features-7 .feature-item .feature-icon.icon-green i {
  color: #2ecc71;
}

.features-7 .feature-item .feature-icon.icon-blue {
  background-color: color-mix(in srgb, #3498db, transparent 92%);
}

.features-7 .feature-item .feature-icon.icon-blue i {
  color: #3498db;
}

.features-7 .feature-item .feature-icon.icon-orange {
  background-color: color-mix(in srgb, #f1840f, transparent 92%);
}

.features-7 .feature-item .feature-icon.icon-orange i {
  color: #f1840f;
}

.features-7 .feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-7 .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-7 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-7 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/*--------------------------------------------------------------
# Features 9 Section
--------------------------------------------------------------*/
.features-9 .features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.features-9 .feature-card {
  display: flex;
  gap: 2rem;
  position: relative;
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
}

.features-9 .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-9 .feature-card:hover .icon-wrapper img {
  transform: scale(1.1);
}

.features-9 .feature-card:hover .feature-number {
  color: var(--accent-color);
}

.features-9 .feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

.features-9 .feature-card:nth-child(even) .content {
  text-align: right;
}

.features-9 .feature-card:nth-child(even) .feature-number {
  left: auto;
  right: 0;
}

.features-9 .icon-wrapper {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-9 .icon-wrapper img {
  max-width: 120px;
  transition: transform 0.4s ease-out;
}

.features-9 .content {
  flex: 1;
  position: relative;
}

.features-9 .content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}

.features-9 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.features-9 .feature-number {
  font-size: 5rem;
  font-weight: 800;
  position: absolute;
  top: -2.5rem;
  left: 0;
  opacity: 0.08;
  color: var(--heading-color);
  transition: color 0.3s ease;
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 1;
}

@media (max-width: 991px) {
  .features-9 .feature-card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .features-9 .feature-card .icon-wrapper {
    flex: 0 0 100px;
  }

  .features-9 .feature-card .icon-wrapper img {
    max-width: 100px;
  }

  .features-9 .feature-card .feature-number {
    font-size: 4rem;
    top: -2rem;
  }

  .features-9 .feature-card .content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {

  .features-9 .feature-card,
  .features-9 .feature-card:nth-child(even) {
    flex-direction: column;
    padding: 1.75rem;
  }

  .features-9 .feature-card .content,
  .features-9 .feature-card:nth-child(even) .content {
    text-align: center;
  }

  .features-9 .feature-card .icon-wrapper,
  .features-9 .feature-card:nth-child(even) .icon-wrapper {
    margin-bottom: 1rem;
  }

  .features-9 .feature-card .feature-number,
  .features-9 .feature-card:nth-child(even) .feature-number {
    font-size: 3.5rem;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

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

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

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

@media (max-width: 992px) {
  .call-to-action-3 .cta-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.call-to-action-3 .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action-3 .badge i {
  font-size: 16px;
}

.call-to-action-3 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.3;
}

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

.call-to-action-3 .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.call-to-action-3 .features-list .feature-item i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.call-to-action-3 .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action-3 .cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

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

.call-to-action-3 .cta-buttons .btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.call-to-action-3 .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action-3 .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action-3 .cta-buttons .btn.btn-outline {
  background: var(--surface-color);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.call-to-action-3 .trust-indicators small {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.call-to-action-3 .trust-indicators .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.call-to-action-3 .trust-indicators .rating i {
  color: #fbbf24;
  font-size: 14px;
}

.call-to-action-3 .trust-indicators .rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Hero 5 Section
--------------------------------------------------------------*/
.hero-5 {
  position: relative;
  overflow: hidden;
}

.hero-5 .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-5 .hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-5 .btn {
  padding: 0.75rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.hero-5 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-5 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-5 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero-5 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-5 .hero-image {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-5 .hero-image img {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero-5 .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.hero-5 .floating-card i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--accent-color);
}

.hero-5 .floating-card span {
  font-weight: 600;
  color: var(--heading-color);
}

.hero-5 .floating-card.card-1 {
  top: -20px;
  left: 0;
}

.hero-5 .floating-card.card-2 {
  bottom: -20px;
  right: 0;
}

.hero-5 .shape {
  position: absolute;
  opacity: 0.1;
}

.hero-5 .shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.hero-5 .shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--heading-color);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.hero-5 .shape-3 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 20%;
  right: 5%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
  .hero-5 .hero-title {
    font-size: 2.5rem;
  }

  .hero-5 .hero-image {
    max-width: 100%;
  }

  .hero-5 .floating-card {
    padding: 10px 15px;
  }

  .hero-5 .floating-card i {
    font-size: 1.2rem;
  }

  .hero-5 .floating-card span {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Features 8 Section
--------------------------------------------------------------*/
.features-8 .features-intro {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .features-8 .features-intro {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

.features-8 .features-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .features-8 .features-intro h2 {
    font-size: 32px;
  }
}

.features-8 .features-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

.features-8 .features-intro .highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 576px) {
  .features-8 .features-intro .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.features-8 .features-intro .highlights-grid .highlight-item {
  text-align: center;
}

.features-8 .features-intro .highlights-grid .highlight-item .highlight-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.features-8 .features-intro .highlights-grid .highlight-item .highlight-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.features-8 .featured-image-container {
  position: relative;
}

.features-8 .featured-image-container .floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.features-8 .featured-image-container .floating-badge i {
  font-size: 18px;
}

.features-8 .features-grid {
  margin: 80px 0;
}

.features-8 .features-grid .feature-box {
  background-color: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-8 .features-grid .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-8 .features-grid .feature-box .feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features-8 .features-grid .feature-box .feature-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  opacity: 0.2;
  transform: scale(1.3);
  z-index: -1;
}

.features-8 .features-grid .feature-box .feature-icon-wrapper i {
  font-size: 32px;
  color: var(--contrast-color);
}

.features-8 .features-grid .feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-8 .features-grid .feature-box p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.features-8 .features-grid .feature-box .progress-indicator {
  width: 100%;
  height: 4px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.features-8 .features-grid .feature-box .progress-indicator .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #28a745 30%));
  border-radius: 2px;
  transition: width 1s ease;
}

.features-8 .features-grid .feature-box .progress-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
}

.features-8 .advanced-features-section {
  margin-top: 80px;
}

.features-8 .advanced-features-section h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .features-8 .advanced-features-section h3 {
    font-size: 28px;
  }
}

.features-8 .advanced-features-section .advanced-feature-card {
  background-color: var(--surface-color);
  padding: 35px;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.features-8 .advanced-features-section .advanced-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.features-8 .advanced-features-section .advanced-feature-card:hover .feature-icon-bg {
  transform: scale(1.1) rotate(10deg);
  opacity: 0.15;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-header .feature-number {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.enterprise {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.premium {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.standard {
  background-color: rgba(54, 144, 231, 0.1);
  color: var(--accent-color);
}

.features-8 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.coming-soon {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-content {
  position: relative;
  z-index: 2;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-content h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-content .feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 8px;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li i {
  color: #28a745;
  font-size: 16px;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li:last-child {
  margin-bottom: 0;
}

.features-8 .advanced-features-section .advanced-feature-card .feature-icon-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  color: var(--accent-color);
  opacity: 0.05;
  transition: all 0.3s ease;
  z-index: 1;
}

@media (max-width: 991px) {
  .features-8 .features-intro .highlights-grid {
    margin-top: 30px;
  }

  .features-8 .features-grid {
    margin: 60px 0;
  }

  .features-8 .advanced-features-section {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  position: relative;
  padding: 80px 0;
  background-color: var(--accent-color);
  overflow: hidden;
}

.call-to-action-2 h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--surface-color);
  position: relative;
  z-index: 1;
}

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

.call-to-action-2 .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--surface-color), transparent 15%);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.call-to-action-2 .cta-buttons {
  position: relative;
  z-index: 1;
}

.call-to-action-2 .cta-buttons .btn {
  padding: 12px 32px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.call-to-action-2 .cta-buttons .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.call-to-action-2 .cta-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

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

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

.call-to-action-2 .cta-buttons .btn-outline {
  border: 2px solid var(--surface-color);
  color: var(--surface-color);
  background: transparent;
}

.call-to-action-2 .cta-buttons .btn-outline:hover {
  color: var(--surface-color);
  transform: translateY(-2px);
}

.call-to-action-2 .stats {
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.call-to-action-2 .stats .stat-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.call-to-action-2 .stats .stat-item:hover {
  transform: translateY(-5px);
}

.call-to-action-2 .stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--surface-color);
  margin-bottom: 0.5rem;
}

.call-to-action-2 .stats .stat-item p {
  color: color-mix(in srgb, var(--surface-color), transparent 15%);
  font-size: 1rem;
  margin: 0;
}

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

  .call-to-action-2 .stats .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-action-2 .stats .stat-item h3 {
    font-size: 2rem;
  }
}