  /* Fonts */
  :root {
    --default-font: "Tenor Sans", serif;
    --heading-font: "Tenor Sans", serif;
    --nav-font: "Tenor Sans", serif;
  }

  /* Global Colors - Purple Palette */
  :root {
    --background-color: #1a0b2e;
    --default-color: #d4c4e8;
    --heading-color: #8b5cf6;
    --accent-color: #a855f7;
    --surface-color: #2d1b69;
    --contrast-color: #ffffff;
    --nav-color: #7c3aed;
    --nav-hover-color: #a855f7;
    --nav-mobile-background-color: #2d1b69;
    --nav-dropdown-background-color: #2d1b69;
    --nav-dropdown-color: #d4c4e8;
    --nav-dropdown-hover-color: #a855f7;
    --success-color: #a855f7;
    --warning-color: #7c3aed;
    --danger-color: #581c87;
    --info-color: #a855f7;
    --antique-border-color: #a855f7;
    --antique-text-color: #8b5cf6;
    --antique-gold: #c084fc;
    --antique-brown: #581c87;
    --antique-beige: #e9d5ff;
  }


  /* Color Presets - Purple Theme */

  .light-background {
    --background-color: #e9d5ff;
    --default-color: #2d1b69;
    --heading-color: #8b5cf6;
    --surface-color: #d4c4e8;
    --contrast-color: #1a0b2e;
  }

  .dark-background {
    --background-color: #1a0b2e;
    --default-color: #d4c4e8;
    --heading-color: #a855f7;
    --surface-color: #2d1b69;
    --contrast-color: #ffffff;
  }


/* Smooth scroll disabled */
:root {
  scroll-behavior: auto;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--antique-text-color);
  font-family: var(--heading-font);
  border-bottom: 2px solid var(--antique-gold);
  padding-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: rgba(168, 85, 247, 0.1);
  color: var(--antique-gold);
  border: 2px solid rgba(168, 85, 247, 0.5);
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .sent-message {
  display: none;
  color: var(--background-color);
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border: 2px solid var(--antique-gold);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

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


/*--------------------------------------------------------------
# Modern Header
--------------------------------------------------------------*/
.header-modern {
  position: relative;
  z-index: 997;
  background: var(--background-color);
}

.header-top {
  background: rgba(45, 27, 105, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(168, 85, 247, 0.6);
  padding: 0.5rem 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.85rem;
  text-decoration: none;
  
}

.header-link:hover {
  color: var(--accent-color);
}

.header-link i {
  font-size: 0.9rem;
}

.header-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 8px;
  color: rgba(212, 196, 232, 0.7);
  text-decoration: none;
  
  border: 1px solid rgba(168, 85, 247, 0.5);
}

.social-icon:hover {
  background: var(--accent-color);
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  
  border-color: var(--antique-border-color);
}

.header-main {
  background: rgba(1, 26, 69, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(168, 85, 247, 0.6);
  padding: 1rem 0;
  
}

.scrolled .header-main {

}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  
}

.logo-modern:hover {
  
}

.logo-modern .logo-img {
  width: 180px;
  height: 54px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
  border-bottom: 2px solid var(--antique-border-color);
  padding-bottom: 0.25rem;
}

.navmenu-modern {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.nav-menu-list li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: rgba(200, 230, 213, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  background: rgba(218, 165, 32, 0.2);
  border-color: var(--antique-border-color);
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  
}

.btn-link:hover {
  color: var(--accent-color);
  background: rgba(168, 85, 247, 0.1);
}

.btn-primary-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: 2px solid var(--antique-border-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  

}

.btn-primary-modern:hover {
  

}

.btn-primary-modern i {
  
}

.btn-primary-modern:hover i {
  
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--default-color);
  cursor: pointer;
  
  padding: 0.5rem;
  line-height: 1;
  z-index: 1000;
}

.mobile-nav-toggle:hover {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

@media (max-width: 1199px) {
  body {
    overflow-x: hidden;
  }



  .navmenu-modern {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--surface-color);
    padding: 2rem;
    padding-top: 4rem;
    
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    
    z-index: 1001;

    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    flex: none;
    display: flex;
  }

  .navmenu-modern.active {
    
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(218, 165, 32, 0.2);
    border: 2px solid rgba(168, 85, 247, 0.6);
    color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1002;
    padding: 0;
    line-height: 1;
  }

  .mobile-nav-close:hover {
    background: rgba(218, 165, 32, 0.4);
    border-color: var(--antique-text-color);
    color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  }

  .mobile-nav-close i {
    display: block;
  }

  /* Styles for navmenu class (used in services and thanks pages) */
  .navmenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--surface-color);
    padding: 2rem;
    padding-top: 4rem;
    
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    
    z-index: 1001;

    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    flex: none;
    display: flex;
  }

  .navmenu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .navmenu.active,
  .navmenu.active * {
    pointer-events: auto !important;
  }
  
  .navmenu.active .nav-link {
    pointer-events: auto !important;
    cursor: pointer;
  }

  .navmenu:not(.active) {
    display: none !important;
  }

  .navmenu .mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(218, 165, 32, 0.2);
    border: 2px solid rgba(168, 85, 247, 0.6);
    color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1002;
    padding: 0;
    line-height: 1;
  }

  .navmenu .mobile-nav-close:hover {
    background: rgba(218, 165, 32, 0.4);
    border-color: var(--antique-text-color);
    color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  }

  .navmenu-modern.active,
  .navmenu-modern.active * {
    pointer-events: auto !important;
  }
  
  /* Ensure nav links are always clickable when menu is active */
  .navmenu-modern.active .nav-link {
    pointer-events: auto !important;
    cursor: pointer;
  }

  .navmenu-modern:not(.active) {
    display: none !important;
  }

  .header-main-content {
    position: relative;
  }

  .header-main-content .navmenu-modern {
    position: fixed;
    top: 0;
    right: 0;
  }

  .nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    border-radius: 0;
    position: relative;
    z-index: 1;
  }

  .mobile-nav-toggle {
    display: block;
    order: -1;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .header-top-content {
    justify-content: center;
  }

  .header-contact-info {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .logo-modern .logo-img {
    width: 140px;
    height: 42px;
  }

  .btn-link {
    display: none;
  }

  .btn-primary-modern span {
    display: none;
  }

  .btn-primary-modern {
    padding: 0.75rem;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  /* FAQ Hero Responsive */
  .faq-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .faq-hero-title {
    font-size: 2.5rem;
  }

  .faq-main-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-faq-primary,
  .btn-faq-secondary,
  .btn-faq-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .artifacts-showcase {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .artifact-item {
    padding: 1rem;
  }

  .floating-questions {
    grid-template-columns: 1fr;
  }

  .heritage-timeline {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-milestone {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Global Header (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  
  z-index: 997;
}

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


/* Logo */
.logo-img {
  width: 240px;
  height: 70px;
  
}

.logo:hover .logo-img {

}

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    
  }

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

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

  .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;
    
    border-radius: 4px;
    z-index: 99;

  }

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

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

  .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);
    overflow-y: auto;
    
    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;
    
  }

  .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%;
    
    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(--background-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(--background-color);
    
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

    
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(1, 26, 69, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(1, 26, 69, 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(45, 27, 105, 0.8);
    
  }

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

/*--------------------------------------------------------------
# Modern Footer
--------------------------------------------------------------*/
.footer-modern {
  background: linear-gradient(180deg, #0d4a2d 0%, #0a3d25 100%);
  color: var(--default-color);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.footer-top {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-brand-modern {
  margin-bottom: 2rem;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  
}

.footer-logo-link:hover {
  
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
  border-bottom: 2px solid var(--antique-border-color);
  padding-bottom: 0.25rem;
}

.footer-description {
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-social-modern {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 26, 69, 0.6);
  border: 2px solid rgba(218, 165, 32, 0.7);
  border-radius: 12px;
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  
  font-size: 1.1rem;
}

.social-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  
  border-color: var(--accent-color);

}

.footer-column {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

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

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  
  display: inline-block;
}

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

.footersletter-text {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.newsletter-form-modern {
  margin-bottom: 2rem;
}

.newsletter-input-group {
  display: flex;
  background: rgba(61, 40, 23, 0.6);
  border: 2px solid rgba(218, 165, 32, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
  
}

.newsletter-input-group:focus-within {
  border-color: var(--accent-color);

}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  color: var(--default-color);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(245, 245, 245, 0.5);
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border: none;
  padding: 1rem 1.5rem;
  color: var(--background-color);
  cursor: pointer;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  
}

.footer-contact-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
}

.contact-row i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.contact-row a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  
}

.contact-row a:hover {
  color: var(--accent-color);
}

.footer-bottom-modern {
  background: rgba(45, 27, 105, 0.8);
  border-top: 2px solid rgba(168, 85, 247, 0.6);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-modern {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
}

.copyright-modern strong {
  color: var(--accent-color);
}

.footer-legal-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-legal-modern a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  
}

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

.footer-legal-modern .separator {
  color: rgba(245, 245, 245, 0.4);
}

@media (max-width: 768px) {
  .footer-top {
    padding: 3rem 0 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-modern {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Global Footer (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(180deg, #0d4a2d 0%, #0d4a2d 100%);
  color: var(--background-color);
  font-size: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(168, 85, 247, 0.6);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(177, 156, 217, 0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Newsletter Section */
.footersletter {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  backdrop-filter: blur(10px);
}

.newsletter-icon i {
  font-size: 36px;
  color: white;
}

.newsletter-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  position: relative;
}

.input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  
}

.input-group:focus-within {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);

}

.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 25px;
  color: white;
  font-size: 16px;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.btnsletter {
  background: var(--surface-color);
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.btnsletter:hover {
  background: var(--dark-background);
  color: white;
  

}

.form-messages {
  margin-top: 20px;
}

.form-messages > div {
  display: none;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-weight: 500;
}

.form-messages .loading {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.form-messages .error-message {
  background: rgba(218, 165, 32, 0.2);
  color: var(--antique-gold);
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 8px;
  padding: 10px;
}

.form-messages .sent-message {
  background: rgba(218, 165, 32, 0.2);
  color: var(--antique-gold);
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 8px;
  padding: 10px;
}

/* Main Footer Content */
.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

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

.brand-logo {
  width: 200px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
  filter: brightness(0) invert(1);
}

.brand-logo:hover .footer-logo {
  
  opacity: 0.9;
}

.brand-logo i {
  font-size: 28px;
  color: white;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.brand-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Footer Social */
.footer-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: rgba(218, 165, 32, 0.2);
  color: var(--accent-color);


  border-color: rgba(218, 165, 32, 0.8);
}

.social-link i {
  font-size: 1.1rem;
}

/* Footer Newsletter Compact */
.footersletter-compact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footersletter-compact h5 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footersletter-compact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.newsletter-form-compact {
  margin-top: 1rem;
}

.input-group-compact {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  
  gap: 0.5rem;
}

.input-group-compact:focus-within {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);

}

.input-group-compact input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.875rem 1rem;
  color: var(--background-color);
  font-size: 0.9rem;
  outline: none;
}

.input-group-compact input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btnsletter-compact {
  background: var(--accent-color);
  border: none;
  padding: 0.875rem 1.5rem;
  color: var(--background-color);
  cursor: pointer;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 8px;
}

.btnsletter-compact:hover {
  background: var(--heading-color);
  

}

/* Footer Legal */
.footer-legal {
  text-align: right;
}

.footer-legal .legal-info {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal .legal-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.footer-legal .legal-info strong {
  color: rgba(255, 255, 255, 0.9);
}


.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  
  border-color: var(--accent-color);

}

.social-link i {
  font-size: 20px;
}

/* Footer Links */
.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid transparent;
}

.footer-links ul li a:hover {
  color: var(--background-color);
  background: rgba(77, 184, 125, 0.15);
  border-left-color: var(--accent-color);
  padding-left: 1rem;
}

/* Footer Contact */
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  
}

.contact-item:hover {
  background: rgba(77, 184, 125, 0.15);
  border-color: rgba(77, 184, 125, 0.3);
  

}

.contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  text-align: center;
}

.contact-item span,
.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.contact-item a {
  text-decoration: none;
  
}

.contact-item:hover a,
.contact-item:hover span {
  color: var(--background-color);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 14px;
}

.copyright p strong {
  color: var(--background-color);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  
  border: 1px solid transparent;
}

.footer-bottom-links a:hover {
  color: var(--background-color);
  background: rgba(77, 184, 125, 0.15);
  border-color: rgba(77, 184, 125, 0.3);
  
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-legal {
    text-align: left;
    margin-top: 2rem;
  }
  
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .footer-bottom .row {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom .col-md-6 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-legal {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footersletter {
    padding: 60px 0;
  }
  
  .newsletter-content h3 {
    font-size: 1.8rem;
  }
  
  .newsletter-content p {
    font-size: 1rem;
  }
  
  .input-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .btnsletter {
    width: 100%;
    padding: 15px;
  }
  
  .footer-main {
    padding: 50px 0 25px;
  }
  
  .social-links {
    justify-content: center;
  }
}

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

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


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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--background-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: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(177, 156, 217, 0.05) 100%);
  padding: 60px 0;
  position: relative;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section - Modern Design
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  overflow: hidden;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* Animated Shapes */
.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  top: 10%;
  left: 10%;
  
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--heading-color);
  top: 60%;
  right: 15%;
  
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  bottom: 20%;
  left: 20%;
  
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: var(--heading-color);
  top: 30%;
  right: 30%;
  
}

.shape-5 {
  width: 180px;
  height: 180px;
  background: var(--accent-color);
  bottom: 10%;
  right: 10%;
  
}



.hero-content {
  position: relative;
  z-index: 3;
  color: var(--background-color);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.hero-badge i {
  color: var(--antique-gold);
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--background-color);
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  
}


.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-number {
  display: none !important;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.hero-guarantee i {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Canvas Container */
.hero-canvas-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(1, 26, 69, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(218, 165, 32, 0.7);

}

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating Cards */
.floating-cards {
  position: relative;
  width: 100%;
  height: 200px;
}

.floating-card {
  position: absolute;
  background: rgba(45, 27, 105, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;

  z-index: 10;
  border: 1px solid rgba(45, 134, 89, 0.3);
  
  cursor: pointer;
}

.floating-card:hover {


  border-color: var(--accent-color);
}

.floating-card .card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 10px;
  
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--background-color);
}

.floating-card span {
  color: var(--default-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.floating-card.card-1 {
  top: 0;
  left: 0;
  
}

.floating-card.card-2 {
  top: 20%;
  right: 0;
  
}

.floating-card.card-3 {
  bottom: 20%;
  left: 10%;
}

.floating-card.card-4 {
  bottom: 0;
  right: 10%;
}






/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(1, 26, 69, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 2px solid rgba(168, 85, 247, 0.5);
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(1, 26, 69, 0.6);
  border-color: rgba(218, 165, 32, 0.8);
  transform: translateY(-5px);
}

.stat-item .stat-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.3), rgba(61, 166, 107, 0.2));
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 16px;
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.5), rgba(61, 166, 107, 0.4));
  border-color: var(--antique-text-color);
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.stat-number {
  display: none;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--background-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-item .stat-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  
  z-index: 3;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  
}

.scroll-down:hover {
  color: var(--accent-color);
}

.scroll-down span {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.scroll-down i {
  font-size: 1.5rem;
  
}



@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    margin: 0 !important;
  }

  .hero-stats {
    gap: 1rem;
    flex-direction: column;
  }

  .stat-item {
    width: 100%;
    min-width: auto;
  }

  .stat-item .stat-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .stat-item .stat-description {
    font-size: 0.8rem;
  }

  .hero-canvas-container {
    height: 300px;
    margin-bottom: 2rem;
  }

  .floating-cards {
    display: none;
  }

  .hero-scroll-indicator {
    bottom: 20px;
  }
}

/* Modern Hero Enhancements */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(168, 85, 247, 0.15);
  border: 2px solid rgba(168, 85, 247, 0.4);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

.hero-badge .badge-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.hero-badge .badge-text {
  color: var(--background-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--background-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title .title-line-1 {
  display: block;
  font-size: 1.2em;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.hero-title .title-line-2 {
  display: block;
  font-size: 1.4em;
  margin-bottom: 0.5rem;
}

.hero-title .title-line-3,
.hero-title .title-line-4 {
  display: block;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, var(--antique-gold), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: var(--background-color);
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.5);
  color: var(--background-color);
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-metric {
  text-align: center;
  min-width: 120px;
}

.trust-metric .metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--antique-gold);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.trust-metric .metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.social-avatars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-avatars .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  object-fit: cover;
}

.social-avatars .avatar-count {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 0.5rem;
}

.social-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.social-rating .stars {
  display: flex;
  gap: 0.25rem;
}

.social-rating .stars i {
  color: var(--antique-gold);
  font-size: 1rem;
}

.social-rating .rating-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual Container */
.hero-visual-container {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1000px;
}

.hero-dashboard-main {
  position: relative;
  z-index: 2;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero-dashboard-main:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.dashboard-window {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.window-header {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.window-controls .control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.window-controls .control.red { background: #ff5f57; }
.window-controls .control.yellow { background: #ffbd2e; }
.window-controls .control.green { background: #28ca42; }

.window-title {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
}

.collection-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.collection-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.collection-item.featured {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.collection-item .item-image {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  font-size: 1.5rem;
}

.collection-item.featured .item-image {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.collection-item .item-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.collection-item.featured .item-info h4 {
  color: white;
}

.collection-item .item-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-weight: 500;
}

.collection-item .item-status.verified {
  background: rgba(34, 197, 94, 0.2);
  color: #16a34a;
}

.collection-item .item-status.pending {
  background: rgba(251, 191, 36, 0.2);
  color: #d97706;
}

/* Floating Elements */
.hero-floating-elements {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  animation: floatCards 4s ease-in-out infinite;
}

.floating-card i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.floating-card span {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.floating-card.card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 50%;
  right: -5%;
  animation-delay: 1s;
}

.floating-card.card-3 {
  top: 80%;
  right: -15%;
  animation-delay: 2s;
}

/* Background Shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.05));
  animation: floatShapes 8s ease-in-out infinite;
}

.hero-bg-shapes .shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-bg-shapes .shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.hero-bg-shapes .shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

.hero-scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1px;
  animation: scrollWheel 2s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatCards {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(2deg); }
  66% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes floatShapes {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollWheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-metric {
    min-width: auto;
  }

  .hero-visual-container {
    height: 400px;
    margin-top: 2rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Success Stories Section - Modern Design
--------------------------------------------------------------*/
.success-stories {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(168, 85, 247, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Modern Section Header */
.success-stories-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.badge-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title-modern .highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle-accent {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.2em;
}

.section-description-modern {
  font-size: 1.2rem;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Success Stats Row */
.success-stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-item-modern {
  text-align: center;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 600;
}

/* Success Stories Grid */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.success-story-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.success-story-item:nth-child(1) { animation-delay: 0.1s; }
.success-story-item:nth-child(2) { animation-delay: 0.2s; }
.success-story-item:nth-child(3) { animation-delay: 0.3s; }
.success-story-item:nth-child(4) { animation-delay: 0.4s; }

/* Modern Success Card */
.success-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.success-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(168, 85, 247, 0.2);
}

.success-card-modern:hover::before {
  opacity: 1;
}

/* Card Header */
.card-header-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.success-icon-modern {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.success-period {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Card Content */
.card-content-modern {
  padding: 1.5rem 2rem;
}

.card-content-modern h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.success-description-modern {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Success Metrics */
.success-metrics-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-modern {
  text-align: center;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.metric-modern .metric-label {
  font-size: 0.8rem;
  color: var(--default-color);
  font-weight: 600;
}

/* Card Footer */
.card-footer-modern {
  padding: 1rem 2rem 2rem;
}

.success-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.success-badge-modern.verified {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.success-badge-modern.discovery {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.success-badge-modern.certified {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
}

.success-badge-modern.global {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

/* Success CTA */
.success-cta-wrapper {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.success-cta-card {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  position: relative;
  overflow: hidden;
}

.success-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.cta-content {
  color: white;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-content p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn-cta-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-cta-modern:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.cta-visual {
  font-size: 4rem;
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title-modern {
    font-size: 2rem;
  }

  .success-stats-row {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .success-card-modern {
    margin: 0 1rem;
  }

  .success-cta-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Features Section - Revolutionary Design
--------------------------------------------------------------*/
.features {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.features-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, var(--accent-color) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--antique-gold) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 25px 25px;
}

/* Modern Features Header */
.features-header-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.section-intro {
  max-width: 500px;
}

.features-badge-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
  animation: pulse 2s infinite;
}

.badge-glow {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  opacity: 0.3;
  filter: blur(8px);
}

.features-title-modern {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-title-modern .highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.2em;
}

.features-description-modern {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

/* Interactive Feature Preview */
.feature-preview-interactive {
  position: relative;
}

.preview-device {
  max-width: 400px;
  margin: 0 auto;
}

.device-screen {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(168, 85, 247, 0.3);
}

.preview-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
}

.preview-tabs .tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.preview-tabs .tab.active {
  background: var(--accent-color);
  color: white;
}

.preview-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
}

.feature-showcase {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.showcase-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.showcase-text h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.showcase-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

/* Features Showcase */
.features-showcase {
  position: relative;
  z-index: 2;
}

/* Primary Features Row */
.features-primary-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 16rem;
}

.feature-core-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-core-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-core-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(168, 85, 247, 0.2);
}

.feature-core-card:hover::before {
  opacity: 1;
}

.core-card-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.core-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.core-number {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 2px solid rgba(168, 85, 247, 0.2);
}

.core-card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.core-card-content p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.core-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.core-features-list span {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Features Hub */
.features-hub {
  position: relative;
  margin-bottom: 30rem;
  padding: 4rem 0;
}

.hub-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hub-visual {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.hub-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.4);
  position: relative;
  z-index: 2;
}

.hub-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
  animation: rotate 10s linear infinite;
}

.hub-center h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.hub-center p {
  font-size: 1.2rem;
  color: var(--default-color);
  line-height: 1.7;
}

/* Satellite Features */
.satellite-features {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.satellite-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  width: 200px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.satellite-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.2);
}

.satellite-card[data-angle="0"] { transform: rotate(0deg) translate(250px) rotate(0deg); }
.satellite-card[data-angle="60"] { transform: rotate(60deg) translate(250px) rotate(-60deg); }
.satellite-card[data-angle="120"] { transform: rotate(120deg) translate(250px) rotate(-120deg); }
.satellite-card[data-angle="180"] { transform: rotate(180deg) translate(250px) rotate(-180deg); }
.satellite-card[data-angle="240"] { transform: rotate(240deg) translate(250px) rotate(-240deg); }
.satellite-card[data-angle="300"] { transform: rotate(300deg) translate(250px) rotate(-300deg); }

.satellite-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.satellite-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.satellite-card p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin: 0;
  line-height: 1.5;
}

/* Advanced Features Grid */
.advanced-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.advanced-feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(168, 85, 247, 0.05));
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advanced-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent);
  border-radius: 50%;
}

.advanced-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.15);
}

.advanced-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.advanced-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.feature-level {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.advanced-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.advanced-content p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.advanced-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advanced-benefits li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  color: var(--default-color);
  font-weight: 500;
}

.advanced-benefits li:last-child {
  border-bottom: none;
}

.advanced-benefits li:before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.75rem;
}

/* Technology Stack */
.tech-stack-showcase {
  text-align: center;
  margin-bottom: 6rem;
}

.tech-stack-showcase h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(168, 85, 247, 0.15);
}

.tech-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.tech-icon.ai { background: linear-gradient(135deg, #667eea, #764ba2); }
.tech-icon.blockchain { background: linear-gradient(135deg, #f093fb, #f5576c); }
.tech-icon.cloud { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.tech-icon.ar { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.tech-icon.security { background: linear-gradient(135deg, #fa709a, #fee140); }
.tech-icon.analytics { background: linear-gradient(135deg, #a8edea, #fed6e3); }

.tech-item span {
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
}

/* Features CTA */
.features-cta {
  position: relative;
  margin-top: 4rem;
}

.cta-background {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content-wrapper h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-content-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-cta-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-header-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .features-title-modern {
    font-size: 2.5rem;
  }

  .features-description-modern {
    font-size: 1.1rem;
  }

  .features-primary-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .advanced-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tech-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .satellite-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: static;
    transform: none;
    margin-top: 2rem;
  }

  .satellite-card {
    position: static;
    transform: none !important;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-content-wrapper h3 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# About Section - Modern Design
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
}

/* About Hero Section */
.about-hero-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  position: relative;
  z-index: 2;
}

.section-intro-badge {
  margin-bottom: 2rem;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--background-color);
}

.about-hero-title .highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.2em;
  display: block;
}

.about-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* About Stats */
.about-stats-grid {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-item-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 140px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--antique-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item-modern .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* About Hero CTA */
.about-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-about-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: var(--background-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.btn-about-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
}

.btn-about-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--background-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-about-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual Section */
.hero-visual-section {
  position: relative;
}

.about-visual-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

/* Timeline Preview */
.timeline-preview {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.timeline-header {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.timeline-header span {
  font-weight: 600;
  font-size: 1.1rem;
}

.timeline-content {
  padding: 1.5rem;
}

.timeline-milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.timeline-milestone:last-child {
  border-bottom: none;
}

.timeline-milestone:hover {
  background: rgba(168, 85, 247, 0.05);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.milestone-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.3);
  position: relative;
}

.timeline-milestone.active .milestone-dot {
  background: var(--accent-color);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.milestone-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.milestone-content p {
  color: var(--default-color);
  font-size: 0.9rem;
  margin: 0;
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.15);
}

.trust-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.trust-item span {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
}

/* Floating Elements */
.about-floating-elements {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.1);
  animation: floatStats 6s ease-in-out infinite;
}

.floating-stat i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.floating-stat span {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.floating-stat.stat-1 {
  top: 20%;
  right: -20%;
  animation-delay: 0s;
}

.floating-stat.stat-2 {
  top: 60%;
  right: -15%;
  animation-delay: 2s;
}

.floating-stat.stat-3 {
  bottom: 20%;
  right: -25%;
  animation-delay: 4s;
}

/* Team Section */
.team-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.team-section-title .highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-section-description {
  font-size: 1.2rem;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Expert Categories */
.expert-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.category-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

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

.category-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-count {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Team Values */
.team-values-section {
  margin-bottom: 4rem;
}

.team-values-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.value-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--default-color);
  line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
  margin-top: 2rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.contact-label i {
  color: var(--accent-color);
}

.contact-value {
  color: var(--default-color);
  line-height: 1.6;
}

.contact-value a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

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

/* Animations */
@keyframes floatStats {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(-15px) rotate(0.5deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .hero-visual-section {
    order: -1;
  }

  .about-stats-grid {
    justify-content: center;
  }

  .expert-categories {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .floating-stat {
    display: none;
  }

  .timeline-preview {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Contact Section - Modern Design
--------------------------------------------------------------*/
.contact-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.contact-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, var(--accent-color) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--antique-gold) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 25px 25px;
}

/* Contact Hero Content */
.contact-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-intro {
  max-width: 500px;
}

.contact-badge-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(10px);
}

.badge-glow {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  opacity: 0.3;
  filter: blur(8px);
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--background-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.2em;
  display: block;
}

.contact-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Quick Actions */
.hero-quick-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quick-action-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-action-card i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-contact-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: var(--background-color);
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.btn-contact-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
}

.btn-contact-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-contact-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Hero Visual */
.contact-hero-visual {
  position: relative;
}

.communication-illustration {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.1);
}

/* Chat Bubbles */
.chat-bubble {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.chat-bubble:nth-child(1) { animation-delay: 0.1s; }
.chat-bubble:nth-child(2) { animation-delay: 0.3s; }
.chat-bubble:nth-child(3) { animation-delay: 0.5s; }

.chat-bubble.bubble-1 i {
  order: 1;
  color: var(--accent-color);
}

.chat-bubble.bubble-2 {
  justify-content: flex-end;
}

.chat-bubble.bubble-2 i {
  order: 2;
  color: var(--antique-gold);
}

.chat-bubble.bubble-3 i {
  order: 1;
  color: var(--accent-color);
}

.chat-bubble i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bubble-content {
  background: white;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.1);
  position: relative;
}

.bubble-content::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 8px solid transparent;
}

.chat-bubble.bubble-1 .bubble-content::before {
  left: -8px;
  top: 20px;
  border-right-color: white;
  border-left: 0;
}

.chat-bubble.bubble-2 .bubble-content::before {
  right: -8px;
  top: 20px;
  border-left-color: white;
  border-right: 0;
}

.chat-bubble.bubble-3 .bubble-content::before {
  left: -8px;
  top: 20px;
  border-right-color: white;
  border-left: 0;
}

.bubble-content p {
  margin: 0;
  color: var(--heading-color);
  line-height: 1.5;
}

/* Communication Elements */
.communication-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.comm-element {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
  animation: floatElements 4s ease-in-out infinite;
}

.comm-element.elem-1 {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.comm-element.elem-2 {
  top: 35%;
  right: -5%;
  animation-delay: 1s;
}

.comm-element.elem-3 {
  top: 55%;
  right: -15%;
  animation-delay: 2s;
}

.comm-element.elem-4 {
  top: 75%;
  right: -8%;
  animation-delay: 3s;
}

/* Contact Section Modern */
.contact-section-modern {
  padding: 80px 0;
  background: var(--surface-color);
}

/* Contact Options Grid */
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.contact-option-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.15);
}

.contact-option-card:hover::before {
  opacity: 1;
}

.contact-option-card.phone-card {
  border-color: rgba(34, 197, 94, 0.3);
}

.contact-option-card.email-card {
  border-color: rgba(168, 85, 247, 0.3);
}

.contact-option-card.visit-card {
  border-color: rgba(59, 130, 246, 0.3);
}

.contact-option-card.chat-card {
  border-color: rgba(168, 85, 247, 0.3);
}

.option-visual {
  position: relative;
  margin-bottom: 2rem;
}

.option-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
  position: relative;
  z-index: 2;
}

.option-glow {
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent);
  z-index: 1;
}

.option-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.option-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.option-details {
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--default-color);
  font-size: 0.9rem;
}

.detail-item i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.option-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.option-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.chat-btn {
  background: linear-gradient(135deg, var(--antique-gold), var(--accent-color));
  cursor: pointer;
  border: none;
}

.option-address {
  color: var(--default-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.option-address a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.option-address a:hover {
  text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 4rem;
  margin-top: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.form-header p {
  font-size: 1.2rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.modern-contact-form {
  max-width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.form-section {
  background: rgba(168, 85, 247, 0.02);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.section-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.input-wrapper, .select-wrapper {
  position: relative;
}

.input-wrapper i, .select-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 1rem;
  z-index: 2;
}

.input-wrapper input,
.input-wrapper select,
.select-wrapper select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 12px;
  border: 2px solid rgba(168, 85, 247, 0.2);
  background: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.select-wrapper select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid rgba(168, 85, 247, 0.2);
  background: white;
  font-size: 1rem;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
  outline: none;
}

.textarea-wrapper textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.char-count {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.textarea-footer small {
  font-size: 0.8rem;
  color: var(--default-color);
  opacity: 0.7;
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 2px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
  background: white;
}

.radio-option:hover {
  border-color: var(--accent-color);
  background: rgba(168, 85, 247, 0.02);
}

.radio-option input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-color);
}

.radio-option span {
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 500;
}

/* Form Footer */
.form-footer {
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  padding-top: 2rem;
}

.privacy-consent {
  margin-bottom: 2rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-wrapper input:checked ~ .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-wrapper input:checked ~ .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.consent-text {
  font-size: 0.9rem;
  color: var(--default-color);
  line-height: 1.5;
}

.consent-text a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.consent-text a:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107, 114, 128, 0.1);
  border: 2px solid rgba(107, 114, 128, 0.2);
  color: #6b7280;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reset:hover {
  background: rgba(107, 114, 128, 0.2);
  border-color: #6b7280;
  color: #374151;
}

.btn-submit-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.5);
}

.btn-submit-modern:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Form Messages */
.form-messages {
  margin-top: 2rem;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.message.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.message.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.message i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.message.success-message i {
  color: #16a34a;
}

.message.error-message i {
  color: #dc2626;
}

.message-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.message-content p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.5;
}

/* Contact Success Stats */
.contact-success-stats {
  margin-top: 4rem;
}

.stats-container {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  position: relative;
  overflow: hidden;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="statsPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23statsPattern)"/></svg>');
}

.stats-container h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.stat-content {
  text-align: left;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatElements {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(-15px) rotate(0.5deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .contact-hero-title {
    font-size: 2.5rem;
  }

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

  .communication-illustration {
    max-width: 100%;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .floating-stat {
    display: none;
  }
}

/*--------------------------------------------------------------
# FAQ Section - Modern Design
--------------------------------------------------------------*/
/* FAQ Hero Section */
.faq-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
}

.faq-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.faq-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* FAQ Hero Content */
.faq-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-intro-section {
  max-width: 500px;
}

.faq-badge-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.badge-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: pulseGlow 2s ease-in-out infinite;
  border-radius: 50px;
}

.faq-badge-modern > * {
  position: relative;
  z-index: 2;
}

.faq-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--default-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-subtitle {
  color: var(--antique-gold);
  font-weight: 700;
  font-size: 1.2em;
  display: block;
  margin-top: 0.5rem;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.faq-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* FAQ Stats Bar */
.faq-stats-bar {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-metric {
  background: rgba(61, 40, 23, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(168, 85, 247, 0.5);
  min-width: 140px;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--antique-gold);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.stat-metric .stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 600;
}

/* FAQ Main Actions */
.faq-main-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-faq-primary {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.btn-faq-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.btn-faq-secondary {
  background: rgba(168, 85, 247, 0.1);
  color: var(--antique-gold);
  border: 2px solid rgba(168, 85, 247, 0.3);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.btn-faq-secondary:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
}

.btn-faq-outline {
  background: transparent;
  color: var(--default-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faq-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* FAQ Hero Visual */
.faq-hero-visual {
  position: relative;
}

.antiquarium-faq-visual {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

/* Artifacts Showcase */
.artifacts-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.artifact-item {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.artifact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.3);
}

.artifact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.artifact-item span {
  color: var(--default-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Knowledge Hub */
.knowledge-hub {
  position: relative;
  margin-bottom: 2rem;
}

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hub-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

.hub-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

.hub-orbits {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.orbit {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: orbit 8s linear infinite;
}

.orbit.orbit-1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orbit.orbit-2 {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.orbit.orbit-3 {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

/* Floating Question Cards */
.floating-questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.question-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: questionFloat 4s ease-in-out infinite;
}

.question-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.question-card:nth-child(1) { animation-delay: 0s; }
.question-card:nth-child(2) { animation-delay: 1s; }
.question-card:nth-child(3) { animation-delay: 2s; }
.question-card:nth-child(4) { animation-delay: 3s; }

.question-card i {
  color: var(--accent-color);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.question-card span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Heritage Timeline */
.heritage-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.timeline-milestone {
  text-align: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.timeline-milestone.active {
  opacity: 1;
  transform: scale(1.1);
}

.milestone-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--antique-gold);
  display: block;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.milestone-label {
  font-size: 0.8rem;
  color: var(--default-color);
  font-weight: 600;
}

/* Animations */
@keyframes orbit {
  0% { transform: translate(-50%, -50%) rotate(0deg) translateX(80px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(80px) rotate(-360deg); }
}

@keyframes questionFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* FAQ Section Modern */
.faq-section-modern {
  padding: 80px 0;
  background: var(--surface-color);
}

/* FAQ Modern Header */
.faq-modern-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq-main-description {
  font-size: 1.2rem;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* FAQ Search */
.faq-search-container {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-input-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 1rem 2rem;
  border: 2px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.search-input-wrapper i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.faq-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: var(--heading-color);
}

.search-results-count {
  font-size: 0.85rem;
  color: var(--default-color);
  opacity: 0.7;
}

/* Category Filters */
.faq-category-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(168, 85, 247, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.filter-btn i {
  font-size: 1rem;
}

/* FAQ Accordion Container */
.faq-accordion-container {
  display: grid;
  gap: 3rem;
}

/* Category Section */
.faq-category-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.faq-category-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.1);
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(168, 85, 247, 0.1);
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.category-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.category-count {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: auto;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background: rgba(168, 85, 247, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.2);
}

/* Accordion Header */
.faq-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-accordion-header:hover {
  background: rgba(168, 85, 247, 0.05);
}

.question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.question-content i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.question-content span {
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.5;
}

.accordion-toggle {
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

/* Accordion Content */
.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 1000px;
}

.answer-content {
  padding: 0 2rem 2rem;
}

.answer-content p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Answer Highlights */
.answer-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.highlight-item i {
  color: #16a34a;
  font-size: 1.1rem;
}

.highlight-item span {
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 500;
}

/* Process Steps */
.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.process-step span {
  font-size: 0.85rem;
  color: var(--heading-color);
  font-weight: 600;
  text-align: center;
}

/* Timeline Steps */
.timeline-steps {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(168, 85, 247, 0.05);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--default-color);
  margin: 0;
}

/* Verification Methods */
.verification-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.method-card {
  background: rgba(168, 85, 247, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.method-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.method-card p {
  font-size: 0.85rem;
  color: var(--default-color);
  margin: 0;
}

/* Pricing Breakdown */
.pricing-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.pricing-tier {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.pricing-tier:hover,
.pricing-tier.premium {
  border-color: var(--accent-color);
  background: rgba(168, 85, 247, 0.05);
  transform: translateY(-2px);
}

.tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier-features span {
  font-size: 0.8rem;
  color: var(--default-color);
}

/* Support Channels */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.channel-card {
  display: flex;
  gap: 1rem;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.channel-card:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.channel-info {
  flex: 1;
}

.channel-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.channel-info p {
  font-size: 0.85rem;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.channel-info a {
  font-size: 0.9rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.channel-info a:hover {
  text-decoration: underline;
}

.live-chat-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.live-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

/* FAQ CTA Section */
.faq-cta-section {
  margin-top: 4rem;
}

.faq-cta-card {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  position: relative;
  overflow: hidden;
}

.faq-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faqPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23faqPattern)"/></svg>');
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.btn-faq-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faq-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-faq-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faq-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Animations */
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(-15px) rotate(0.5deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(2deg); }
  66% { transform: translateY(-4px) rotate(-2deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .faq-hero-title {
    font-size: 2.5rem;
  }

  .faq-stats-bar {
    flex-direction: column;
    align-items: center;
  }

  .faq-quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-category-filters {
    justify-content: center;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .category-count {
    margin-left: 0;
  }

  .answer-highlights {
    grid-template-columns: 1fr;
  }

  .process-steps {
    justify-content: center;
  }

  .verification-methods {
    grid-template-columns: 1fr;
  }

  .pricing-breakdown {
    grid-template-columns: 1fr;
  }

  .support-channels {
    grid-template-columns: 1fr;
  }

  .timeline-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Privacy Page Styles
--------------------------------------------------------------*/
/* Privacy Hero Section */
.privacy-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
}

.privacy-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.privacy-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* Privacy Hero Content */
.privacy-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-intro-section {
  max-width: 500px;
}

.privacy-badge-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.badge-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: pulseGlow 2s ease-in-out infinite;
  border-radius: 50px;
}

.privacy-badge-modern > * {
  position: relative;
  z-index: 2;
}

.privacy-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--default-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-subtitle {
  color: var(--antique-gold);
  font-weight: 700;
  font-size: 1.2em;
  display: block;
  margin-top: 0.5rem;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.privacy-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Heritage Trust Indicators */
.privacy-trust-indicators {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61, 40, 23, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  border: 2px solid rgba(168, 85, 247, 0.5);
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.trust-pill i {
  color: var(--antique-gold);
  font-size: 1.1rem;
}

/* Collection Security Stats */
.privacy-quick-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.privacy-quick-stats .stat-metric {
  background: rgba(61, 40, 23, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(168, 85, 247, 0.5);
  min-width: 140px;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.privacy-quick-stats .stat-metric .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--antique-gold);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.privacy-quick-stats .stat-metric .stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 600;
}

/* Security Actions */
.privacy-security-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-privacy-primary {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.btn-privacy-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.btn-privacy-secondary {
  background: rgba(168, 85, 247, 0.1);
  color: var(--antique-gold);
  border: 2px solid rgba(168, 85, 247, 0.3);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.btn-privacy-secondary:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
}

/* Privacy Hero Visual */
.privacy-hero-visual {
  position: relative;
}

.antiquarium-privacy-visual {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

/* Ancient Vault Display */
.vault-showcase {
  position: relative;
  margin-bottom: 2rem;
}

.vault-door {
  position: relative;
  width: 200px;
  height: 280px;
  background: linear-gradient(135deg, #8B4513, #654321);
  border-radius: 20px 20px 0 0;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
  border: 4px solid #DAA520;
}

.door-handle {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B4513;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.door-locks {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.lock {
  width: 12px;
  height: 12px;
  background: #FFD700;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.6);
}

.door-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 20px 20px 0 0;
  animation: vaultGlow 3s ease-in-out infinite;
}

/* Vault Contents Preview */
.vault-contents {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-bottom: 2rem;
}

.artifact-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.artifact-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.3);
}

.artifact-preview i {
  font-size: 2rem;
  color: var(--antique-gold);
  margin-bottom: 0.25rem;
}

.artifact-preview span {
  color: var(--default-color);
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
}

/* Security Network Hub */
.security-network {
  position: relative;
  margin-bottom: 2rem;
}

.network-center {
  position: relative;
  margin: 0 auto 2rem;
  z-index: 3;
}

.network-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

.network-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

.network-nodes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.node {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.node.node-1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.node.node-2 {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

.node.node-3 {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.node.node-4 {
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

/* Security Connections */
.security-connections {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--antique-gold));
  border-radius: 1px;
  animation: connectionFlow 2s ease-in-out infinite;
}

.connection.conn-1 {
  top: 40px;
  left: 50%;
  width: 60px;
  transform: translateX(-50%) rotate(0deg);
}

.connection.conn-2 {
  top: 50%;
  right: 40px;
  width: 60px;
  transform: translateY(-50%) rotate(90deg);
}

.connection.conn-3 {
  bottom: 40px;
  left: 50%;
  width: 60px;
  transform: translateX(-50%) rotate(180deg);
}

.connection.conn-4 {
  top: 50%;
  left: 40px;
  width: 60px;
  transform: translateY(-50%) rotate(270deg);
}

/* Floating Security Badges */
.floating-security-badges {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-bottom: 2rem;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.security-badge i {
  color: #28a745;
  font-size: 1.2rem;
}

.security-badge span {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 0.7rem;
}

/* Privacy Timeline */
.privacy-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.timeline-point {
  text-align: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.timeline-point.active {
  opacity: 1;
  transform: scale(1.1);
}

.point-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--antique-gold);
  display: block;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.point-label {
  font-size: 0.8rem;
  color: var(--default-color);
  font-weight: 600;
}

/* Animations */
@keyframes vaultGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes connectionFlow {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Responsive for Privacy Hero */
@media (max-width: 768px) {
  .privacy-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .privacy-hero-title {
    font-size: 2.5rem;
  }

  .privacy-security-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-privacy-primary,
  .btn-privacy-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .vault-contents {
    flex-direction: column;
    gap: 0.75rem;
  }

  .artifact-preview {
    width: 100%;
    max-width: 200px;
  }

  .floating-security-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .security-badge {
    width: 100%;
    max-width: 150px;
  }

  .privacy-timeline {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-point {
    width: 100%;
  }
}

/* Privacy Content Section */
/* Privacy Content Section */
.privacy-content-section {
  padding: 100px 0;
  background: var(--surface-color);
}

/* Privacy Header */
.privacy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.privacy-title h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-title p {
  font-size: 1.2rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Privacy Grid */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Privacy Cards */
.privacy-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  height: fit-content;
}

.privacy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.2);
}

/* Card Header */
.card-header {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.card-number {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-header h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Card Content */
.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.card-content > p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Info Lists */
.info-list,
.usage-list,
.security-list,
.rights-list,
.sharing-list,
.cookie-list,
.retention-list,
.transfer-list,
.minor-info,
.changes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item,
.usage-item,
.security-item,
.right-item,
.sharing-item,
.cookie-item,
.retention-item,
.transfer-item,
.minor-item,
.change-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.info-item:hover,
.usage-item:hover,
.security-item:hover,
.right-item:hover,
.sharing-item:hover,
.cookie-item:hover,
.retention-item:hover,
.transfer-item:hover,
.minor-item:hover,
.change-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateX(5px);
}

/* Icons */
.info-icon,
.security-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.right-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Text Content */
.info-text,
.security-info,
.right-info,
.sharing-info {
  flex: 1;
}

.info-text h4,
.security-info h4,
.right-info h4,
.sharing-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.info-text ul,
.security-info p,
.right-info p,
.sharing-info p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.info-text li {
  margin-bottom: 0.3rem;
}

/* Usage Items */
.usage-item,
.cookie-item,
.retention-item,
.transfer-item,
.minor-item,
.change-item {
  align-items: center;
}

.usage-item i,
.cookie-item i,
.retention-item i,
.transfer-item i,
.minor-item i,
.change-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.usage-item span,
.cookie-item span,
.retention-item span,
.transfer-item span,
.minor-item span,
.change-item span {
  color: var(--default-color);
  font-weight: 500;
}

/* Sharing Status */
.sharing-status {
  flex-shrink: 0;
}

.sharing-status.allowed i {
  color: #28a745;
}

.sharing-status.conditional i {
  color: #ffc107;
}

.sharing-status.restricted i,
.sharing-status.blocked i {
  color: #dc3545;
}

/* Cookie Note */
.cookie-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  font-style: italic;
  color: var(--default-color);
}

/* Rights Contact */
.rights-contact {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(255, 193, 7, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.rights-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.rights-contact p {
  color: var(--default-color);
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-method:hover {
  color: var(--antique-gold);
  transform: translateX(5px);
}

.contact-method i {
  font-size: 1.1rem;
}

/* Contact Section */
.privacy-contact-section {
  margin-top: 4rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.contact-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.contact-card > p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

.contact-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details {
  text-align: left;
}

.contact-details strong {
  display: block;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--antique-gold);
}

.contact-note {
  padding: 1rem;
  background: rgba(255, 193, 7, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--antique-gold);
  font-style: italic;
  color: var(--default-color);
}

/* Cookie Page Styles */
.cookie-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.cookie-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, var(--accent-color) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--antique-gold) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 25px 25px;
}

/* Terms Page Styles */
.terms-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.terms-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, var(--accent-color) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--antique-gold) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 25px 25px;
}

/* Thanks Page Styles */

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-hero-content,
  .cookie-hero-content,
  .terms-hero-content,
  .thanks-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .privacy-hero-title,
  .cookie-hero-title,
  .terms-hero-title,
  .thanks-hero-title {
    font-size: 2.5rem;
  }

  .privacy-overview-grid,
  .cookie-types-overview,
  .terms-overview-grid {
    grid-template-columns: 1fr;
  }

  .privacy-accordion-container,
  .cookie-info-accordion,
  .terms-accordion-container {
    gap: 1rem;
  }

  .section-header {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
  }

  .section-info {
    margin-left: 0;
  }

  .thanks-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-intro-section {
    text-align: center;
  }

  .overview-cards,
  .section-cards {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Revolutionary Terms Constitution Design
--------------------------------------------------------------*/

/* Constitution Badge */
.terms-badge-revolutionary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1e40af, #7c3aed, #dc2626);
  border-radius: 25px;
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.badge-glow-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: pulseGlow 2s ease-in-out infinite;
}

.badge-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-content i {
  font-size: 1.8rem;
  color: #fbbf24;
}

.badge-version {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Constitution Hero Title */
.terms-hero-title-revolutionary {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--background-color);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1e40af, #7c3aed, #dc2626, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  color: #fbbf24;
  font-weight: 700;
  font-size: 1.4em;
  display: block;
  margin-top: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Constitution Preamble */
.constitution-preamble {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preamble-quote {
  text-align: center;
  position: relative;
}

.preamble-quote i {
  font-size: 3rem;
  color: #7c3aed;
  margin-bottom: 1rem;
  display: block;
}

.preamble-quote p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--heading-color);
  margin: 0;
  font-weight: 500;
}

.preamble-signature {
  margin-top: 2rem;
  text-align: center;
  border-top: 2px solid rgba(124, 58, 237, 0.2);
  padding-top: 1.5rem;
}

.preamble-signature span {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1.1rem;
}

.signature-line {
  display: block;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c3aed, transparent);
  margin: 0.5rem auto 0;
}

/* Constitution Navigator */
.constitution-navigator {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--heading-color);
}

.nav-item:hover,
.nav-item.active {
  background: linear-gradient(135deg, #7c3aed, #1e40af);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.nav-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #7c3aed;
}

.nav-item.active .nav-number {
  background: rgba(255, 255, 255, 0.9);
  color: #7c3aed;
}

/* Constitution Monument */
.constitution-monument {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.constitution-pillars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pillar-top {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
  margin-bottom: 1rem;
  z-index: 3;
  position: relative;
}

.pillar-body {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border: 3px solid #cbd5e1;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.pillar-inscription {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.pillar-base {
  width: 80px;
  height: 20px;
  background: linear-gradient(135deg, #374151, #1f2937);
  border-radius: 4px;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Constitution Seal */
.constitution-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.seal-outer, .seal-middle, .seal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.seal-outer {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(124, 58, 237, 0.1));
  animation: sealGlow 3s ease-in-out infinite;
}

.seal-middle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3), rgba(124, 58, 237, 0.2));
  animation: sealGlow 3s ease-in-out infinite reverse;
}

.seal-inner {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
  position: relative;
}

.seal-inner i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.seal-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Constitution Elements */
.constitution-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.element {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
  animation: elementFloat 4s ease-in-out infinite;
}

.element.article { top: 15%; left: 10%; animation-delay: 0s; }
.element.amendment { top: 25%; right: 15%; animation-delay: 1s; }
.element.clause { bottom: 20%; left: 15%; animation-delay: 2s; }
.element.precedent { bottom: 30%; right: 10%; animation-delay: 3s; }

/* Constitution Rays */
.constitution-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
}

.ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.6), transparent);
  transform-origin: bottom center;
  animation: rayPulse 2s ease-in-out infinite;
}

.ray-1 { transform: translate(-50%, -100%) rotate(0deg); animation-delay: 0s; }
.ray-2 { transform: translate(-50%, -100%) rotate(60deg); animation-delay: 0.3s; }
.ray-3 { transform: translate(-50%, -100%) rotate(120deg); animation-delay: 0.6s; }
.ray-4 { transform: translate(-50%, -100%) rotate(180deg); animation-delay: 0.9s; }
.ray-5 { transform: translate(-50%, -100%) rotate(240deg); animation-delay: 1.2s; }
.ray-6 { transform: translate(-50%, -100%) rotate(300deg); animation-delay: 1.5s; }

/* Constitution Particles */
.constitution-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  font-size: 1.5rem;
  animation: particleFloat 6s ease-in-out infinite;
  opacity: 0.7;
}

.particle.liberty { top: 10%; left: 20%; animation-delay: 0s; }
.particle.justice { top: 20%; right: 20%; animation-delay: 1.5s; }
.particle.wisdom { bottom: 20%; left: 25%; animation-delay: 3s; }
.particle.heritage { bottom: 15%; right: 25%; animation-delay: 4.5s; }

/* Constitution Content */
.constitution-content-revolutionary {
  padding: 80px 0;
  background: var(--surface-color);
}

/* Constitution TOC */
.constitution-toc {
  margin-bottom: 4rem;
}

.toc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.toc-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.toc-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.toc-header p {
  font-size: 1.2rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
}

.toc-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.toc-article {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(124, 58, 237, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toc-article:hover,
.toc-article.active {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.article-number {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.article-content {
  flex: 1;
  margin: 0 1.5rem;
}

.article-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.article-content p {
  margin: 0;
  color: var(--default-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-status {
  color: #16a34a;
  font-weight: 600;
  font-size: 0.8rem;
}

.article-status i {
  margin-right: 0.25rem;
}

/* Constitution Articles Display */
.constitution-articles-display {
  position: relative;
}

/* Constitution Article */
.constitution-article {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.constitution-article.active {
  display: block;
  animation: articleFadeIn 0.6s ease-out;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(124, 58, 237, 0.1);
}

.article-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-label {
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.article-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.article-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.article-status {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-date {
  font-size: 0.8rem;
  color: var(--default-color);
  font-weight: 500;
}

/* Article Preamble */
.article-preamble {
  background: rgba(124, 58, 237, 0.05);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  border-left: 4px solid #7c3aed;
}

.article-preamble p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--heading-color);
  margin: 0;
  font-weight: 500;
}

/* Fundamental Rights Grid */
.article-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.fundamental-right {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
}

.fundamental-right:hover {
  border-color: #7c3aed;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
  transform: translateY(-2px);
}

.right-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.fundamental-right h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.fundamental-right p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.right-clauses {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.clause {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Preservation Duties */
.preservation-duties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.duty-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.duty-card:hover {
  border-color: #10b981;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.duty-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.duty-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.duty-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.duty-requirements {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.duty-requirements span {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Fair Access Framework */
.fair-access-framework {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.access-principle {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.access-principle:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.principle-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.access-principle h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.access-principle p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/* Digital Sovereignty */
.digital-sovereignty {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.sovereignty-pillar {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.sovereignty-pillar:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.sovereignty-pillar h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.sovereignty-pillar p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/* Constitutional Court */
.constitutional-court {
  text-align: center;
}

.court-structure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.court-branch {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
}

.court-branch:hover {
  border-color: #8b4513;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
  transform: translateY(-2px);
}

.branch-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.court-branch h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.court-branch p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.court-timing {
  background: rgba(139, 69, 19, 0.1);
  color: #8b4513;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* Constitutional Evolution */
.constitutional-evolution {
  text-align: center;
}

.evolution-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  border: 2px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
  transform: translateY(-2px);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.step-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #7c3aed;
  margin: 0.5rem auto 0;
}

/* Constitution Amendments */
.constitution-amendments-section {
  margin-bottom: 4rem;
}

.amendments-header {
  text-align: center;
  margin-bottom: 3rem;
}

.amendments-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7c3aed, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.amendments-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.amendments-header p {
  font-size: 1.1rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
}

.amendments-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.amendment-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.amendment-date {
  background: linear-gradient(135deg, #7c3aed, #1e40af);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.amendment-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.amendment-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  flex: 1;
}

.amendment-content p {
  color: var(--default-color);
  line-height: 1.5;
  margin: 0;
  flex: 2;
}

.amendment-status {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.amendment-status.ratified {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.amendment-status.proposed {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.amendment-status.draft {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}

/* Constitution Oath */
.constitution-oath-section {
  margin-bottom: 4rem;
}

.oath-card {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(124, 58, 237, 0.05));
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  border: 2px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.oath-header {
  margin-bottom: 2rem;
}

.oath-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.oath-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.oath-text {
  margin-bottom: 2rem;
}

.oath-quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--heading-color);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

.oath-signature {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  display: inline-block;
  border: 2px solid rgba(124, 58, 237, 0.2);
}

.signature-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.signature-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.signature-checkbox input:checked ~ .checkmark {
  background: #7c3aed;
  border-color: #7c3aed;
}

.signature-checkbox input:checked ~ .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.oath-acceptance {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

/* Constitution CTA */
.constitution-cta-section {
  margin-bottom: 4rem;
}

.constitution-cta-card {
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
  position: relative;
  overflow: hidden;
}

.constitution-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="constitutionPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23constitutionPattern)"/></svg>');
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.btn-constitution-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-constitution-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-constitution-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-constitution-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes sealGlow {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes elementFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(-4px) rotate(-1deg); }
  75% { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes rayPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -100%) scaleY(1); }
  50% { opacity: 0.8; transform: translate(-50%, -100%) scaleY(1.2); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
  33% { transform: translateY(-15px) rotate(120deg); opacity: 1; }
  66% { transform: translateY(-8px) rotate(240deg); opacity: 0.8; }
}

@keyframes articleFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-hero-title-revolutionary {
    font-size: 3rem;
  }

  .constitution-pillars {
    flex-direction: column;
    gap: 1rem;
  }

  .pillar-inscription {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }

  .toc-articles {
    grid-template-columns: 1fr;
  }

  .article-rights-grid,
  .preservation-duties,
  .fair-access-framework,
  .digital-sovereignty,
  .court-structure {
    grid-template-columns: 1fr;
  }

  .evolution-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .amendments-timeline {
    grid-template-columns: 1fr;
  }

  .amendment-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-bg {
  background: linear-gradient(135deg, var(--antique-brown) 0%, var(--antique-gold) 100%);
  position: relative;
  padding: 80px 0;
}


.about-content {
  color: white;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: white;
}

.about-title .highlight {
  background: linear-gradient(45deg, var(--antique-brown), var(--antique-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  

}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--antique-brown), var(--antique-brown));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 24px;
  color: #ffffff;
}

.feature-content h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.about-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.image-stack {
  height: 100%;
}

.image-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;

}

.main-image {
  top: 0;
  left: 0;
  width: 80%;
  z-index: 2;
}

.overlay-image {
  top: 20%;
  right: 0;
  width: 70%;
  z-index: 1;
}


.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--antique-gold), var(--antique-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.card-icon i {
  color: #333;
  font-size: 18px;
}

.card-content h5 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.card-content p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.stats-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  
}

.stat-card:hover::before {
  left: 100%;
}

.stat-number {
  display: none;
}

.stat-label {
  color: var(--background-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.stat-item .stat-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

.stat-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.3;
}

.stat-icon i {
  font-size: 24px;
  color: white;
}

.cta-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, var(--antique-brown), var(--antique-brown));
  color: var(--background-color);
  border-color: var(--antique-brown);
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--antique-brown), var(--antique-brown));
  

}

.btn-outline-primary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--background-color);
  

}

@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  
  .about-visual {
    min-height: 300px;
    margin-top: 40px;
  }
  
  .image-item {
    position: relative;
    width: 100% !important;
    margin-bottom: 20px;
  }
  

  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  backdrop-filter: blur(10px);
}

.features .icon-box:hover {
  background: rgba(255, 255, 255, 0.1);
  
  border-color: var(--accent-color);

}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--background-color);
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
  background: rgba(168, 85, 247, 0.1);
  padding: 15px;
  border-radius: 12px;
  
}

.features .icon-box:hover i {
  background: rgba(218, 165, 32, 0.2);
  
}

.features .icon-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Dark background features section */
.features.dark-background {
  background: var(--dark-background);
  color: var(--background-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features.dark-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.features.dark-background .container {
  position: relative;
  z-index: 2;
}

/* Features Content */
.features-content {
  padding-right: 30px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--background-color);
}

.features-title .highlight {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  

}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  
}

.feature-card:hover .feature-icon-wrapper {

}

.feature-icon-wrapper i {
  font-size: 28px;
  color: white;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--background-color);
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Features CTA */
.features-cta {
  margin-top: 30px;
}

.features-cta .btn {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  

}

.features-cta .btn:hover {
  

}

/* Features Visual */
.features-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-composition {
  position: relative;
  width: 100%;
  height: 500px;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;

}

.main-image {
  width: 100%;
  object-fit: cover;
  
}

.main-image-wrapper:hover .main-image {
  
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(218, 165, 32, 0.2), rgba(0, 0, 0, 0.3));
  border-radius: 25px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;

  
}

.floating-card i {
  color: var(--accent-color);
  font-size: 20px;
}

.floating-card span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.card-1 {
  top: 10%;
  left: -20px;
  
}

.card-2 {
  top: 50%;
  right: -20px;
  
}

.card-3 {
  bottom: 10%;
  left: 10%;
  
}


/* Responsive */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .features-title {
    font-size: 2.5rem;
  }
  
  .image-composition {
    height: 400px;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .features-title {
    font-size: 2rem;
  }
  
  .features-description {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.features-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  padding: 40px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);

  
  position: relative;
  overflow: hidden;
}

.features-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-brown), var(--antique-brown));
  background-size: 200% 100%;
  
}


.features-item:hover {


  border-color: rgba(255, 255, 255, 0.2);
}

.features-item .row {
  align-items: center;
}

.features-item img {
  border-radius: 20px;

  
}

.features-item:hover img {
  
}

.features-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--antique-brown) 0%, var(--antique-brown) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.features-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-brown));
  border-radius: 2px;
}

.features-item .fst-italic {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.features-item .fst-italic::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: var(--antique-brown);
  font-family: serif;
}

.features-item p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-item ul li {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  position: relative;
  overflow: hidden;
}

.features-item ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  
}

.features-item ul li:hover::before {
  left: 100%;
}

.features-item ul li:hover {
  background: rgba(255, 255, 255, 0.12);
  
  border-color: rgba(255, 255, 255, 0.2);
}

.features-item ul li i {
  font-size: 20px;
  color: var(--antique-brown);
  margin-right: 15px;
  width: 24px;
  text-align: center;
  background: rgba(168, 85, 247, 0.1);
  padding: 8px;
  border-radius: 8px;
  
}

.features-item ul li:hover i {
  background: rgba(218, 165, 32, 0.2);
  
}

.features-item ul li span {
  font-weight: 500;
  line-height: 1.5;
}

.features-item ul li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-item {
    padding: 30px 20px;
    margin: 15px 0;
  }
  
  .features-item h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .features-item h3::after {
    left: 50%;
    
  }
  
  .features-item .fst-italic {
    text-align: center;
    padding-left: 0;
  }
  
  .features-item .fst-italic::before {
    display: none;
  }
  
  .features-item ul li {
    padding: 12px 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .features-item {
    padding: 25px 15px;
  }
  
  .features-item h3 {
    font-size: 1.5rem;
  }
  
  .features-item ul li {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

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

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

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

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    
    border-radius: 25px;
    
  }
}

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

/* Testimonial Cards */
.testimonial-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  
  border: 1px solid rgba(168, 85, 247, 0.1);

}

.testimonial-card:hover {
  

  border-color: var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  color: var(--background-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-role {
  margin: 0 0 0.5rem 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.testimonial-info .stars {
  color: var(--antique-gold);
  font-size: 0.9rem;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  opacity: 0.3;
  font-size: 1.5rem;
}

.quote-icon-left {
  margin-right: 0.5rem;
}

.quote-icon-right {
  margin-left: 0.5rem;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.testimonial-result i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.testimonial-result span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Program Slides */
.program-slide {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(168, 85, 247, 0.1);
  
}

.program-slide:hover {
  

  border-color: var(--accent-color);
}

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.program-icon i {
  font-size: 2.5rem;
  color: var(--background-color);
}

.program-slide h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.program-subtitle {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.program-content {
  flex: 1;
  margin-bottom: 2rem;
}

.program-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.program-feature i {
  color: var(--success-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.program-feature strong {
  display: block;
  color: var(--heading-color);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-feature p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.program-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  gap: 1rem;
}

.stat-mini {
  text-align: center;
  flex: 1;
}

.stat-mini .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-mini .stat-text {
  display: block;
  font-size: 0.85rem;
  color: var(--default-color);
  opacity: 0.7;
}

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

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, #c8e6d5 100%);
  border-radius: 20px;

  box-sizing: border-box;
  padding: 40px 35px 35px 80px;
  margin: 25px 15px;
  min-height: 220px;
  position: relative;
  border: 1px solid rgba(42, 93, 91, 0.1);
  
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.testimonials .testimonial-item:hover {
  

}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  top: 30px;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent-color);
  font-weight: bold;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
  letter-spacing: 0.5px;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  display: flex;
  gap: 3px;
}

.testimonials .testimonial-item .stars i {
  color: var(--antique-gold);
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 28px;
  line-height: 0;
  opacity: 0.7;
}

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

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -8px;
  position: relative;
  top: 15px;
  
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px auto 15px auto;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-item p span {
  position: relative;
  z-index: 2;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;

  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--background-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--background-color);
}

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

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/* Pricing Card Styles */
.pricing-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem;

  
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  

}

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

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 12px 12px 0 0;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-color);
  color: var(--background-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;

}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1rem 0;
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--default-color);
  margin-right: 0.25rem;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  margin-left: 0.25rem;
}

.price-description {
  color: var(--default-color);
  opacity: 0.8;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

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

.pricing-features ul li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--default-color);
}

.pricing-features ul li i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-features ul li .bi-check-circle-fill {
  color: var(--success-color);
}

.pricing-features ul li .bi-x-circle {
  color: var(--danger-color);
  opacity: 0.6;
}

.pricing-footer {
  margin-top: auto;
}

.pricing-comparison {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;

}

.pricing-comparison table {
  margin-bottom: 0;
}

.pricing-comparison table th {
  background-color: var(--heading-color);
  color: var(--background-color);
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

.pricing-comparison table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-comparison table tbody tr:hover {
  background-color: rgba(168, 85, 247, 0.1);
}

.pricing-cta {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;

}

/* Legal Info Styles */
.legal-info {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
}

.legal-info a {
  color: var(--accent-color);
  text-decoration: none;
}

.legal-info a:hover {
  text-decoration: underline;
}

.legal-info-section {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent-color);
}

.legal-info-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.legal-info-section p {
  margin-bottom: 0.5rem;
}

.stats-section {
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 8px;

}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

/*--------------------------------------------------------------
# Features Section Styles
--------------------------------------------------------------*/
.feature-box {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));

  
}

.feature-box:hover::before {

}

.feature-box:hover {
  

  border-color: var(--accent-color);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  
}

.feature-box:hover .feature-icon-box {

}

.feature-icon-box i {
  font-size: 2rem;
  color: var(--background-color);
}

.feature-box h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-box p,
.feature-description {
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.features-cta-box {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(218, 165, 32, 0.7);

}

.features-cta-box h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-cta-box .lead {
  color: var(--default-color);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# How It Works Section Styles
--------------------------------------------------------------*/
.how-it-works {
  position: relative;
}

.step-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  
  position: relative;
  border: 2px solid transparent;
}

.step-card:hover {
  

  border-color: var(--accent-color);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background-color);

}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(177, 156, 217, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  
}

.step-card:hover .step-icon i {
  color: var(--background-color);
}

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

.step-card p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

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

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {

  font-size: 20px;
  line-height: 0;
  
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  
  cursor: pointer;
}

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

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

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--background-color);
}

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

.faq .faq-container .faq-active .faq-toggle {
  
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;

  height: 100%;
}

.contact .contact-info h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.contact .info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.contact .info-content {
  flex: 1;
}

.contact .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .info-content p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--default-color);
}

.contact .info-content a {
  color: var(--accent-color);
  text-decoration: none;
  
}

.contact .info-content a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.contact .social-links {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .social-links h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact .social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  color: var(--accent-color);
  text-decoration: none;
  
}

.contact .social-icons a:hover {
  background: var(--accent-color);
  color: var(--background-color);
  

}

.contact .social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;

}

.contact .php-email-form {
  background: transparent;
  padding: 0;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea,
.contact .php-email-form select {
  font-size: 14px;
  padding: 12px 15px;

  border-radius: 8px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  
}

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

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

}

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

.contact .form-check {
  margin-top: 10px;
}

.contact .form-check-label {
  font-size: 13px;
  color: var(--default-color);
  line-height: 1.6;
}

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

.contact .form-check-input:focus {
  border-color: var(--accent-color);

}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--background-color);
  border: 0;
  padding: 14px 40px;
  
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--heading-color);
  

}

.contact .php-email-form button[type=submit] svg {
  margin-right: 8px;
}


/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  position: relative;
}

.success-area-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  
  border: 1px solid rgba(255, 255, 255, 0.1);

  position: relative;
  overflow: hidden;
}

.success-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));

  
}

.success-area-card:hover::before {

}

.success-area-card:hover {
  

  border-color: rgba(218, 165, 32, 0.8);
  background: rgba(168, 85, 247, 0.1);
}

.success-area-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  
}

.success-area-card:hover .success-area-icon {

}

.stat-icon i {
  font-size: 2rem;
  color: var(--background-color);
}

.success-area-icon i {
  font-size: 2rem;
  color: var(--background-color);
}

.success-area-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.success-area-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.story-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  
  border: 1px solid rgba(77, 184, 125, 0.15);

}

.story-card:hover {
  

  border-color: var(--accent-color);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-avatar i {
  font-size: 1.5rem;
  color: var(--background-color);
}

.story-info {
  flex: 1;
}

.story-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.story-meta {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77, 184, 125, 0.15);
  border: 1px solid rgba(77, 184, 125, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
}

.story-badge i {
  font-size: 1rem;
}

.story-content h5 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.story-results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(77, 184, 125, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--success-color);
}

.result-item i {
  color: var(--success-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.result-item span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.success-cta {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(218, 165, 32, 0.7);

}

.success-cta h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-cta .lead {
  color: var(--default-color);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .success-area-card {
    padding: 1.5rem;
  }

  .story-card {
    padding: 2rem;
  }

  .success-cta {
    padding: 2rem 1.5rem;
  }

  .success-cta h3 {
    font-size: 1.5rem;
  }
}

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;

  background: linear-gradient(135deg, #0d4a2d 0%, #0d4a2d 100%);
  color: var(--default-color);
  border: 1px solid rgba(77, 184, 125, 0.3);
  padding: 0;
  font-family: var(--default-font);

  border-radius: 16px;
  font-size: 14px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 1000;
  display: none;
  opacity: 0;
  overflow: hidden;
  
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  z-index: 1;
}

#cookie-popup.show {
  opacity: 1;

}

#cookie-popup p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  position: relative;
}

#cookie-popup .popup-message {
  flex: 1;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  
  border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
  color: var(--heading-color);
  border-bottom-color: var(--heading-color);
}

#cookie-popup button {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
  color: var(--background-color);
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  
  align-self: flex-end;

  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  

}

#cookie-popup button:active {
  
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  
}

#cookie-popup .popup-message a:hover {
  color: #0056b3;
}

/* Cookie Popup Responsive Styles */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    
    border-radius: 12px;
    font-size: 13px;
  }

  #cookie-popup.show {
    
  }

  #cookie-popup .popup-content {
    padding: 1.25rem;
    gap: 1rem;
  }

  #cookie-popup .popup-message {
    max-width: 100%;
  }

  #cookie-popup p {
    font-size: 13px;
    line-height: 1.5;
  }

  #cookie-popup button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  #cookie-popup .popup-content {
    padding: 1rem;
    gap: 0.875rem;
  }

  #cookie-popup p {
    font-size: 12px;
  }

  #cookie-popup button {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

#features-slider {
  position: relative;
}

.swiper-slide {
  
}


.list-cards {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.card-item {
  background: var(--background-color);
  border-radius: 12px;

  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
  
  cursor: default;
  margin: 10px;
}
.card-item:hover {

  
}
.card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.card-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .list-cards {
    flex-direction: column;
  }
  .card-item {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
.page-title {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.page-title h1 {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  border-bottom: 3px solid var(--antique-border-color);
  padding-bottom: 0.5rem;
}

.page-title p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Content Styling
--------------------------------------------------------------*/
.content {
  color: var(--default-color);
  line-height: 1.8;
}

.content h2 {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--antique-border-color);
}

.content h3 {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  border-left: 3px solid var(--antique-border-color);
  padding-left: 1rem;
}

.content h4 {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.content p {
  margin-bottom: 1.2rem;
  color: var(--default-color);
}

.content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.content .contact-info {
  background: rgba(168, 85, 247, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid rgba(218, 165, 32, 0.7);
  margin: 2rem 0;
}

.content .contact-info p {
  margin-bottom: 0.5rem;
}

.content .contact-info strong {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.content .alert {
  border-radius: 15px;
  border: none;
  padding: 25px;
  margin: 2rem 0;
}

.content .alert-info {
  background: rgba(168, 85, 247, 0.1);
  color: var(--info-color);
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.content .alert-warning {
  background: rgba(168, 85, 247, 0.1);
  color: var(--warning-color);
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.content .alert h4 {
  color: inherit;
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings {
  background: rgba(77, 184, 125, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  text-align: center;
  margin: 2rem 0;
}

.content .cookie-settings h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings p {
  margin-bottom: 1.5rem;
}

.content .cookie-settings .btn {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  

}

.content .cookie-settings .btn:hover {
  

  color: var(--background-color);
}

/*--------------------------------------------------------------
# Responsive Adjustments for Content Pages
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-title p {
    font-size: 1rem;
  }
  
  .content h2 {
    font-size: 1.5rem;
  }
  
  .content h3 {
    font-size: 1.3rem;
  }
  
  .content h4 {
    font-size: 1.1rem;
  }
  
  .content .contact-info,
  .content .cookie-settings {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .page-title {
    padding: 60px 0 30px;
  }
  
  .page-title h1 {
    font-size: 1.8rem;
  }
  
  .content h2 {
    font-size: 1.4rem;
  }
  
  .content h3 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Nueva Sección: Recursos Educativos
--------------------------------------------------------------*/
.recursos {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.recursos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.recurso-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(168, 85, 247, 0.1);
  backdrop-filter: blur(20px);
  
  position: relative;
  overflow: hidden;
}

.recurso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));

  
}

.recurso-card:hover::before {

}

.recurso-card:hover {


  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

.recurso-card.featured {
  border-color: var(--accent-color);
  
  background: rgba(77, 184, 125, 0.05);
}

.recurso-card.featured::before {

}

.recurso-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  
}

.recurso-card:hover .recurso-icon {

}

.recurso-icon i {
  font-size: 2.5rem;
  color: var(--background-color);
}

.recurso-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.recurso-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 2px;
}

.recurso-card p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.recurso-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(78, 205, 196, 0.2);
  
}

.recurso-card:hover .feature-tag {
  background: rgba(218, 165, 32, 0.2);
  border-color: var(--accent-color);
  
}

.recurso-btn {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  

}

.recurso-btn:hover {
  

  color: var(--background-color);
}

/* Estadísticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  backdrop-filter: blur(20px);
  
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
  
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  
  border-color: var(--accent-color);

}

.stat-number {
  display: none !important;
}

.stat-label {
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer - Nuevo Diseño
--------------------------------------------------------------*/
.footer {
  background: var(--surface-color);
  padding: 80px 0 30px;
  color: var(--default-color);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.footersletter {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 25px;
  margin: 0 20px 60px 20px;
  position: relative;
  z-index: 2;
}

.footersletter h4 {
  color: var(--background-color);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.footersletter p {
  color: var(--background-color);
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.footersletter .newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50px;
  backdrop-filter: blur(20px);
}

.footersletter input[type="email"] {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--background-color);
}

.footersletter input[type="submit"] {
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  
}

.footersletter input[type="submit"]:hover {
  

}

.footer-top {
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}



.footer-about .footer-contact p {
  margin: 0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-about .footer-contact strong {
  color: var(--heading-color);
}

.footer-links h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links ul li {
  padding: 8px 0;
}

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

.footer-links ul li a {
  color: var(--default-color);
  
}

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

.footer-bottom {
  background: var(--background-color);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  margin: 0;
  color: var(--default-color);
}

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

/*--------------------------------------------------------------
# Responsive Design - Mejorado
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero h2 {
    font-size: 3.5rem;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 20px;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/

/* About Hero Section */
.about-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.about-hero-content {
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77, 184, 125, 0.15);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(77, 184, 125, 0.3);
}

.section-badge i {
  font-size: 0.9rem;
}

.about-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--background-color);
  font-family: var(--heading-font);
}

.highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature-item {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  text-align: center;
}

.about-feature-item:hover {
  background: rgba(77, 184, 125, 0.15);
  border-color: rgba(77, 184, 125, 0.3);
  

}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  
}

.about-feature-item:hover .about-feature-icon {

}

.about-feature-icon i {
  font-size: 1.75rem;
  color: var(--background-color);
}

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.about-feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

}

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
  
}

.image-wrapper:hover .about-hero-image {
  
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(177, 156, 217, 0.05) 100%);
  pointer-events: none;
}

/* Mission Section */
.about-mission-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.mission-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(77, 184, 125, 0.3);
  

}

.mission-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-icon i {
  font-size: 1.75rem;
  color: var(--background-color);
}

.mission-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--background-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Values Section */
.about-values-section {
  padding: 80px 0;
  background: var(--background-color);
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--background-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.value-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  
  height: 100%;
}

.value-card:hover {
  background: rgba(77, 184, 125, 0.15);
  border-color: rgba(77, 184, 125, 0.3);
  

}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  
}

.value-card:hover .value-icon {

}

.value-icon i {
  font-size: 2rem;
  color: var(--background-color);
}

.value-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Team & Legal Section */
.about-team-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.team-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.team-header {
  margin-bottom: 1.5rem;
}

.team-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--background-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.team-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.legal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.legal-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--background-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-item strong {
  color: var(--heading-color);
  font-size: 0.85rem;
}

/* Modern Mission Section Styles */
.mission-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
  position: relative;
  overflow: hidden;
}

.mission-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card-modern:hover {
  background: rgba(61, 166, 107, 0.15);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.mission-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mission-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-icon-modern i {
  font-size: 1.75rem;
  color: var(--background-color);
}

.mission-title-modern {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--background-color);
  margin: 0;
  font-family: var(--heading-font);
}

.mission-content-modern {
  position: relative;
}

.mission-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.mission-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mission-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.mission-list-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Modern Values Section Styles */
.value-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  
}

.value-card-modern:hover::before {
  opacity: 1;
}

.value-card-modern:hover {
  background: rgba(61, 166, 107, 0.15);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.value-icon-modern {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.value-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  

}

.value-card-modern:hover .value-icon-bg {

}

.value-icon-bg i {
  font-size: 2rem;
  color: var(--background-color);
}

.value-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.value-text-modern {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.section-description-center {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Modern Team Section Styles */
.team-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
}

.team-card-modern:hover {
  background: rgba(61, 166, 107, 0.1);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.team-header-modern {
  margin-bottom: 2rem;
}

.team-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--background-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.team-content-modern {
  position: relative;
}

.team-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.team-features-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item-modern {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.team-feature-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.team-feature-icon-modern i {
  font-size: 1.5rem;
  color: var(--background-color);
}

.team-feature-content-modern {
  flex: 1;
}

.team-feature-title-modern {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.team-feature-text-modern {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Modern Legal Card Styles */
.legal-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
}

.legal-card-modern:hover {
  background: rgba(61, 166, 107, 0.1);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.legal-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-icon-modern i {
  font-size: 1.5rem;
  color: var(--background-color);
}

.legal-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--background-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content-modern {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-item-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-label-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-label-modern i {
  font-size: 1rem;
  color: var(--accent-color);
}

.legal-value-modern {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  
}

.legal-value-modern:hover {
  color: var(--accent-color);
}

/* Services Page Styles */
.services-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-hero-content {
  position: relative;
}

.services-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--background-color);
  font-family: var(--heading-font);
}

.services-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.services-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item-modern {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 1.5rem;
  background: rgba(1, 26, 69, 0.4);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item-modern:hover {
  background: rgba(1, 26, 69, 0.6);
  border-color: rgba(218, 165, 32, 0.8);
  transform: translateY(-5px);
}

.stat-icon-wrapper-modern {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.3), rgba(61, 166, 107, 0.2));
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 16px;
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.stat-item-modern:hover .stat-icon-wrapper-modern {
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.5), rgba(61, 166, 107, 0.4));
  border-color: var(--antique-text-color);
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.stat-label-modern {
  font-size: 1.1rem;
  color: var(--background-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-description-modern {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

.services-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-visual-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  
  width: 100%;
  max-width: 400px;
}

.services-visual-card:hover {
  background: rgba(61, 166, 107, 0.15);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.visual-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  
}

.services-visual-card:hover .visual-icon-large {

}

.visual-icon-large i {
  font-size: 3rem;
  color: var(--background-color);
}

.services-visual-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.services-visual-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.services-main-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.service-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-card-modern:hover {
  background: rgba(61, 166, 107, 0.15);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.service-header-modern {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  
}

.service-card-modern:hover .service-icon-modern {

}

.service-icon-modern i {
  font-size: 1.75rem;
  color: var(--background-color);
}

.service-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background-color);
  margin: 0;
  font-family: var(--heading-font);
}

.service-description-modern {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.service-features-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-footer-modern {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  
}

.service-link-modern:hover {
  color: var(--heading-color);
  gap: 0.75rem;
}

.service-link-modern i {
  
}

.service-link-modern:hover i {
  
}

.services-cta-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-cta-content {
  position: relative;
}

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

.services-cta-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.services-cta-buttons .btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .mission-card-modern,
  .team-card-modern,
  .legal-card-modern {
    padding: 1.5rem;
  }

  .mission-title-modern,
  .team-title-modern {
    font-size: 1.5rem;
  }

  .value-card-modern {
    padding: 1.5rem;
  }

  .section-title-center {
    font-size: 2rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-title {
    font-size: 2rem;
  }

  .services-stats {
    gap: 1.5rem;
  }

  .stat-number-modern {
    font-size: 2rem;
  }

  .service-card-modern {
    padding: 1.5rem;
  }

  .service-title-modern {
    font-size: 1.25rem;
  }

  .services-cta-title {
    font-size: 2rem;
  }

  .services-cta-buttons {
    flex-direction: column;
  }

  .services-cta-buttons .btn-lg {
    width: 100%;
  }
}

.legal-item span,
.legal-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
}

.legal-item a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .recurso-card {
    padding: 30px 20px;
  }
  
  .footersletter .newsletter-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
  }
  
  .footersletter input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .recurso-card {
    padding: 25px 15px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
}

/* Mobile menu overlay */
@media (max-width: 1199px) {
  
  
  /* Ensure menu is above overlay and all other elements */
  .navmenu-modern.active {
    z-index: 10001 !important;
    position: fixed !important;
  }
  
  /* Ensure nav links are clickable */
  .navmenu-modern.active .nav-link {
    position: relative;
    z-index: 10002 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }
  
  /* Ensure nav menu list is clickable */
  .navmenu-modern.active .nav-menu-list {
    z-index: 10002 !important;
    pointer-events: auto !important;
  }
  
  /* Hide cookie banner when mobile menu is open */
  body.mobile-menu-open .cookie-banner {
    z-index: 9999 !important;
    pointer-events: none !important;
  }
}

/* Prevent overlay on desktop */
@media (min-width: 1200px) {
  body.mobile-menu-open::after {
    display: none !important;
  }
}

/* Header variant */
.header-modern.header-rev .header-main {
  background: linear-gradient(180deg, rgba(1, 26, 69,0.95), rgba(0, 20, 53,0.95));
  border-bottom: 1px solid rgba(45, 134, 89, 0.25);
}
.header-modern.header-rev .nav-link {
  border-radius: 999px;
  padding: 0.6rem 1rem;
}
.header-modern.header-rev .btn-primary-modern {
  border-radius: 999px;
}

/* Footer spacing */
.footer-modern.footer-rev .footer-top {
  background: rgba(1, 26, 69,0.6);
  border-top: 1px solid rgba(45, 134, 89, 0.25);
}
.footer-modern.footer-rev .footer-title {
  letter-spacing: 0.3px;
}
.footer-modern.footer-rev .footer-bottom-modern {
  border-top: 1px solid rgba(45, 134, 89, 0.25);
}

/* Full-section hero canvas */
.hero .hero-canvas-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

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

/* Testimonial Cards */
.testimonial-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  
  border: 1px solid rgba(168, 85, 247, 0.1);

}

.testimonial-card:hover {
  

  border-color: var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  color: var(--background-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-role {
  margin: 0 0 0.5rem 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.testimonial-info .stars {
  color: var(--antique-gold);
  font-size: 0.9rem;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  opacity: 0.3;
  font-size: 1.5rem;
}

.quote-icon-left {
  margin-right: 0.5rem;
}

.quote-icon-right {
  margin-left: 0.5rem;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.testimonial-result i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.testimonial-result span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Program Slides */
.program-slide {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(168, 85, 247, 0.1);
  
}

.program-slide:hover {
  

  border-color: var(--accent-color);
}

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.program-icon i {
  font-size: 2.5rem;
  color: var(--background-color);
}

.program-slide h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.program-subtitle {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.program-content {
  flex: 1;
  margin-bottom: 2rem;
}

.program-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.program-feature i {
  color: var(--success-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.program-feature strong {
  display: block;
  color: var(--heading-color);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-feature p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.program-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  gap: 1rem;
}

.stat-mini {
  text-align: center;
  flex: 1;
}

.stat-mini .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-mini .stat-text {
  display: block;
  font-size: 0.85rem;
  color: var(--default-color);
  opacity: 0.7;
}

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

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, #c8e6d5 100%);
  border-radius: 20px;

  box-sizing: border-box;
  padding: 40px 35px 35px 80px;
  margin: 25px 15px;
  min-height: 220px;
  position: relative;
  border: 1px solid rgba(42, 93, 91, 0.1);
  
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.testimonials .testimonial-item:hover {
  

}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  top: 30px;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent-color);
  font-weight: bold;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
  letter-spacing: 0.5px;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  display: flex;
  gap: 3px;
}

.testimonials .testimonial-item .stars i {
  color: var(--antique-gold);
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 28px;
  line-height: 0;
  opacity: 0.7;
}

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

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -8px;
  position: relative;
  top: 15px;
  
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px auto 15px auto;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-item p span {
  position: relative;
  z-index: 2;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;

  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--background-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--background-color);
}

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

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/* Pricing Card Styles */
.pricing-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem;

  
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  

}

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

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 12px 12px 0 0;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-color);
  color: var(--background-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;

}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1rem 0;
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--default-color);
  margin-right: 0.25rem;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  margin-left: 0.25rem;
}

.price-description {
  color: var(--default-color);
  opacity: 0.8;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

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

.pricing-features ul li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--default-color);
}

.pricing-features ul li i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-features ul li .bi-check-circle-fill {
  color: var(--success-color);
}

.pricing-features ul li .bi-x-circle {
  color: var(--danger-color);
  opacity: 0.6;
}

.pricing-footer {
  margin-top: auto;
}

.pricing-comparison {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;

}

.pricing-comparison table {
  margin-bottom: 0;
}

.pricing-comparison table th {
  background-color: var(--heading-color);
  color: var(--background-color);
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

.pricing-comparison table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-comparison table tbody tr:hover {
  background-color: rgba(168, 85, 247, 0.1);
}

.pricing-cta {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;

}

/* Legal Info Styles */
.legal-info {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
}

.legal-info a {
  color: var(--accent-color);
  text-decoration: none;
}

.legal-info a:hover {
  text-decoration: underline;
}

.legal-info-section {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent-color);
}

.legal-info-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.legal-info-section p {
  margin-bottom: 0.5rem;
}

.stats-section {
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 8px;

}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

/*--------------------------------------------------------------
# Features Section Styles
--------------------------------------------------------------*/
.feature-box {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));

  
}

.feature-box:hover::before {

}

.feature-box:hover {
  

  border-color: var(--accent-color);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  
}

.feature-box:hover .feature-icon-box {

}

.feature-icon-box i {
  font-size: 2rem;
  color: var(--background-color);
}

.feature-box h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-box p,
.feature-description {
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.features-cta-box {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(218, 165, 32, 0.7);

}

.features-cta-box h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-cta-box .lead {
  color: var(--default-color);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# How It Works Section Styles
--------------------------------------------------------------*/
.how-it-works {
  position: relative;
}

.step-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  
  position: relative;
  border: 2px solid transparent;
}

.step-card:hover {
  

  border-color: var(--accent-color);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background-color);

}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(177, 156, 217, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  
}

.step-card:hover .step-icon i {
  color: var(--background-color);
}

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

.step-card p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

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

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {

  font-size: 20px;
  line-height: 0;
  
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  
  cursor: pointer;
}

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

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

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--background-color);
}

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

.faq .faq-container .faq-active .faq-toggle {
  
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;

  height: 100%;
}

.contact .contact-info h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.contact .info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.contact .info-content {
  flex: 1;
}

.contact .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .info-content p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--default-color);
}

.contact .info-content a {
  color: var(--accent-color);
  text-decoration: none;
  
}

.contact .info-content a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.contact .social-links {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .social-links h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact .social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  color: var(--accent-color);
  text-decoration: none;
  
}

.contact .social-icons a:hover {
  background: var(--accent-color);
  color: var(--background-color);
  

}

.contact .social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;

}

.contact .php-email-form {
  background: transparent;
  padding: 0;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea,
.contact .php-email-form select {
  font-size: 14px;
  padding: 12px 15px;

  border-radius: 8px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  
}

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

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

}

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

.contact .form-check {
  margin-top: 10px;
}

.contact .form-check-label {
  font-size: 13px;
  color: var(--default-color);
  line-height: 1.6;
}

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

.contact .form-check-input:focus {
  border-color: var(--accent-color);

}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--background-color);
  border: 0;
  padding: 14px 40px;
  
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--heading-color);
  

}

.contact .php-email-form button[type=submit] svg {
  margin-right: 8px;
}


/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  position: relative;
}

.success-area-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  
  border: 1px solid rgba(255, 255, 255, 0.1);

  position: relative;
  overflow: hidden;
}

.success-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));

  
}

.success-area-card:hover::before {

}

.success-area-card:hover {
  

  border-color: rgba(218, 165, 32, 0.8);
  background: rgba(168, 85, 247, 0.1);
}

.success-area-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  
}

.success-area-card:hover .success-area-icon {

}

.stat-icon i {
  font-size: 2rem;
  color: var(--background-color);
}

.success-area-icon i {
  font-size: 2rem;
  color: var(--background-color);
}

.success-area-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.success-area-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.story-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  
  border: 1px solid rgba(77, 184, 125, 0.15);

}

.story-card:hover {
  

  border-color: var(--accent-color);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-avatar i {
  font-size: 1.5rem;
  color: var(--background-color);
}

.story-info {
  flex: 1;
}

.story-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.story-meta {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77, 184, 125, 0.15);
  border: 1px solid rgba(77, 184, 125, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
}

.story-badge i {
  font-size: 1rem;
}

.story-content h5 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.story-results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(77, 184, 125, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--success-color);
}

.result-item i {
  color: var(--success-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.result-item span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.success-cta {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(218, 165, 32, 0.7);

}

.success-cta h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-cta .lead {
  color: var(--default-color);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .success-area-card {
    padding: 1.5rem;
  }

  .story-card {
    padding: 2rem;
  }

  .success-cta {
    padding: 2rem 1.5rem;
  }

  .success-cta h3 {
    font-size: 1.5rem;
  }
}

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;

  background: linear-gradient(135deg, #0d4a2d 0%, #0d4a2d 100%);
  color: var(--default-color);
  border: 1px solid rgba(77, 184, 125, 0.3);
  padding: 0;
  font-family: var(--default-font);

  border-radius: 16px;
  font-size: 14px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 1000;
  display: none;
  opacity: 0;
  overflow: hidden;
  
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  z-index: 1;
}

#cookie-popup.show {
  opacity: 1;

}

#cookie-popup p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  position: relative;
}

#cookie-popup .popup-message {
  flex: 1;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  
  border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
  color: var(--heading-color);
  border-bottom-color: var(--heading-color);
}

#cookie-popup button {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
  color: var(--background-color);
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  
  align-self: flex-end;

  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  

}

#cookie-popup button:active {
  
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  
}

#cookie-popup .popup-message a:hover {
  color: #0056b3;
}

/* Cookie Popup Responsive Styles */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    
    border-radius: 12px;
    font-size: 13px;
  }

  #cookie-popup.show {
    
  }

  #cookie-popup .popup-content {
    padding: 1.25rem;
    gap: 1rem;
  }

  #cookie-popup .popup-message {
    max-width: 100%;
  }

  #cookie-popup p {
    font-size: 13px;
    line-height: 1.5;
  }

  #cookie-popup button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  #cookie-popup .popup-content {
    padding: 1rem;
    gap: 0.875rem;
  }

  #cookie-popup p {
    font-size: 12px;
  }

  #cookie-popup button {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

#features-slider {
  position: relative;
}

.swiper-slide {
  
}


.list-cards {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.card-item {
  background: var(--background-color);
  border-radius: 12px;

  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
  
  cursor: default;
  margin: 10px;
}
.card-item:hover {

  
}
.card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.card-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .list-cards {
    flex-direction: column;
  }
  .card-item {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
.page-title {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.page-title h1 {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  border-bottom: 3px solid var(--antique-border-color);
  padding-bottom: 0.5rem;
}

.page-title p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Content Styling
--------------------------------------------------------------*/
.content {
  color: var(--default-color);
  line-height: 1.8;
}

.content h2 {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--antique-border-color);
}

.content h3 {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  border-left: 3px solid var(--antique-border-color);
  padding-left: 1rem;
}

.content h4 {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.content p {
  margin-bottom: 1.2rem;
  color: var(--default-color);
}

.content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.content .contact-info {
  background: rgba(168, 85, 247, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid rgba(218, 165, 32, 0.7);
  margin: 2rem 0;
}

.content .contact-info p {
  margin-bottom: 0.5rem;
}

.content .contact-info strong {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.content .alert {
  border-radius: 15px;
  border: none;
  padding: 25px;
  margin: 2rem 0;
}

.content .alert-info {
  background: rgba(168, 85, 247, 0.1);
  color: var(--info-color);
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.content .alert-warning {
  background: rgba(168, 85, 247, 0.1);
  color: var(--warning-color);
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.content .alert h4 {
  color: inherit;
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings {
  background: rgba(77, 184, 125, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  text-align: center;
  margin: 2rem 0;
}

.content .cookie-settings h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings p {
  margin-bottom: 1.5rem;
}

.content .cookie-settings .btn {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  

}

.content .cookie-settings .btn:hover {
  

  color: var(--background-color);
}

/*--------------------------------------------------------------
# Responsive Adjustments for Content Pages
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-title p {
    font-size: 1rem;
  }
  
  .content h2 {
    font-size: 1.5rem;
  }
  
  .content h3 {
    font-size: 1.3rem;
  }
  
  .content h4 {
    font-size: 1.1rem;
  }
  
  .content .contact-info,
  .content .cookie-settings {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .page-title {
    padding: 60px 0 30px;
  }
  
  .page-title h1 {
    font-size: 1.8rem;
  }
  
  .content h2 {
    font-size: 1.4rem;
  }
  
  .content h3 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Nueva Sección: Recursos Educativos
--------------------------------------------------------------*/
.recursos {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.recursos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.recurso-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(168, 85, 247, 0.1);
  backdrop-filter: blur(20px);
  
  position: relative;
  overflow: hidden;
}

.recurso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));

  
}

.recurso-card:hover::before {

}

.recurso-card:hover {


  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

.recurso-card.featured {
  border-color: var(--accent-color);
  
  background: rgba(77, 184, 125, 0.05);
}

.recurso-card.featured::before {

}

.recurso-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  
}

.recurso-card:hover .recurso-icon {

}

.recurso-icon i {
  font-size: 2.5rem;
  color: var(--background-color);
}

.recurso-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.recurso-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 2px;
}

.recurso-card p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.recurso-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(78, 205, 196, 0.2);
  
}

.recurso-card:hover .feature-tag {
  background: rgba(218, 165, 32, 0.2);
  border-color: var(--accent-color);
  
}

.recurso-btn {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  

}

.recurso-btn:hover {
  

  color: var(--background-color);
}

/* Estadísticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  backdrop-filter: blur(20px);
  
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
  
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  
  border-color: var(--accent-color);

}

.stat-number {
  display: none !important;
}

.stat-label {
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer - Nuevo Diseño
--------------------------------------------------------------*/
.footer {
  background: var(--surface-color);
  padding: 80px 0 30px;
  color: var(--default-color);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.footersletter {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 25px;
  margin: 0 20px 60px 20px;
  position: relative;
  z-index: 2;
}

.footersletter h4 {
  color: var(--background-color);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.footersletter p {
  color: var(--background-color);
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.footersletter .newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50px;
  backdrop-filter: blur(20px);
}

.footersletter input[type="email"] {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--background-color);
}

.footersletter input[type="submit"] {
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  
}

.footersletter input[type="submit"]:hover {
  

}

.footer-top {
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}



.footer-about .footer-contact p {
  margin: 0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-about .footer-contact strong {
  color: var(--heading-color);
}

.footer-links h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links ul li {
  padding: 8px 0;
}

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

.footer-links ul li a {
  color: var(--default-color);
  
}

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

.footer-bottom {
  background: var(--background-color);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  margin: 0;
  color: var(--default-color);
}

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

/*--------------------------------------------------------------
# Responsive Design - Mejorado
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero h2 {
    font-size: 3.5rem;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 20px;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/

/* About Hero Section */
.about-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.about-hero-content {
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77, 184, 125, 0.15);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(77, 184, 125, 0.3);
}

.section-badge i {
  font-size: 0.9rem;
}

.about-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--background-color);
  font-family: var(--heading-font);
}

.highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature-item {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  text-align: center;
}

.about-feature-item:hover {
  background: rgba(77, 184, 125, 0.15);
  border-color: rgba(77, 184, 125, 0.3);
  

}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  
}

.about-feature-item:hover .about-feature-icon {

}

.about-feature-icon i {
  font-size: 1.75rem;
  color: var(--background-color);
}

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.about-feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

}

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
  
}

.image-wrapper:hover .about-hero-image {
  
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(177, 156, 217, 0.05) 100%);
  pointer-events: none;
}

/* Mission Section */
.about-mission-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.mission-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(77, 184, 125, 0.3);
  

}

.mission-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-icon i {
  font-size: 1.75rem;
  color: var(--background-color);
}

.mission-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--background-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Values Section */
.about-values-section {
  padding: 80px 0;
  background: var(--background-color);
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--background-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.value-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  
  height: 100%;
}

.value-card:hover {
  background: rgba(77, 184, 125, 0.15);
  border-color: rgba(77, 184, 125, 0.3);
  

}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  
}

.value-card:hover .value-icon {

}

.value-icon i {
  font-size: 2rem;
  color: var(--background-color);
}

.value-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Team & Legal Section */
.about-team-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.team-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.team-header {
  margin-bottom: 1.5rem;
}

.team-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--background-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.team-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.legal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.legal-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--background-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-item strong {
  color: var(--heading-color);
  font-size: 0.85rem;
}

/* Modern Mission Section Styles */
.mission-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
  position: relative;
  overflow: hidden;
}

.mission-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card-modern:hover {
  background: rgba(61, 166, 107, 0.15);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.mission-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mission-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-icon-modern i {
  font-size: 1.75rem;
  color: var(--background-color);
}

.mission-title-modern {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--background-color);
  margin: 0;
  font-family: var(--heading-font);
}

.mission-content-modern {
  position: relative;
}

.mission-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.mission-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mission-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.mission-list-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Modern Values Section Styles */
.value-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  
}

.value-card-modern:hover::before {
  opacity: 1;
}

.value-card-modern:hover {
  background: rgba(61, 166, 107, 0.15);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.value-icon-modern {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.value-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  

}

.value-card-modern:hover .value-icon-bg {

}

.value-icon-bg i {
  font-size: 2rem;
  color: var(--background-color);
}

.value-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.value-text-modern {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.section-description-center {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Modern Team Section Styles */
.team-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
}

.team-card-modern:hover {
  background: rgba(61, 166, 107, 0.1);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.team-header-modern {
  margin-bottom: 2rem;
}

.team-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--background-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.team-content-modern {
  position: relative;
}

.team-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.team-features-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item-modern {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.team-feature-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.team-feature-icon-modern i {
  font-size: 1.5rem;
  color: var(--background-color);
}

.team-feature-content-modern {
  flex: 1;
}

.team-feature-title-modern {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--background-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.team-feature-text-modern {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Modern Legal Card Styles */
.legal-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  
}

.legal-card-modern:hover {
  background: rgba(61, 166, 107, 0.1);
  border-color: rgba(61, 166, 107, 0.3);
  

}

.legal-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-icon-modern i {
  font-size: 1.5rem;
  color: var(--background-color);
}

.legal-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--background-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content-modern {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-item-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-label-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-label-modern i {
  font-size: 1rem;
  color: var(--accent-color);
}

.legal-value-modern {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  
}

.legal-value-modern:hover {
  color: var(--accent-color);
}

/* Services Page Styles */
.services-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-hero-content {
  position: relative;
}

.services-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--background-color);
  font-family: var(--heading-font);
}

.services-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.services-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item-modern {
  flex: 1;
  min-width: 12
}
/*--------------------------------------------------------------
# Features Section Styles
--------------------------------------------------------------*/
.feature-grid-modern {
  position: relative;
  padding: 2rem 0;
}

.feature-panel {
  background: linear-gradient(135deg, rgba(1, 26, 69, 0.95), rgba(0, 20, 53, 0.95));
  border-radius: 32px;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.feature-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(168, 85, 247, 0.1) 90deg,
    transparent 180deg,
    rgba(168, 85, 247, 0.1) 270deg,
    transparent 360deg
  );
  
  opacity: 0;
  
}

.feature-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 2px;
  background: linear-gradient(135deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  
}


.feature-panel:hover {

  border-color: var(--accent-color);
}

.feature-panel:hover::before {
  opacity: 1;
}

.feature-panel:hover::after {
  opacity: 1;
}

.fp-icon {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.fp-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(45deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color), 
    var(--heading-color));
  background-size: 300% 300%;
  
  z-index: -1;
  opacity: 0;
  
}

.fp-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 36px;
  background: radial-gradient(circle, 
    rgba(45, 134, 89, 0.6) 0%, 
    rgba(45, 134, 89, 0.4) 50%, 
    transparent 100%);
  opacity: 0;
  filter: blur(20px);
  
  z-index: -2;
  
}



.feature-panel:hover .fp-icon {
}

.feature-panel:hover .fp-icon::before {
  opacity: 1;
}

.feature-panel:hover .fp-icon::after {
  opacity: 0.8;
  
}

.fp-icon i {
  font-size: 3rem;
  color: var(--background-color);
  
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.feature-panel:hover .fp-icon i {

  filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.5));
}

.feature-panel h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(45, 134, 89, 0.3);
  letter-spacing: -0.5px;
}

.feature-panel:hover h3 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color));
  background-size: 200% 200%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}


.feature-panel p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--default-color);
  opacity: 0.85;
  margin-bottom: 2rem;
  flex: 1;
  
  position: relative;
  z-index: 2;
}

.feature-panel:hover p {
  opacity: 1;
  
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.fp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 2;
}

.fp-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  color: var(--default-color);
  font-size: 1rem;
  opacity: 0.8;
  
  
  background: rgba(218, 165, 32, 0.05);
  border-radius: 12px;
  border-left: 3px solid transparent;
}

.feature-panel:hover .fp-list li {
  opacity: 1;
  
  background: rgba(45, 134, 89, 0.15);
  border-left-color: var(--accent-color);

}

.fp-list li:nth-child(1) { transition-delay: 0.1s; }
.fp-list li:nth-child(2) { transition-delay: 0.2s; }
.fp-list li:nth-child(3) { transition-delay: 0.3s; }

.fp-list i {
  color: var(--success-color);
  font-size: 1.3rem;
  
  filter: drop-shadow(0 2px 5px rgba(45, 134, 89, 0.3));
}

.feature-panel:hover .fp-list i {

  color: var(--accent-color);
  filter: drop-shadow(0 4px 15px rgba(45, 134, 89, 0.6));
}

.metric-bar {
  height: 12px;
  background: rgba(45, 134, 89, 0.15);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(218, 165, 32, 0.2);
  z-index: 2;
}

.metric-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%);
  background-size: 200% 100%;
  border-radius: 999px;
  position: relative;
  width: 0;
}

.metric-bar > span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 50%, 
    transparent 100%);
  
}



.feature-panel:hover .metric-bar > span {
  width: var(--target-width, 85%);
  
}

/*--------------------------------------------------------------
# Success Stories Section Styles
--------------------------------------------------------------*/
.success-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.metric-card {
  background: linear-gradient(135deg, rgba(1, 26, 69, 0.9), rgba(0, 20, 53, 0.9));
  border: 2px solid transparent;
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
}

.metric-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(45deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color), 
    var(--heading-color));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  
  
}

.metric-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(45, 134, 89, 0.15) 60deg,
    transparent 120deg,
    rgba(45, 134, 89, 0.15) 240deg,
    transparent 360deg
  );
  opacity: 0;
  
  
}


.metric-card:hover {

  border-color: var(--accent-color);


}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card:hover::after {
  opacity: 1;
}

.metric-value {
  display: none !important;
}

.metric-status {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.metric-icon-small {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.3), rgba(61, 166, 107, 0.2));
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.metric-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}





.metric-label {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.75;
  font-weight: 600;
  
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-card:hover .metric-label {
  opacity: 1;
  color: var(--heading-color);
  
  text-shadow: 0 2px 10px rgba(45, 134, 89, 0.3);
}

.success-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  background: linear-gradient(135deg, rgba(1, 26, 69, 0.95), rgba(0, 20, 53, 0.95));
  border: 2px solid transparent;
  border-radius: 28px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%);
  background-size: 100% 200%;

  transform-origin: top;
  

}

.timeline-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  
  
}

.timeline-item:hover {

  border-color: var(--accent-color);

}

.timeline-item:hover::before {

  
}

.timeline-item:hover::after {
  opacity: 1;
}


.timeline-date {
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  
  position: relative;
  z-index: 2;
  display: inline-block;
}

.timeline-item:hover .timeline-date {
  
  
  filter: drop-shadow(0 0 10px rgba(45, 134, 89, 0.5));
}


.timeline-item h4 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.timeline-item:hover h4 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color));
  background-size: 200% 200%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}


.timeline-item p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--default-color);
  opacity: 0.85;
  margin: 0;
  
  position: relative;
  z-index: 2;
}

.timeline-item:hover p {
  opacity: 1;
  
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

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

@media (max-width: 576px) {
  .success-metrics {
    grid-template-columns: 1fr;
  }
  
  .feature-panel {
    padding: 2rem;
  }
  
  .fp-icon {
    width: 64px;
    height: 64px;
  }
  
  .fp-icon i {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# FORCE OVERRIDE - EPIC Features & Success Styles
--------------------------------------------------------------*/
.feature-grid-modern .feature-panel,
.feature-box {
  background: linear-gradient(135deg, rgba(1, 26, 69, 0.98), rgba(0, 20, 53, 0.98)) !important;
  padding: 3.5rem !important;
  border-radius: 36px !important;
  height: 100% !important;
  
  border: 2px solid transparent !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(30px) !important;
  transform-style: preserve-3d !important;
}

.feature-grid-modern .feature-panel::before,
.feature-box::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(218, 165, 32, 0.2) 90deg,
    transparent 180deg,
    rgba(218, 165, 32, 0.2) 270deg,
    transparent 360deg
  ) !important;
  
  opacity: 0 !important;
  
}

.feature-grid-modern .feature-panel::after,
.feature-box::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 36px !important;
  padding: 3px !important;
  background: linear-gradient(135deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%) !important;
  background-size: 400% 400% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  
  
}

.feature-grid-modern .feature-panel:hover,
.feature-box:hover {

  border-color: var(--accent-color) !important;
}

.feature-grid-modern .feature-panel:hover::before,
.feature-box:hover::before {
  opacity: 1 !important;
}

.feature-grid-modern .feature-panel:hover::after,
.feature-box:hover::after {
  opacity: 1 !important;
}

.feature-grid-modern .fp-icon,
.feature-icon-box {
  width: 120px !important;
  height: 120px !important;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color)) !important;
  border-radius: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 2.5rem !important;
  
  position: relative !important;

  z-index: 2 !important;
  overflow: hidden !important;
}

.feature-grid-modern .fp-icon::before,
.feature-icon-box::before {
  content: '' !important;
  position: absolute !important;
  inset: -4px !important;
  border-radius: 36px !important;
  background: linear-gradient(45deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color), 
    var(--heading-color)) !important;
  background-size: 500% 500% !important;
  
  z-index: -1 !important;
  opacity: 0 !important;
  
}

.feature-grid-modern .fp-icon::after,
.feature-icon-box::after {
  content: '' !important;
  position: absolute !important;
  inset: -15px !important;
  border-radius: 45px !important;
  background: radial-gradient(circle, 
    rgba(45, 134, 89, 0.8) 0%, 
    rgba(45, 134, 89, 0.6) 50%, 
    transparent 100%) !important;
  opacity: 0 !important;
  filter: blur(30px) !important;
  
  z-index: -2 !important;
  
}

.feature-grid-modern .feature-panel:hover .fp-icon,
.feature-box:hover .feature-icon-box {


}

.feature-grid-modern .feature-panel:hover .fp-icon::before,
.feature-box:hover .feature-icon-box::before {
  opacity: 1 !important;
}

.feature-grid-modern .feature-panel:hover .fp-icon::after,
.feature-box:hover .feature-icon-box::after {
  opacity: 1 !important;

}

.feature-grid-modern .fp-icon i,
.feature-icon-box i {
  font-size: 4rem !important;
  color: var(--contrast-color) !important;
  
  position: relative !important;
  z-index: 1 !important;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5)) !important;
}

.feature-grid-modern .feature-panel:hover .fp-icon i,
.feature-box:hover .feature-icon-box i {

  filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.8)) !important;
}

.feature-grid-modern .feature-panel h3,
.feature-box h3 {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 1.75rem !important;
  
  position: relative !important;
  z-index: 2 !important;
  text-shadow: 0 0 50px rgba(45, 134, 89, 0.5) !important;
  letter-spacing: -1px !important;
  line-height: 1.2 !important;
}

.feature-grid-modern .feature-panel:hover h3,
.feature-box:hover h3 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color)) !important;
  background-size: 200% 200% !important;
  
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;

}

.feature-grid-modern .feature-panel p,
.feature-box p,
.feature-description {
  color: var(--default-color) !important;
  opacity: 0.9 !important;
  margin-bottom: 2.5rem !important;
  line-height: 2 !important;
  font-size: 1.2rem !important;
  
  position: relative !important;
  z-index: 2 !important;
}

.feature-grid-modern .feature-panel:hover p,
.feature-box:hover p {
  opacity: 1 !important;

  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2) !important;
}

.feature-grid-modern .fp-list,
.feature-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 2.5rem 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

.feature-grid-modern .fp-list li,
.feature-list li {
  padding: 1.25rem 1.5rem !important;
  margin: 1rem 0 !important;
  color: var(--default-color) !important;
  opacity: 0.85 !important;
  display: flex !important;
  align-items: center !important;
  font-size: 1.1rem !important;
  

  background: rgba(168, 85, 247, 0.1) !important;
  border-radius: 16px !important;
  border-left: 5px solid transparent !important;

}

.feature-grid-modern .feature-panel:hover .fp-list li,
.feature-box:hover .feature-list li {
  opacity: 1 !important;

  background: rgba(45, 134, 89, 0.25) !important;
  border-left-color: var(--accent-color) !important;

}

.feature-grid-modern .fp-list li:nth-child(1),
.feature-list li:nth-child(1) { transition-delay: 0.15s !important; }
.feature-grid-modern .fp-list li:nth-child(2),
.feature-list li:nth-child(2) { transition-delay: 0.3s !important; }
.feature-grid-modern .fp-list li:nth-child(3),
.feature-list li:nth-child(3) { transition-delay: 0.45s !important; }

.feature-grid-modern .fp-list i,
.feature-list li i {
  color: var(--success-color) !important;
  margin-right: 1.25rem !important;
  font-size: 1.5rem !important;
  
  filter: drop-shadow(0 4px 10px rgba(45, 134, 89, 0.5)) !important;
}

.feature-grid-modern .feature-panel:hover .fp-list i,
.feature-box:hover .feature-list li i {

  color: var(--accent-color) !important;
  filter: drop-shadow(0 8px 25px rgba(45, 134, 89, 0.8)) !important;
}

.feature-grid-modern .metric-bar {
  height: 14px !important;
  background: rgba(218, 165, 32, 0.2) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  position: relative !important;
  border: 2px solid rgba(45, 134, 89, 0.3) !important;

  z-index: 2 !important;
}

.feature-grid-modern .metric-bar > span {
  display: block !important;
  height: 100% !important;
  background: linear-gradient(90deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%) !important;
  background-size: 200% 100% !important;
  border-radius: 999px !important;
  position: relative !important;
  width: 0 !important;

  
}

.feature-grid-modern .metric-bar > span::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.5) 50%, 
    transparent 100%) !important;
  
}

.feature-grid-modern .feature-panel:hover .metric-bar > span {
  width: var(--target-width, 85%) !important;
  
}

/* Success Stories Override */
.success-metrics .metric-card {
  background: linear-gradient(135deg, rgba(1, 26, 69, 0.95), rgba(0, 20, 53, 0.95)) !important;
  border: 2px solid transparent !important;
  border-radius: 32px !important;
  padding: 3rem !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  

  backdrop-filter: blur(25px) !important;
  transform-style: preserve-3d !important;
}

.success-metrics .metric-card::before {
  content: '' !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: 35px !important;
  padding: 3px !important;
  background: linear-gradient(45deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color), 
    var(--heading-color)) !important;
  background-size: 400% 400% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  
  
}

.success-metrics .metric-card::after {
  content: '' !important;
  position: absolute !important;
  top: -100% !important;
  left: -100% !important;
  width: 300% !important;
  height: 300% !important;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(218, 165, 32, 0.2) 60deg,
    transparent 120deg,
    rgba(218, 165, 32, 0.2) 240deg,
    transparent 360deg
  ) !important;
  opacity: 0 !important;
  
  
}

.success-metrics .metric-card:hover {

  border-color: var(--accent-color) !important;

}

.success-metrics .metric-card:hover::before {
  opacity: 1 !important;
}

.success-metrics .metric-card:hover::after {
  opacity: 1 !important;
}

.success-metrics .metric-value {
  display: none !important;
}

.success-metrics .metric-icon-small {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.3), rgba(61, 166, 107, 0.2));
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.success-metrics .metric-box:hover .metric-icon-small {
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.5), rgba(61, 166, 107, 0.4));
  border-color: var(--antique-text-color);
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.success-metrics .metric-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}

.success-metrics .metric-card:hover .metric-value {

  
}

.success-metrics .metric-label {
  font-size: 1.1rem !important;
  color: var(--default-color) !important;
  opacity: 0.8 !important;
  font-weight: 700 !important;
  
  position: relative !important;
  z-index: 2 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.success-metrics .metric-card:hover .metric-label {
  opacity: 1 !important;
  color: var(--heading-color) !important;

  text-shadow: 0 3px 15px rgba(45, 134, 89, 0.4) !important;
}

.success-timeline .timeline-item {
  background: linear-gradient(135deg, rgba(1, 26, 69, 0.98), rgba(0, 20, 53, 0.98)) !important;
  border: 2px solid transparent !important;
  border-radius: 32px !important;
  padding: 3rem !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  
  backdrop-filter: blur(25px) !important;
  transform-style: preserve-3d !important;
}

.success-timeline .timeline-item::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 8px !important;
  height: 100% !important;
  background: linear-gradient(180deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%) !important;
  background-size: 100% 200% !important;

  transform-origin: top !important;
  

  z-index: 1 !important;
}

.success-timeline .timeline-item::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 32px !important;
  padding: 3px !important;
  background: linear-gradient(135deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color)) !important;
  background-size: 400% 400% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  
  
}

.success-timeline .timeline-item:hover {

  border-color: var(--accent-color) !important;
}

.success-timeline .timeline-item:hover::before {

  
}

.success-timeline .timeline-item:hover::after {
  opacity: 1 !important;
}

.success-timeline .timeline-date {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 1.5rem !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  
  position: relative !important;
  z-index: 2 !important;
  display: inline-block !important;
}

.success-timeline .timeline-item:hover .timeline-date {

  
  filter: drop-shadow(0 0 15px rgba(45, 134, 89, 0.6)) !important;
}

.success-timeline .timeline-item h4 {
  font-size: 2rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 1.5rem !important;
  
  position: relative !important;
  z-index: 2 !important;
  line-height: 1.3 !important;
}

.success-timeline .timeline-item:hover h4 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color)) !important;
  background-size: 200% 200% !important;
  
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;

}

.success-timeline .timeline-item p {
  font-size: 1.2rem !important;
  line-height: 2 !important;
  color: var(--default-color) !important;
  opacity: 0.9 !important;
  margin: 0 !important;
  
  position: relative !important;
  z-index: 2 !important;
}

.success-timeline .timeline-item:hover p {
  opacity: 1 !important;

  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.98) !important;
}

/*==============================================================
# EPIC FEATURES SECTION - COMPLETE REDESIGN
==============================================================*/
.features-epic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 3rem 0;
}

.feature-card-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.95), rgba(0, 20, 53, 0.95));
  border-radius: 40px;
  padding: 3.5rem;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(45, 134, 89, 0.15);
  backdrop-filter: blur(30px);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.feature-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.3) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
}

.feature-card-epic:hover {

  border-color: var(--accent-color);

}

.feature-card-epic:hover .feature-glow {
  opacity: 1;
  
}


.feature-icon-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 2.5rem;
  z-index: 2;
}

.feature-icon-bg {
  position: absolute;
  inset: -8px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  opacity: 0.3;
  filter: blur(20px);
  
  
}


.feature-icon-wrapper i {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--background-color);
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 32px;
  
  z-index: 1;
}

.feature-card-epic:hover .feature-icon-wrapper i {

  filter: drop-shadow(0 8px 30px rgba(255, 255, 255, 0.6));
}

.feature-card-epic:hover .feature-icon-bg {
  opacity: 0.8;
  
  filter: blur(30px);
}

.feature-content-wrapper {
  position: relative;
  z-index: 2;
}

.feature-card-epic h3 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-align: center;
  
  letter-spacing: -1px;
}

.feature-card-epic:hover h3 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color));
  background-size: 200% 200%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}

.feature-card-epic p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 2rem;
  text-align: center;
  
}

.feature-card-epic:hover p {
  opacity: 1;
  
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.feature-list-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 18px;
  border-left: 5px solid transparent;
  
  opacity: 0.85;
  

}

.feature-card-epic:hover .feature-item {
  
  opacity: 1;
  background: rgba(45, 134, 89, 0.25);
  border-left-color: var(--accent-color);

}

.feature-item:nth-child(1) { transition-delay: 0.2s; }
.feature-item:nth-child(2) { transition-delay: 0.35s; }
.feature-item:nth-child(3) { transition-delay: 0.5s; }

.feature-item i {
  font-size: 1.6rem;
  color: var(--success-color);
  
  filter: drop-shadow(0 4px 10px rgba(45, 134, 89, 0.5));
}

.feature-card-epic:hover .feature-item i {

  color: var(--accent-color);
  filter: drop-shadow(0 8px 25px rgba(45, 134, 89, 0.8));
}

.feature-item span {
  font-size: 1.1rem;
  color: var(--default-color);
  font-weight: 500;
}

.progress-modern {
  height: 16px;
  background: rgba(218, 165, 32, 0.2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(45, 134, 89, 0.3);

}

.progress-bar-modern {
  height: 100%;
  background: linear-gradient(90deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%);
  background-size: 200% 100%;
  border-radius: 999px;
  width: 0;
  
  position: relative;

  
}

.progress-bar-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.6) 50%, 
    transparent 100%);
  
}

.feature-card-epic:hover .progress-bar-modern {
  width: var(--progress-width, 85%);
}

/*==============================================================
# EPIC SUCCESS STORIES SECTION - COMPLETE REDESIGN
==============================================================*/
.success-metrics-epic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.metric-card-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.95), rgba(0, 20, 53, 0.95));
  border-radius: 35px;
  padding: 3rem 2.5rem;
  text-align: center;
  overflow: hidden;
  border: 2px solid rgba(45, 134, 89, 0.15);
  backdrop-filter: blur(30px);
  transform-style: preserve-3d;
}

.metric-glow {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(45, 134, 89, 0.25) 60deg,
    transparent 120deg,
    rgba(45, 134, 89, 0.25) 240deg,
    transparent 360deg
  );
  opacity: 0;
  
  
  pointer-events: none;
}

.metric-card-epic::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 38px;
  padding: 3px;
  background: linear-gradient(45deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color), 
    var(--heading-color));
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  
  
}

.metric-card-epic:hover {

  border-color: var(--accent-color);

}

.metric-card-epic:hover .metric-glow {
  opacity: 1;
}

.metric-card-epic:hover::before {
  opacity: 1;
}

.metric-icon-epic {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 24px;

  
  position: relative;
  z-index: 2;
}

.metric-icon-epic i {
  font-size: 2.5rem;
  color: var(--background-color);
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
  
}


.metric-card-epic:hover .metric-icon-epic i {
  
  filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.6));
}

.metric-value-epic {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(45, 134, 89, 0.5));
  
}

.metric-card-epic:hover .metric-value-epic {
  
  
  filter: drop-shadow(0 0 50px rgba(45, 134, 89, 0.8));
}

.metric-label-epic {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.85;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
  
}

.metric-card-epic:hover .metric-label-epic {
  opacity: 1;
  color: var(--heading-color);
  
  text-shadow: 0 4px 20px rgba(45, 134, 89, 0.4);
}

.success-timeline-epic {
  position: relative;
  padding: 2rem 0;
}

.timeline-card-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.98), rgba(0, 20, 53, 0.98));
  border-radius: 35px;
  padding: 3.5rem;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(45, 134, 89, 0.15);
  

  backdrop-filter: blur(30px);
  transform-style: preserve-3d;
}

.timeline-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.3) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
}

.timeline-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%);
  background-size: 100% 200%;

  transform-origin: top;
  

  z-index: 1;
}

.timeline-card-epic::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 35px;
  padding: 3px;
  background: linear-gradient(135deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color));
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  
  
}

.timeline-card-epic:hover {

  border-color: var(--accent-color);

}

.timeline-card-epic:hover .timeline-glow {
  opacity: 1;
  
}


.timeline-card-epic:hover::before {
  opacity: 1;
}

.timeline-date-epic {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
  
  display: inline-block;
}

.timeline-card-epic:hover .timeline-date-epic {
  
  
  filter: drop-shadow(0 0 15px rgba(45, 134, 89, 0.6));
}

.timeline-card-epic h4 {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  
}

.timeline-card-epic:hover h4 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color));
  background-size: 200% 200%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}

.timeline-card-epic p {
  font-size: 1.2rem;
  line-height: 2;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
  position: relative;
  z-index: 2;
  
}

.timeline-card-epic:hover p {
  opacity: 1;
  
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.98);
}

@media (max-width: 1200px) {
  .features-epic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .success-metrics-epic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-epic-grid {
    grid-template-columns: 1fr;
  }
  .success-metrics-epic {
    grid-template-columns: 1fr;
  }
  .feature-card-epic,
  .metric-card-epic,
  .timeline-card-epic {
    padding: 2.5rem;
  }
  .feature-icon-wrapper {
    width: 100px;
    height: 100px;
  }
  .feature-icon-wrapper i {
    font-size: 3.5rem;
  }
}

/*==============================================================
# FORCE OVERRIDE SUCCESS STORIES - MAXIMUM PRIORITY
==============================================================*/
#success-stories .success-metrics-epic {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
  margin-bottom: 4rem !important;
  padding: 2rem 0 !important;
}

#success-stories .metric-card-epic {
  position: relative !important;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.95), rgba(0, 20, 53, 0.95)) !important;
  border-radius: 35px !important;
  padding: 3rem 2.5rem !important;
  text-align: center !important;
  overflow: hidden !important;
  border: 2px solid rgba(45, 134, 89, 0.15) !important;
  backdrop-filter: blur(30px) !important;
  transform-style: preserve-3d !important;
}

#success-stories .metric-glow {
  position: absolute !important;
  top: -100% !important;
  left: -100% !important;
  width: 300% !important;
  height: 300% !important;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(45, 134, 89, 0.3) 60deg,
    transparent 120deg,
    rgba(45, 134, 89, 0.3) 240deg,
    transparent 360deg
  ) !important;
  opacity: 0 !important;
  
  
  pointer-events: none !important;
}

#success-stories .metric-card-epic::before {
  content: '' !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: 38px !important;
  padding: 3px !important;
  background: linear-gradient(45deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color), 
    var(--heading-color)) !important;
  background-size: 400% 400% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  
  
}

#success-stories .metric-card-epic:hover {

  border-color: var(--accent-color) !important;
}

#success-stories .metric-card-epic:hover .metric-glow {
  opacity: 1 !important;
}

#success-stories .metric-card-epic:hover::before {
  opacity: 1 !important;
}

#success-stories .metric-icon-epic {
  width: 90px !important;
  height: 90px !important;
  margin: 0 auto 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color)) !important;
  border-radius: 26px !important;
  position: relative !important;
  z-index: 2 !important;
}

#success-stories .metric-icon-epic i {
  font-size: 3rem !important;
  color: var(--contrast-color) !important;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) !important;
  
}

#success-stories .metric-card-epic:hover .metric-icon-epic i {

  filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.7)) !important;
}

#success-stories .metric-value-epic {
  font-size: 5.5rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1 !important;
  margin-bottom: 1.5rem !important;
  position: relative !important;
  z-index: 2 !important;
  
}

#success-stories .metric-card-epic:hover .metric-value-epic {

  
}

#success-stories .metric-label-epic {
  font-size: 1.15rem !important;
  color: var(--default-color) !important;
  opacity: 0.9 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  position: relative !important;
  z-index: 2 !important;
  
}

#success-stories .metric-card-epic:hover .metric-label-epic {
  opacity: 1 !important;
  color: var(--heading-color) !important;

}

#success-stories .success-timeline-epic {
  position: relative !important;
  padding: 2.5rem 0 !important;
}

#success-stories .timeline-card-epic {
  position: relative !important;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.98), rgba(0, 20, 53, 0.98)) !important;
  border-radius: 38px !important;
  padding: 4rem !important;
  height: 100% !important;
  overflow: hidden !important;
  border: 2px solid rgba(45, 134, 89, 0.15) !important;
  

  backdrop-filter: blur(35px) !important;
  transform-style: preserve-3d !important;
}

#success-stories .timeline-glow {
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.35) 0%, transparent 70%) !important;
  opacity: 0 !important;
  
  pointer-events: none !important;
}

#success-stories .timeline-accent {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 12px !important;
  height: 100% !important;
  background: linear-gradient(180deg, 
    var(--accent-color) 0%, 
    var(--heading-color) 50%, 
    var(--accent-color) 100%) !important;
  background-size: 100% 200% !important;

  transform-origin: top !important;
  

  z-index: 1 !important;
}

#success-stories .timeline-card-epic::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 38px !important;
  padding: 3px !important;
  background: linear-gradient(135deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color)) !important;
  background-size: 400% 400% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  
  
}

#success-stories .timeline-card-epic:hover {

  border-color: var(--accent-color) !important;

}

#success-stories .timeline-card-epic:hover .timeline-glow {
  opacity: 1 !important;
  
}

#success-stories .timeline-card-epic:hover::before {
  opacity: 1 !important;
}

#success-stories .timeline-date-epic {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 1.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
  position: relative !important;
  z-index: 2 !important;
  
  display: inline-block !important;
}

#success-stories .timeline-card-epic:hover .timeline-date-epic {

  
  filter: drop-shadow(0 0 20px rgba(45, 134, 89, 0.7)) !important;
}

#success-stories .timeline-card-epic h4 {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 1.75rem !important;
  position: relative !important;
  z-index: 2 !important;
  line-height: 1.3 !important;
  
}

#success-stories .timeline-card-epic:hover h4 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color)) !important;
  background-size: 200% 200% !important;
  
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;

}

#success-stories .timeline-card-epic p {
  font-size: 1.25rem !important;
  line-height: 2.1 !important;
  color: var(--default-color) !important;
  opacity: 0.95 !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 2 !important;
  
}

#success-stories .timeline-card-epic:hover p {
  opacity: 1 !important;

  text-shadow: 0 5px 25px rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 1) !important;
}

/*==============================================================
# EPIC PRICING SECTION - COMPLETE REDESIGN
==============================================================*/
.pricing-epic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 3rem 0;
}

.pricing-card-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.98), rgba(0, 20, 53, 0.98));
  border-radius: 40px;
  padding: 3.5rem;
  overflow: hidden;
  border: 2px solid rgba(45, 134, 89, 0.15);
  

  backdrop-filter: blur(35px);
  transform-style: preserve-3d;
}

.pricing-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.3) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
  
}

.pricing-card-epic:hover {

  border-color: var(--accent-color);

}

.pricing-card-epic:hover .pricing-glow {
  opacity: 1;
}

.pricing-card-epic.featured-epic {
  border-color: var(--accent-color);

}

.pricing-card-epic.featured-epic::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 43px;
  padding: 3px;
  background: linear-gradient(135deg, 
    var(--accent-color), 
    var(--heading-color), 
    var(--accent-color));
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 1;
  
  z-index: -1;
}

.popular-badge-epic {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  z-index: 3;
  
}


.pricing-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(218, 165, 32, 0.2);
  color: var(--heading-color);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(45, 134, 89, 0.3);
  z-index: 3;
}

.pricing-header-epic {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.pricing-header-epic h3 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  
}

.pricing-card-epic:hover .pricing-header-epic h3 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color));
  background-size: 200% 200%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}

.price-epic {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.currency-epic {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.amount-epic {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  
}

.pricing-card-epic:hover .amount-epic {
  
  
}

.period-epic {
  font-size: 1.5rem;
  color: var(--default-color);
  opacity: 0.8;
}

.price-description-epic {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

.pricing-features-epic {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.feature-item-epic {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  border-left: 4px solid transparent;
  
  opacity: 0.85;
  
}

.pricing-card-epic:hover .feature-item-epic {
  
  opacity: 1;
  background: rgba(218, 165, 32, 0.2);
  border-left-color: var(--accent-color);

}

.feature-item-epic.disabled {
  opacity: 0.5;
  background: rgba(100, 100, 100, 0.1);
}

.feature-item-epic i {
  font-size: 1.4rem;
  color: var(--success-color);
  margin-top: 0.25rem;
  
  flex-shrink: 0;
}

.feature-item-epic.disabled i {
  color: var(--danger-color);
}

.pricing-card-epic:hover .feature-item-epic:not(.disabled) i {

  color: var(--accent-color);
}

.feature-item-epic span {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.pricing-footer-epic {
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-pricing-epic {
  display: inline-block;
  width: 100%;
  padding: 1.25rem 2rem;
  background: rgba(45, 134, 89, 0.15);
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  
  position: relative;
  overflow: hidden;
}

.btn-pricing-epic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  opacity: 0;
  
  z-index: -1;
}

.btn-pricing-epic:hover {
  color: var(--background-color);


}

.btn-pricing-epic:hover::before {
  opacity: 1;
}

.btn-pricing-epic.primary {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);

}

.btn-pricing-epic.primary:hover {


}

.pricing-note {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}

/*==============================================================
# EPIC PROGRAM SLIDER SECTION - COMPLETE REDESIGN
==============================================================*/
.program-swiper-epic {
  padding: 3rem 0;
  overflow: visible;
}

.program-card-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.98), rgba(0, 20, 53, 0.98));
  border-radius: 40px;
  padding: 4rem;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(45, 134, 89, 0.15);
  

  backdrop-filter: blur(35px);
  transform-style: preserve-3d;
}

.program-glow-epic {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.3) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
}

.program-card-epic:hover {

  border-color: var(--accent-color);

}

.program-card-epic:hover .program-glow-epic {
  opacity: 1;
  
}

.program-icon-epic {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 2.5rem;
  z-index: 2;
}

.program-icon-bg-epic {
  position: absolute;
  inset: -10px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  opacity: 0.3;
  filter: blur(25px);
  
  
}

.program-icon-epic i {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--background-color);
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 35px;

  
  z-index: 1;
}

.program-card-epic:hover .program-icon-epic i {

  filter: drop-shadow(0 8px 30px rgba(255, 255, 255, 0.6));
}

.program-card-epic:hover .program-icon-bg-epic {
  opacity: 0.8;
  
  filter: blur(35px);
}

.program-card-epic h3 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-align: center;
  
  position: relative;
  z-index: 2;
  letter-spacing: -1px;
}

.program-card-epic:hover h3 {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color));
  background-size: 200% 200%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}

.program-subtitle-epic {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--default-color);
  opacity: 0.9;
  text-align: center;
  margin-bottom: 2.5rem;
  font-style: italic;
  position: relative;
  z-index: 2;
  
}

.program-card-epic:hover .program-subtitle-epic {
  opacity: 1;
  
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.program-features-epic {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.program-feature-item-epic {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  border-left: 5px solid transparent;
  
  opacity: 0.85;
  

}

.program-card-epic:hover .program-feature-item-epic {
  
  opacity: 1;
  background: rgba(45, 134, 89, 0.25);
  border-left-color: var(--accent-color);

}

.program-feature-item-epic:nth-child(1) { transition-delay: 0.15s; }
.program-feature-item-epic:nth-child(2) { transition-delay: 0.3s; }
.program-feature-item-epic:nth-child(3) { transition-delay: 0.45s; }

.program-feature-item-epic i {
  font-size: 1.6rem;
  color: var(--success-color);
  margin-top: 0.25rem;
  
  flex-shrink: 0;
}

.program-card-epic:hover .program-feature-item-epic i {

  color: var(--accent-color);
}

.program-feature-item-epic strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  
}

.program-card-epic:hover .program-feature-item-epic strong {
  color: var(--accent-color);
}

.program-feature-item-epic p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
  
}

.program-card-epic:hover .program-feature-item-epic p {
  opacity: 1;
}

.program-stats-epic {
  display: flex;
  justify-content: space-around;
  padding-top: 2rem;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.stat-item-epic {
  text-align: center;
  flex: 1;
  
}


.stat-value-epic {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  
}

.program-card-epic:hover .stat-value-epic {
  
  
}

.stat-label-epic {
  display: block;
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  
}

.program-card-epic:hover .stat-label-epic {
  opacity: 1;
}

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

@media (max-width: 768px) {
  .pricing-epic-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card-epic,
  .program-card-epic {
    padding: 2.5rem;
  }
  .program-icon-epic {
    width: 110px;
    height: 110px;
  }
  .program-icon-epic i {
    font-size: 4rem;
  }
}

/*==============================================================
# EPIC COOKIE BANNER - COMPLETE REDESIGN
==============================================================*/
/*==============================================================
# COOKIE BANNER STYLES
==============================================================*/

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-content {
  position: relative;
  background: linear-gradient(145deg, rgba(61, 40, 23, 0.98), rgba(93, 58, 26, 0.98));
  border-top: 3px solid rgba(218, 165, 32, 0.7);
  padding: 2rem 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
  z-index: 1;
}

.cookie-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(218, 165, 32, 0.4);
  border-radius: 16px;
  flex-shrink: 0;
}

.cookie-icon i {
  font-size: 2rem;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 0.75rem;
}

.cookie-text p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

.cookie-text a {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-cookie-accept,
.btn-cookie-settings {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--antique-text-color), rgba(218, 165, 32, 0.8));
  border-color: var(--antique-text-color);
  color: var(--background-color);
}

.btn-cookie-accept:hover {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.8), var(--antique-text-color));
}

.btn-cookie-accept i {
  font-size: 1.125rem;
}

.btn-cookie-settings {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(218, 165, 32, 0.4);
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.btn-cookie-settings:hover {
  background: rgba(218, 165, 32, 0.2);
  border-color: var(--antique-text-color);
}

.btn-cookie-settings i {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .cookie-content {
    padding: 1.5rem;
  }
  
  .cookie-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cookie-icon {
    width: 50px;
    height: 50px;
  }
  
  .cookie-icon i {
    font-size: 1.75rem;
  }
  
  .cookie-text h4 {
    font-size: 1.125rem;
  }
  
  .cookie-text p {
    font-size: 0.875rem;
  }
  
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-cookie-accept,
  .btn-cookie-settings {
    width: 100%;
    justify-content: center;
  }
}

/*==============================================================
# EPIC ABOUT PAGE STYLES
==============================================================*/
.about-features-epic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.9), rgba(0, 20, 53, 0.9));
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(45, 134, 89, 0.15);
  

  backdrop-filter: blur(25px);
  overflow: hidden;
}

.about-feature-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
}

.about-feature-epic:hover {

  border-color: var(--accent-color);
}

.about-feature-epic:hover .about-feature-glow {
  opacity: 1;
}

.about-feature-icon-epic {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 20px;

  
  position: relative;
  z-index: 2;
}


.about-feature-icon-epic i {
  font-size: 2.5rem;
  color: var(--background-color);
  
}


.about-feature-title-epic {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  
}

.about-feature-epic:hover .about-feature-title-epic {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color));
  background-size: 200% 200%;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
}

.about-feature-text-epic {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
  position: relative;
  z-index: 2;
  
}

.about-feature-epic:hover .about-feature-text-epic {
  opacity: 1;
  
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/*==============================================================
# EPIC PAGE STYLES - Contact, FAQ, Legal Pages
==============================================================*/
.page-content-epic {
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.95), rgba(0, 20, 53, 0.95));
  border-radius: 32px;
  padding: 4rem;
  margin: 3rem 0;
  border: 2px solid rgba(45, 134, 89, 0.15);

  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
}

.page-content-epic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));

  transform-origin: left;
  
}

.page-content-epic:hover::before {

}

.page-content-epic h1,
.page-content-epic h2 {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.page-content-epic h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-content-epic p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.page-content-epic ul,
.page-content-epic ol {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.page-content-epic li {
  margin-bottom: 0.75rem;
}

.contact-form-epic {
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.95), rgba(0, 20, 53, 0.95));
  border-radius: 32px;
  padding: 3.5rem;
  backdrop-filter: blur(30px);
}

.form-group-epic {
  margin-bottom: 2rem;
}

.form-group-epic label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.form-group-epic input,
.form-group-epic textarea,
.form-group-epic select {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(218, 165, 32, 0.2);
  border-radius: 16px;
  color: var(--default-color);
  font-size: 1rem;
  
  font-family: var(--default-font);
}

.form-group-epic select option {
  background: var(--surface-color);
  color: var(--antique-gold) !important;
  padding: 0.75rem;
  font-weight: 500;
}

/* Dark text for select options on contact page */
.contact-form-epic select option {
  background: var(--surface-color);
  color: var(--antique-gold) !important;
  padding: 0.75rem 1rem;
}

.form-group-epic input:focus,
.form-group-epic textarea:focus,
.form-group-epic select:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(45, 134, 89, 0.15);
}

.btn-submit-epic {
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border: none;
  border-radius: 30px;
  color: var(--background-color);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  

  position: relative;
  overflow: hidden;
}

.btn-submit-epic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  opacity: 0;
  
  z-index: -1;
}


.btn-submit-epic:hover::before {
  opacity: 1;
}

.faq-item-epic {
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.9), rgba(0, 20, 53, 0.9));
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(45, 134, 89, 0.15);
  

  backdrop-filter: blur(25px);
  cursor: pointer;
}

.faq-item-epic:hover {
  
  border-color: var(--accent-color);

}

.faq-question-epic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq-question-epic i {
  color: var(--accent-color);
  
}

.faq-item-epic.active .faq-question-epic i {
  
}

.faq-answer-epic {
  max-height: 0;
  overflow: hidden;
  
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.faq-item-epic.active .faq-answer-epic {
  max-height: 500px;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .about-features-epic-grid {
    grid-template-columns: 1fr;
  }
  .page-content-epic,
  .contact-form-epic {
    padding: 2rem;
  }
}

/*==============================================================
# EPIC CONTACT PAGE STYLES
==============================================================*/
.contact-info-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.98), rgba(0, 20, 53, 0.98));
  border-radius: 32px;
  padding: 3rem;
  border: 2px solid rgba(45, 134, 89, 0.15);
  backdrop-filter: blur(30px);
  overflow: hidden;
}

.contact-info-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
}

.contact-info-epic:hover .contact-info-glow {
  opacity: 1;
  
}

.contact-info-epic h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.contact-info-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.info-item-epic {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 20px;
  border-left: 4px solid transparent;
  
}

.info-item-epic:hover {
  background: rgba(218, 165, 32, 0.2);
  border-left-color: var(--accent-color);
  

}

.info-icon-epic {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 14px;
  flex-shrink: 0;

  
}

.info-item-epic:hover .info-icon-epic {


}

.info-icon-epic i {
  font-size: 1.5rem;
  color: var(--background-color);
}

.info-content-epic h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.info-content-epic p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

.info-content-epic a {
  color: var(--accent-color);
  text-decoration: none;
  
}

.info-content-epic a:hover {
  color: var(--heading-color);
}

.social-links-epic h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.social-icons-epic {
  display: flex;
  gap: 1rem;
}

.social-icon-epic {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 134, 89, 0.15);
  border: 2px solid rgba(218, 165, 32, 0.2);
  border-radius: 12px;
  color: var(--accent-color);
  text-decoration: none;
  
}

.social-icon-epic:hover {
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-color: var(--accent-color);
  color: var(--background-color);


}

.social-icon-epic i {
  font-size: 1.3rem;
}

.contact-form-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
}

.contact-form-epic:hover .contact-form-glow {
  opacity: 1;
  
}

.contact-intro-epic h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.contact-intro-epic p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
}

.form-check-epic {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check-epic input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check-epic label {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  opacity: 0.9;
  cursor: pointer;
}

.form-check-epic label a {
  color: var(--accent-color);
  text-decoration: underline;
}

/*==============================================================
# EPIC FAQ PAGE STYLES
==============================================================*/
.faq-container-epic {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-glow-epic {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
}

.faq-item-epic.active .faq-glow-epic,
.faq-item-epic:hover .faq-glow-epic {
  opacity: 1;
  
}

.faq-question-epic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  cursor: pointer;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.faq-question-epic i.bi-chevron-down {
  color: var(--accent-color);
  
  font-size: 1.2rem;
}

.faq-item-epic.active .faq-question-epic i.bi-chevron-down {
  
}

.faq-question-epic > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-question-epic > div i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.faq-answer-epic {
  max-height: 0;
  overflow: hidden;
  
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.faq-item-epic.active .faq-answer-epic {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer-epic p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

/*==============================================================
# EPIC THANKS PAGE STYLES
==============================================================*/
.thanks-content-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.98), rgba(0, 20, 53, 0.98));
  border-radius: 40px;
  padding: 4rem;
  border: 2px solid rgba(45, 134, 89, 0.15);
  backdrop-filter: blur(35px);
  overflow: hidden;
}

.thanks-glow-epic {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.3) 0%, transparent 70%);
  opacity: 0.5;
  
  pointer-events: none;
}

.success-icon-epic {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  z-index: 2;
}

.success-icon-bg-epic {
  position: absolute;
  inset: -15px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  opacity: 0.4;
  filter: blur(30px);
  
}

.success-icon-epic i {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--success-color);
  background: linear-gradient(135deg, var(--success-color), var(--accent-color));
  border-radius: 50%;

  z-index: 1;
  
}

.thanks-content-epic h1 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.thanks-lead-epic {
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.next-steps-epic h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.step-card-epic {
  position: relative;
  background: linear-gradient(145deg, rgba(1, 26, 69, 0.9), rgba(0, 20, 53, 0.9));
  border-radius: 28px;
  padding: 2.5rem;
  height: 100%;
  border: 2px solid rgba(45, 134, 89, 0.15);
  

  backdrop-filter: blur(25px);
  overflow: hidden;
}

.step-glow-epic {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
  opacity: 0;
  
  pointer-events: none;
}

.step-card-epic:hover {

  border-color: var(--accent-color);

}

.step-card-epic:hover .step-glow-epic {
  opacity: 1;
  
}

.step-icon-epic {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border-radius: 20px;

  
  position: relative;
  z-index: 2;
}

.step-card-epic:hover .step-icon-epic {


}

.step-icon-epic i {
  font-size: 2.5rem;
  color: var(--background-color);
}

.step-card-epic h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-card-epic p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
  position: relative;
  z-index: 2;
}

/*==============================================================
# HERO SECTION STYLES
==============================================================*/
.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #581c87 100%);
  z-index: 0;
  opacity: 0.95;
}

.hero-background-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="antique-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(218,165,32,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23antique-pattern)"/></svg>');
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--background-color);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge .badge-icon {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.hero-badge .badge-text {
  color: var(--background-color);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--background-color);
}

.hero-title .title-line-1,
.hero-title .title-line-2,
.hero-title .title-line-3 {
  display: block;
}

.hero-title .title-line-1 {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.hero-title .title-line-2 {
  font-size: 1em;
  margin-bottom: 0.5rem;
}

.hero-title .title-line-3 {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title .highlight-red,
.hero-title .highlight-gold {
  color: var(--antique-gold);
  font-weight: 900;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(61, 40, 23, 0.6);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

.hero-stats .stat-item:hover {
  background: rgba(61, 40, 23, 0.8);
  border-color: rgba(218, 165, 32, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.hero-stats .stat-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(184, 134, 11, 0.2));
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 16px;
  color: var(--antique-gold);
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(218, 165, 32, 0.2);
}

.hero-stats .stat-item:hover .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(184, 134, 11, 0.4));
  border-color: var(--antique-gold);
  transform: scale(1.1) rotate(5deg);
  color: var(--antique-gold);
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.4);
}

.hero-stats .stat-label {
  font-size: 1.1rem;
  color: var(--background-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.hero-stats .stat-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--antique-gold);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: var(--background-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--antique-gold);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--antique-gold);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(218, 165, 32, 0.2);
  color: var(--background-color);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.trust-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-dashboard-preview {
  background: rgba(45, 27, 105, 0.8);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.dashboard-dots {
  display: flex;
  gap: 0.5rem;
}

.dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.6);
}

.dashboard-title {
  color: var(--background-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(2, 46, 115, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.dashboard-metric .metric-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(218, 165, 32, 0.2);
  border-radius: 10px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.dashboard-metric .metric-info {
  flex: 1;
}

.dashboard-metric .metric-value {
  display: none !important;
}

.dashboard-metric .metric-status {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.dashboard-metric .metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.hero-feature-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.feature-card-mini {
  flex: 1;
  background: rgba(1, 26, 69, 0.6);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 15px;
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.feature-card-mini i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.feature-card-mini span {
  display: block;
  color: var(--background-color);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.scroll-down:hover {
  color: var(--accent-color);
}

.scroll-down span {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.scroll-down i {
  font-size: 1.5rem;
}

/*==============================================================
# FEATURES SECTION STYLES
==============================================================*/
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77, 184, 125, 0.15);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(168, 85, 247, 0.6);
}

.section-title-h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--background-color);
}

.section-title-h2 .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.section-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  position: relative;
}

.feature-card-inner {
  background: rgba(1, 26, 69, 0.6);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.feature-icon {
  position: relative;
  margin-bottom: 1.5rem;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 15px;
  color: var(--accent-color);
  font-size: 2.5rem;
}

.feature-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--antique-text-color);
  color: var(--background-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background-color);
  margin-bottom: 1rem;
}

.feature-content > p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.feature-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.feature-metric .metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.feature-metric .metric-value {
  display: none !important;
}

.feature-metric .metric-icon-small {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.3), rgba(61, 166, 107, 0.2));
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 10px;
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.feature-metric:hover .metric-icon-small {
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.5), rgba(61, 166, 107, 0.4));
  border-color: var(--antique-text-color);
  transform: scale(1.1) rotate(5deg);
}

.feature-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.feature-metric .metric-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
  font-weight: 500;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

/*==============================================================
# SUCCESS STORIES SECTION STYLES
==============================================================*/
.success-stories-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

.success-stories-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.success-stories-slider .init-swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.success-stories-slider .swiper-wrapper {
  overflow: visible;
}

.success-stories-slider .swiper-slide {
  height: auto;
  overflow: hidden;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}


.swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: auto;
}

.swiper-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}

.swiper-bullet:hover {
  background: rgba(77, 184, 125, 0.5);
  border-color: rgba(218, 165, 32, 0.8);
  transform: scale(1.2);
}

.swiper-bullet-active {
  background: var(--accent-color);
  border-color: var(--antique-text-color);
  width: 18px;
  height: 18px;
}

.success-card {
  background: linear-gradient(135deg, rgba(61, 40, 23, 0.95) 0%, rgba(93, 58, 26, 0.95) 100%);
  border: 2px solid rgba(218, 165, 32, 0.7);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-card:hover {
  border-color: rgba(218, 165, 32, 1);
  transform: translateY(-5px);
}

.success-card:hover::before {
  opacity: 1;
}

.success-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.success-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(184, 134, 11, 0.2));
  border: 2px solid rgba(218, 165, 32, 0.7);
  border-radius: 16px;
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.success-card:hover .success-icon {
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.5), rgba(61, 166, 107, 0.4));
  border-color: var(--antique-text-color);
  transform: scale(1.05) rotate(5deg);
}

.success-badge {
  background: linear-gradient(135deg, var(--antique-gold), rgba(184, 134, 11, 0.8));
  color: var(--background-color);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-card-body {
  flex: 1;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.success-card-body h3 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--background-color);
  margin-bottom: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.success-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.success-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.success-metrics .metric-box {
  background: rgba(2, 46, 115, 0.6);
  border: 2px solid rgba(218, 165, 32, 0.4);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.success-metrics .metric-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
  transition: left 0.5s ease;
}

.success-metrics .metric-box:hover {
  border-color: rgba(218, 165, 32, 0.7);
  background: rgba(2, 46, 115, 0.8);
  transform: translateY(-3px);
}

.success-metrics .metric-box:hover::before {
  left: 100%;
}

.success-metrics .metric-box .metric-value {
  display: none !important;
}

.success-metrics .metric-box .metric-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.success-card-footer {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(218, 165, 32, 0.4);
  position: relative;
  z-index: 2;
}

.success-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  background: rgba(77, 184, 125, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.success-card:hover .success-tag {
  background: rgba(77, 184, 125, 0.25);
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateX(5px);
}

.success-tag i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .hero-stats .stat-item {
    padding: 1.25rem;
  }
  
  .hero-stats .stat-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .hero-stats .stat-label {
    font-size: 1rem;
  }
  
  .hero-stats .stat-description {
    font-size: 0.8rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title-h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-title .title-line-1,
  .hero-title .title-line-2,
  .hero-title .title-line-3 {
    font-size: 1em;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .hero-stats .stat-item {
    padding: 1.5rem;
  }
  
  .hero-stats .stat-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-stats .stat-label {
    font-size: 1rem;
  }
  
  .hero-stats .stat-description {
    font-size: 0.85rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title-h2 {
    font-size: 1.75rem;
  }
  
  .success-metrics {
    grid-template-columns: 1fr;
  }
  
  .success-stories-slider-wrapper {
    padding: 2rem 0;
  }
  
  .success-card {
    padding: 2rem;
  }
  
  .success-card-body h3 {
    font-size: 1.375rem;
  }
  
  .success-metrics .metric-box .metric-value {
    display: none !important;
  }
  
  .success-metrics .metric-icon-small {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .dashboard-metric .metric-status {
    font-size: 1.1rem;
  }
  
  .feature-metric .metric-icon-small {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
}

/*==============================================================
# FEATURES SECTION
==============================================================*/
.features {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.features-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.features-badge i {
  font-size: 1rem;
}

.features-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--background-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.features-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.features-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(61, 40, 23, 0.7);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: rgba(45, 27, 105, 0.8);
  border-color: rgba(218, 165, 32, 0.7);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.3), rgba(61, 166, 107, 0.2));
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 18px;
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(77, 184, 125, 0.5), rgba(61, 166, 107, 0.4));
  border-color: var(--antique-text-color);
  transform: scale(1.1) rotate(5deg);
}

.feature-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--heading-font);
}

.feature-card-content {
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-item i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-card-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(218, 165, 32, 0.2);
  border: 1px solid rgba(218, 165, 32, 0.4);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-tag i {
  font-size: 0.875rem;
}

/*==============================================================
# TESTIMONIALS SECTION
==============================================================*/
.testimonials {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(77, 184, 125, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(218, 165, 32, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.testimonials-badge i {
  font-size: 1rem;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.testimonials-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.testimonials-description {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.testimonials-swiper {
  padding: 2rem 0 4rem;
}

.testimonial-card {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.testimonial-card:hover {
  border-color: rgba(218, 165, 32, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.5rem;
  opacity: 0.6;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border: 2px solid rgba(218, 165, 32, 0.4);
  border-radius: 50%;
  color: var(--background-color);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #ffc107;
  font-size: 1.125rem;
}

.testimonials-pagination {
  margin-top: 2rem;
  text-align: center;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(168, 85, 247, 0.3);
  opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--antique-text-color);
  width: 30px;
  border-radius: 6px;
}

/*==============================================================
# PRICING SECTION
==============================================================*/
.pricing {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.pricing-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-badge i {
  font-size: 1rem;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pricing-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.pricing-description {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.pricing-card:hover {
  border-color: rgba(218, 165, 32, 0.8);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
}

.featured-pricing {
  border-color: rgba(218, 165, 32, 0.8);
  border-width: 3px;
  background: linear-gradient(135deg, rgba(61, 40, 23, 0.95), rgba(93, 58, 26, 0.95));
}

.featured-pricing::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color), var(--accent-color));
  border-radius: 24px 24px 0 0;
}

.pricing-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--antique-text-color), rgba(218, 165, 32, 0.8));
  color: var(--background-color);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 20px;
  border: 2px solid var(--contrast-color);
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}

.pricing-plan-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.3);
  border: 1px solid rgba(218, 165, 32, 0.4);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-plan-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  line-height: 1;
}

.pricing-period {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.pricing-plan-description {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.pricing-features-list {
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.8);
}

.pricing-feature-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-feature-item.disabled {
  opacity: 0.5;
}

.pricing-feature-item.disabled i {
  color: rgba(168, 85, 247, 0.5);
}

.pricing-card-footer {
  text-align: center;
}

.btn-pricing {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  color: var(--background-color);
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.btn-pricing:hover {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  transform: translateY(-2px);
  color: var(--background-color);
}

.btn-pricing.primary {
  background: linear-gradient(135deg, var(--antique-text-color), rgba(218, 165, 32, 0.8));
  border-color: var(--antique-text-color);
}

.btn-pricing.primary:hover {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.8), var(--antique-text-color));
}

.pricing-note {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .features-title,
  .testimonials-title,
  .pricing-title {
    font-size: 2rem;
  }
  
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-amount {
    font-size: 2.5rem;
  }
}

/*==============================================================
# ABOUT PAGE STYLES
==============================================================*/

/* About Hero Section */
.about-hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
}

.about-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #581c87 100%);
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.about-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.about-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-badge i {
  font-size: 1rem;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.about-description {
  font-size: 1.25rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

/* About Team Section */
.about-team-section {
  padding: 100px 0;
}

.team-card {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.team-header {
  margin-bottom: 2rem;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.team-badge i {
  font-size: 1rem;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.team-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.team-text {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.team-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.team-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.5rem;
}

.team-feature-content {
  flex: 1;
}

.team-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 0.5rem;
}

.team-feature-text {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/* Legal Card */
.legal-card {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}

.legal-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.5rem;
}

.legal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin: 0;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
}

.legal-label i {
  font-size: 1rem;
}

.legal-value {
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-value a {
  color: var(--default-color);
  text-decoration: none;
}

.legal-value a:hover {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

/* About Story Section */
.about-story-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d1b69 0%, #1a0b2e 100%);
}

.about-story-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.about-story-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.about-story-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.story-badge i {
  font-size: 1rem;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.story-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.story-description {
  font-size: 1.25rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

.about-values-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.value-card {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border: 2px solid var(--antique-gold);
  border-radius: 16px;
  color: var(--background-color);
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
  margin: 0 auto 1.5rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 0.75rem;
}

.value-text {
  font-size: 0.9375rem;
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

.about-mission {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.mission-content {
  padding-right: 2rem;
}

.mission-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
}

.mission-visual {
  position: relative;
}

.mission-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(168, 85, 247, 0.6);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.mission-image {
  width: 100%;
  height: auto;
  display: block;
}

.mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(1, 26, 69, 0.3) 0%, rgba(2, 46, 115, 0.2) 100%);
  pointer-events: none;
}

/*==============================================================
# CONTACT PAGE STYLES
==============================================================*/

/* Contact Hero Section */
.contact-hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
}

.contact-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.contact-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.contact-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-badge i {
  font-size: 1rem;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.contact-description {
  font-size: 1.25rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.contact-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 50px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-section-badge i {
  font-size: 1rem;
}

.contact-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact-section-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.contact-section-description {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
}

.contact-info {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 20px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
}

.contact-info-description {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.25rem;
}

.info-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 0.5rem;
}

.info-content p {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: var(--default-color);
  text-decoration: none;
}

.info-content a:hover {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.info-content span {
  color: rgba(212, 196, 232, 0.7);
  font-size: 0.875rem;
}

.social-links {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(218, 165, 32, 0.2);
}

.social-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.25rem;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(218, 165, 32, 0.2);
  border-color: var(--antique-text-color);
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

/* Contact Form */
.contact-form {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
}

.contact-intro p {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.7;
  margin: 0;
}

.contact-form-wrapper {
  margin-top: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(1, 26, 69, 0.3);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: var(--default-color);
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--antique-text-color);
  background: rgba(1, 26, 69, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(200, 230, 213, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form-check input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-check label {
  font-size: 0.9375rem;
  color: var(--default-color);
  line-height: 1.6;
  cursor: pointer;
}

.form-check label a {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  text-decoration: none;
}

.form-check label a:hover {
  text-decoration: underline;
}

.btn-submit {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--antique-text-color), rgba(218, 165, 32, 0.8));
  border: 2px solid var(--antique-text-color);
  border-radius: 12px;
  color: var(--background-color);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.8), var(--antique-text-color));
}

/*==============================================================
# FAQ PAGE STYLES
==============================================================*/

/* FAQ Hero Section */
.faq-hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
}

.faq-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.faq-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.faq-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.faq-badge i {
  font-size: 1rem;
}

.faq-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.faq-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.faq-description {
  font-size: 1.25rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
}

.faq-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.faq-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 50px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.faq-section-badge i {
  font-size: 1rem;
}

.faq-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faq-section-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.faq-section-description {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: rgba(168, 85, 247, 0.1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem 2rem 2rem;
  opacity: 1;
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.faq-question-content i {
  font-size: 1.5rem;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  flex-shrink: 0;
}

.faq-question-content span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  line-height: 1.5;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
}

/* Responsive for About, Contact, FAQ */
@media (max-width: 992px) {
  .about-title,
  .contact-title,
  .faq-title {
    font-size: 2.5rem;
  }
  
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-mission {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-content {
    padding-right: 0;
  }
  
  .team-card,
  .legal-card,
  .contact-info,
  .contact-form {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .about-title,
  .contact-title,
  .faq-title {
    font-size: 2rem;
  }
  
  .about-description,
  .contact-description,
  .faq-description {
    font-size: 1.125rem;
  }
  
  .team-title,
  .story-title {
    font-size: 2rem;
  }
  
  .team-card,
  .legal-card,
  .contact-info,
  .contact-form {
    padding: 2rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question-content span {
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

/*==============================================================
# SERVICES PAGE STYLES
==============================================================*/

/* Services Hero Section */
.services-hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.services-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.services-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.services-badge i {
  font-size: 1rem;
}

.services-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.services-description {
  font-size: 1.25rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

.services-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-stat-item {
  background: rgba(2, 46, 115, 0.3);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.service-stat-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.service-stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 0.5rem;
}

.service-stat-description {
  font-size: 0.9375rem;
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/* Services Main Section */
.services-main-section {
  padding: 100px 0;
}

.services-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.services-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.services-section-badge i {
  font-size: 1rem;
}

.services-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.services-section-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.services-section-description {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
}

/* Service Cards */
.service-card {
  background: var(--surface-color);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin: 0;
  line-height: 1.3;
}

.service-description {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--default-color);
  line-height: 1.6;
}

.service-features li i {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(218, 165, 32, 0.2);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.service-link:hover {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  gap: 0.75rem;
}

.service-link i {
  font-size: 1.125rem;
}

/* Services CTA Section */
.services-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.services-cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.services-cta-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.services-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.services-cta-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.services-cta-description {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

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

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border: 2px solid var(--antique-text-color);
  border-radius: 12px;
  color: var(--background-color);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: var(--background-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--antique-gold);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: var(--default-color);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-cta-secondary:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--antique-gold);
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  transform: translateY(-2px);
}

/* Responsive for Services */
@media (max-width: 992px) {
  .services-title {
    font-size: 2.5rem;
  }
  
  .services-stats {
    grid-template-columns: 1fr;
  }
  
  .services-section-title {
    font-size: 2rem;
  }
  
  .services-cta-title {
    font-size: 2rem;
  }
  
  .services-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }
  
  .services-description {
    font-size: 1.125rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .service-title {
    font-size: 1.25rem;
  }
  
  .services-cta-title {
    font-size: 1.75rem;
  }
  
  .services-cta-description {
    font-size: 1rem;
  }
}

/*==============================================================
# COOKIE POLICY PAGE STYLES
==============================================================*/

/* Cookie Policy Hero Section */
.cookie-hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
}

.cookie-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.cookie-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.cookie-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cookie-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 50px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cookie-badge i {
  font-size: 1rem;
}

.cookie-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cookie-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.cookie-description {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

/* Cookie Hero Section */
.cookie-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.cookie-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, var(--accent-color) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--antique-gold) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 25px 25px;
}

.cookie-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-intro-section {
  max-width: 500px;
}

.cookie-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(168, 85, 247, 0.1), transparent);
  animation: badgeGlow 3s ease-in-out infinite;
}

.cookie-badge-modern i {
  color: var(--accent-color);
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.cookie-badge-modern span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.cookie-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cookie-hero-title .highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-hero-description {
  font-size: 1.2rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Cookie Control Preview */
.cookie-control-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.control-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.control-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  transition: 0.4s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-color);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.control-toggle span {
  color: var(--default-color);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Quick Actions */
.cookie-quick-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-cookie-settings-hero {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
  border: none;
  border-radius: 25px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-cookie-settings-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.btn-cookie-settings-hero i {
  font-size: 1.1rem;
}

.cookie-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.2);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(10px);
}

.cookie-status i {
  color: #198754;
  font-size: 1rem;
}

.cookie-status span {
  color: #198754;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero Visual */
.cookie-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-jars-visual {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: end;
}

.cookie-jar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cookie-jar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cookie-jar:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cookie-jar:hover::before {
  opacity: 1;
}

.cookie-jar.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
}

.cookie-jar.active .jar-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  color: white;
}

.jar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.jar-label {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.cookies-count {
  font-size: 0.85rem;
  color: var(--default-color);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Cookie Particles */
.cookie-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  font-size: 1.5rem;
  animation: cookieFloat 4s ease-in-out infinite;
  opacity: 0.7;
}

.particle.cookie-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.particle.cookie-2 {
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.particle.cookie-3 {
  bottom: 15%;
  left: 25%;
  animation-delay: 2s;
}

.particle.cookie-4 {
  bottom: 25%;
  right: 20%;
  animation-delay: 3s;
}

/* Cookie Trail */
.cookie-trail {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.trail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.3);
  animation: trailPulse 2s ease-in-out infinite;
}

.trail-dot:nth-child(2) { animation-delay: 0.2s; }
.trail-dot:nth-child(3) { animation-delay: 0.4s; }
.trail-dot:nth-child(4) { animation-delay: 0.6s; }
.trail-dot:nth-child(5) { animation-delay: 0.8s; }

/* Animations */
@keyframes badgeGlow {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

@keyframes cookieFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-20px) rotate(3deg);
    opacity: 0.8;
  }
}

@keyframes trailPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-hero-section {
    padding: 80px 0 60px;
  }

  .cookie-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-intro-section {
    max-width: none;
  }

  .cookie-hero-title {
    font-size: 2.2rem;
  }

  .cookie-hero-description {
    font-size: 1rem;
  }

  .cookie-jars-visual {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-jar {
    width: 100%;
    max-width: 280px;
  }

  .cookie-control-preview {
    align-items: stretch;
  }

  .cookie-quick-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cookie-settings-hero,
  .cookie-status {
    text-align: center;
    justify-content: center;
  }
}

/* Terms Hero Section */
.terms-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.terms-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.terms-hero-header {
  max-width: 500px;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.terms-badge i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.terms-badge span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.terms-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.terms-hero-title .highlight-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-hero-description {
  font-size: 1.2rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Hero Features */
.terms-hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-feature {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Quick Navigation */
.terms-quick-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-item {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
}

/* Hero Visual */
.terms-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.terms-visual-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(168, 85, 247, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: center;
}

.visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.visual-content h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.visual-content p {
  color: var(--default-color);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.visual-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(25, 135, 84, 0.1);
  border-radius: 20px;
}

.visual-status i {
  color: #198754;
  font-size: 1rem;
}

.visual-status span {
  color: #198754;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Terms Content Section */
.terms-content-section {
  padding: 100px 0;
  background: var(--surface-color);
}

/* Terms Grid */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Terms Cards */
.terms-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  height: fit-content;
}

.terms-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.2);
}

/* Card Header */
.terms-card .card-header {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.terms-card .card-number {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.terms-card .card-header h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Card Content */
.terms-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.terms-card .card-content > p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Acceptance List */
.acceptance-list,
.rights-list,
.responsibility-list,
.prohibited-list,
.legal-list,
.property-list,
.privacy-list,
.availability-list,
.liability-list,
.modification-list,
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acceptance-item,
.responsibility-item,
.prohibited-item,
.legal-item,
.property-item,
.termination-item,
.modification-item,
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.acceptance-item:hover,
.responsibility-item:hover,
.prohibited-item:hover,
.legal-item:hover,
.property-item:hover,
.termination-item:hover,
.modification-item:hover,
.contact-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateX(5px);
}

.rights-item,
.privacy-item,
.liability-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.rights-item:hover,
.privacy-item:hover,
.liability-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateX(3px);
}

/* Icons */
.acceptance-icon,
.responsibility-icon,
.prohibited-icon,
.legal-icon,
.property-icon,
.availability-icon,
.modification-icon,
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.rights-item i,
.privacy-item i,
.liability-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Text Content */
.acceptance-info,
.responsibility-info,
.prohibited-info,
.legal-info,
.property-info,
.availability-info,
.modification-info,
.contact-details {
  flex: 1;
}

.acceptance-info h4,
.responsibility-info h4,
.prohibited-info h4,
.legal-info h4,
.property-info h4,
.availability-info h4,
.modification-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.acceptance-info p,
.responsibility-info p,
.prohibited-info p,
.legal-info p,
.property-info p,
.availability-info p,
.modification-info p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.rights-item span,
.privacy-item span,
.liability-item span {
  color: var(--default-color);
  font-weight: 500;
  line-height: 1.5;
}

.contact-details strong {
  display: block;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--antique-gold);
}

/* Termination Items */
.termination-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.termination-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.termination-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.termination-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.termination-info p {
  margin: 0;
  color: var(--default-color);
  font-size: 0.9rem;
}

/* Termination Rights */
.termination-rights {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(255, 193, 7, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.termination-rights h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.termination-rights ul {
  margin: 0;
  padding-left: 1.5rem;
}

.termination-rights li {
  color: var(--default-color);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-hero-section {
    padding: 80px 0 60px;
  }

  .terms-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .terms-hero-header {
    max-width: none;
  }

  .terms-hero-title {
    font-size: 2.2rem;
  }

  .terms-hero-description {
    font-size: 1rem;
  }

  .terms-hero-features {
    flex-direction: column;
  }

  .hero-feature {
    text-align: center;
  }

  .terms-quick-nav {
    justify-content: center;
  }

  .nav-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }

  .terms-visual-card {
    max-width: none;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie Content Section */
.cookie-content-section {
  padding: 100px 0;
  background: var(--surface-color);
}

/* Cookie Header */
.cookie-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cookie-title h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-title p {
  font-size: 1.2rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cookie Grid */
.cookie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Cookie Cards */
.cookie-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  height: fit-content;
}

.cookie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.2);
}

/* Card Header */
.cookie-card .card-header {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cookie-card .card-number {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cookie-card .card-header h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Card Content */
.cookie-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.cookie-card .card-content > p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Cookie Features */
.cookie-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.cookie-feature:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateX(5px);
}

/* Feature Icons */
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Feature Info */
.feature-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.feature-info p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Cookie Status */
.cookie-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  align-self: flex-start;
  margin-top: auto;
}

.cookie-status.essential {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.cookie-status.essential i {
  color: #198754;
}

.cookie-status.optional {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.cookie-status.optional i {
  color: #ffc107;
}

.cookie-status.mixed {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.cookie-status.mixed i {
  color: #6c757d;
}

/* Cookie Info Grid */
.cookie-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Info Cards */
.info-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  height: fit-content;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.2);
}

/* Info Card Header */
.info-card .card-header {
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.info-card .card-number {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-card .card-header h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Info Card Content */
.info-card .card-content {
  padding: 2rem;
}

.info-card .card-content > p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Info Benefits */
.info-benefits,
.rights-list,
.management-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item,
.right-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover,
.right-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateX(3px);
}

.benefit-item i,
.right-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item span,
.right-item span {
  color: var(--default-color);
  font-weight: 500;
  line-height: 1.5;
}

/* Legal List */
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.legal-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateX(5px);
}

.legal-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.legal-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.legal-info p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Management List */
.management-list {
  gap: 1rem;
}

.management-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.management-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateX(5px);
}

.management-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.management-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.management-info p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Cookie Contact Section */
.cookie-contact-section {
  margin-top: 4rem;
  width: 100%;
}

.cookie-contact-section .contact-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.cookie-contact-section .contact-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.cookie-contact-section .contact-card > p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cookie-contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cookie-contact-section .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.05);
  transition: all 0.3s ease;
}

.cookie-contact-section .contact-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

.cookie-contact-section .contact-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-contact-section .contact-details {
  text-align: left;
}

.cookie-contact-section .contact-details strong {
  display: block;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cookie-contact-section .contact-details a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-contact-section .contact-details a:hover {
  color: var(--antique-gold);
}

.cookie-contact-section .contact-note {
  padding: 1rem;
  background: rgba(255, 193, 7, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--antique-gold);
  font-style: italic;
  color: var(--default-color);
}

.page-content {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 3rem;
}

.page-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content p {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-content ul li {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.page-content ul li strong {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-weight: 600;
}

.page-content a {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.info-box {
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

.info-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
}

.info-box p {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.7;
  margin: 0;
}

.cookie-settings-box {
  background: rgba(61, 40, 23, 0.9);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  text-align: center;
}

.cookie-settings-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
}

.cookie-settings-box p {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-cookie-settings {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--antique-gold), var(--antique-brown));
  border: 2px solid var(--antique-gold);
  border-radius: 12px;
  color: var(--background-color);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-cookie-settings:hover {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(168, 85, 247, 0.5);
}

.contact-info p {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-weight: 600;
}

/*==============================================================
# PRIVACY POLICY PAGE STYLES
==============================================================*/

/* Privacy Policy Hero Section */
.privacy-hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
}

.privacy-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.privacy-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.privacy-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 50px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.privacy-badge i {
  font-size: 1rem;
}

.privacy-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.privacy-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.privacy-description {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

/* Privacy Policy Content Section */
.privacy-content-section {
  padding: 100px 0;
}

/*==============================================================
# TERMS PAGE STYLES
==============================================================*/

/* Terms Hero Section */
.terms-hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
}

.terms-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d4a2d 0%, #1a5c3a 50%, #2d7a4f 100%);
  z-index: 0;
  opacity: 0.95;
}

.terms-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61, 166, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.terms-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 50px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.terms-badge i {
  font-size: 1rem;
}

.terms-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.terms-title .highlight-red {
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.terms-description {
  font-size: 1.125rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

/* Terms Content Section */
.terms-content-section {
  padding: 100px 0;
}

.warning-box {
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 12px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

.warning-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
  margin-bottom: 1rem;
}

.warning-box p {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.7;
  margin: 0;
}

/*==============================================================
# THANKS PAGE STYLES
==============================================================*/

/* Thanks Hero Section */
.thanks-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
}

.thanks-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-intro-section {
  text-align: left;
}

.hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 50%;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.thanks-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--heading-color);
}

.thanks-hero-description {
  font-size: 1.25rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.thanks-visual {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--antique-gold));
  border-radius: 50%;
  color: white;
  font-size: 5rem;
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.4);
}

/* Thanks Content Section */
.thanks-content-section {
  padding: 80px 0;
}

.thanks-overview {
  margin-bottom: 4rem;
}

.overview-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.overview-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.overview-intro p {
  font-size: 1.25rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.overview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.thanks-sections .privacy-section {
  margin-bottom: 4rem;
}

.thanks-sections .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.thanks-sections .section-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.thanks-sections .section-header p {
  font-size: 1.125rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.section-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-content {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.card-content h3,
.card-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--antique-gold);
}

.card-stat {
  text-align: center;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

/* Responsive for Legal Pages */
@media (max-width: 992px) {
  .cookie-title,
  .privacy-title,
  .terms-title,
  .thanks-title {
    font-size: 2.5rem;
  }

  .thanks-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-intro-section {
    text-align: center;
  }

  .overview-cards,
  .section-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cookie-title,
  .privacy-title,
  .terms-title,
  .thanks-title {
    font-size: 2rem;
  }

  .cookie-description,
  .privacy-description,
  .terms-description,
  .thanks-description {
    font-size: 1.125rem;
  }

  .thanks-hero-title {
    font-size: 2.5rem;
  }

  .thanks-visual {
    width: 150px;
    height: 150px;
    font-size: 3.5rem;
  }

  .page-content {
    padding: 2rem;
  }

  .page-content h2 {
    font-size: 1.75rem;
  }

  .page-content h3 {
    font-size: 1.25rem;
  }
  
  .steps-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .thanks-success-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
}
