/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --default-font: "Sofia Sans", sans-serif, system-ui, -apple-system, "Segoe UI", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Sofia Sans", sans-serif;
  --nav-font: "Sofia Sans", sans-serif;
}

/* Global Colors - Antiquarium Theme */
:root {
--background-color: transparent;
--default-color: #2c1810;
--heading-color: #4a2c1a;
--accent-color: #8b4513;
--surface-color: rgba(255, 255, 255, 0.7);
--contrast-color: #ffffff;
--nav-color: #2c1810;
--nav-hover-color: #4a2c1a;
--nav-mobile-background-color: rgba(255, 255, 255, 0.95);
--nav-dropdown-background-color: rgba(255, 255, 255, 0.98);
--nav-dropdown-color: #2c1810;
--nav-dropdown-hover-color: #4a2c1a;

/* Antiquarium Color Palette */
--antique-brown: #4a2c1a;
--antique-brown-light: #6b4428;
--antique-brown-dark: #2c1810;
--antique-gold: #d4af37;
--antique-gold-light: #f4e87c;
--antique-gold-dark: #b8860b;
--burgundy: #722f37;
--burgundy-light: #8b4049;
--burgundy-dark: #5a1f26;
--deep-blue: #1a1a2e;
--deep-blue-light: #2a2a5e;
--deep-blue-dark: #0f0f1a;
--white: #ffffff;
--black: #0f0a08;
--warm-gray: #8b7355;
--light-cream: #f5f5dc;
--dark-wood: #2c1810;

/* Gradient Colors - Antique Theme */
--gradient-primary: linear-gradient(135deg, #8b4513 0%, #d4af37 100%);
--gradient-secondary: linear-gradient(135deg, #722f37 0%, #4a2c1a 100%);
--gradient-mix: linear-gradient(135deg, #6b4428 0%, #8b4513 50%, #d4af37 100%);
--gradient-antique: linear-gradient(135deg, #4a2c1a 0%, #722f37 50%, #8b4513 100%);
--gradient-gold: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f4e87c 100%);

}

/*--------------------------------------------------------------
# Custom Scrollbar - Green Theme
--------------------------------------------------------------*/
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(245, 245, 220, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 10px;
  border: 2px solid rgba(245, 245, 220, 0.5);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--antique-brown-light), var(--antique-gold-light));
  border-color: rgba(139, 69, 19, 0.3);
}

::-webkit-scrollbar-corner {
  background: rgba(245, 245, 220, 0.5);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--antique-brown) rgba(245, 245, 220, 0.5);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Modern Section Enhancements */
.hero-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.5) 20%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.5) 80%,
    transparent 100%);
}

.journey-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 50% 30% at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(114, 47, 55, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.features-section-new::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.6) 30%,
    rgba(139, 69, 19, 0.4) 70%,
    transparent 100%);
  border-radius: 1px;
}

.testimonials-section-new::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(74, 44, 26, 0.2) 20%,
    rgba(212, 175, 55, 0.4) 50%,
    rgba(74, 44, 26, 0.2) 80%,
    transparent 100%);
  transform: translateY(-50%);
}

/* Color Presets */

.light-background {
  --background-color: transparent;
  --default-color: #2c1810;
  --heading-color: #8b4513;
  --surface-color: rgba(255, 255, 255, 0.1);
  --contrast-color: #2c1810;
}

.dark-background {
  --background-color: transparent;
  --default-color: #2c1810;
  --heading-color: #8b4513;
  --surface-color: rgba(255, 255, 255, 0.1);
  --contrast-color: #ffffff;
}

/* Enhanced Interactive Effects */
.hero-section-new .hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  backdrop-filter: blur(0.5px);
}

.journey-section-new .journey-header-wrapper {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(1px);
}

.features-section-new .features-header-wrapper {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(1px);
}

.testimonials-section-new .testimonials-header-wrapper {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(1px);
}

/* Page Sections Enhanced Effects */
.page-hero-section .page-hero-content-new {
  backdrop-filter: blur(1px);
}

.about-story-section .story-content-wrapper {
  backdrop-filter: blur(1px);
}

.mission-vision-section .mission-card-content,
.mission-vision-section .vision-card-content {
  backdrop-filter: blur(1px);
}

.values-section-redesigned .value-card-inner {
  backdrop-filter: blur(1px);
}

.contact-form-section-redesigned .contact-form-container-new {
  backdrop-filter: blur(1px);
}

.faq-main-section-redesigned .faq-sidebar-new {
  backdrop-filter: blur(1px);
}

.team-section-new .team-expertise-card {
  backdrop-filter: blur(1px);
}

.contact-options-section .contact-option-card {
  backdrop-filter: blur(1px);
}

/* Additional Antique Theme Enhancements */
.page-hero-section,
.about-story-section,
.mission-vision-section,
.values-section-redesigned,
.team-section-new,
.contact-form-section-redesigned,
.contact-options-section,
.faq-main-section-redesigned {
  animation: elegantFadeIn 1.2s ease-out;
}

/* Enhanced Button Effects */
.btn-submit-new,
.btn-demo-new,
.btn-support-new {
  position: relative;
  overflow: hidden;
}

.btn-submit-new::before,
.btn-demo-new::before,
.btn-support-new::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-submit-new:hover::before,
.btn-demo-new:hover::before,
.btn-support-new:hover::before {
  width: 300px;
  height: 300px;
}

/* Page-Specific Enhanced Effects */
.privacy-hero,
.cookie-hero,
.terms-hero,
.thanks-hero-redesigned,
.thanks-hero-section {
  animation: elegantFadeIn 1.2s ease-out;
}

.privacy-overview-section,
.cookie-overview-section,
.terms-overview-section,
.thanks-explore-section {
  animation: elegantFadeIn 1.2s ease-out 0.3s both;
}

.privacy-content-new,
.cookie-content-new,
.terms-content-new {
  animation: elegantFadeIn 1.2s ease-out 0.6s both;
}

.thanks-content {
  animation: elegantFadeIn 1.2s ease-out 0.4s both;
}

/* Antique Theme Consistency Across All Pages */
.privacy-hero .privacy-hero-content,
.cookie-hero .cookie-hero-content,
.terms-hero .terms-hero-content,
.thanks-hero-redesigned .thanks-content-redesigned,
.thanks-hero-section .thanks-content-new {
  backdrop-filter: blur(1px);
}

/* Enhanced Content Elements */
.privacy-article,
.cookie-article,
.terms-article {
  animation: elegantFadeIn 1.2s ease-out both;
  animation-delay: calc(var(--article-index, 0) * 0.2s);
}

.purpose-item,
.cookie-type-card {
  animation: elegantFadeIn 1.2s ease-out both;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.info-box,
.highlight-box,
.warning-box,
.prohibited-box,
.copyright-info-card {
  animation: elegantFadeIn 1.2s ease-out both;
  animation-delay: calc(var(--box-index, 0) * 0.15s);
}

/* Antique Visual Enhancements */
.privacy-visual-card,
.cookie-visual-item,
.terms-visual-card {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 245, 220, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-visual-card:hover,
.cookie-visual-item:hover,
.terms-visual-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Floating Elements Animation Enhancement */
.floating-particles,
.floating-elements {
  opacity: 0.6;
}

.floating-particles::before,
.floating-elements::before {
  animation: antiqueFloat 20s ease-in-out infinite;
}

@keyframes antiqueFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-15px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-15px) rotate(270deg);
    opacity: 0.6;
  }
}

/* Modern Card Hover Effects */
.journey-step-card,
.feature-card-interactive,
.testimonial-card-new {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.journey-step-card:hover,
.feature-card-interactive:hover,
.testimonial-card-new:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.1);
}

/* Antique-Inspired Animations */
@keyframes elegantFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes antiqueGlow {
  0%, 100% {
    box-shadow:
      0 8px 32px rgba(139, 69, 19, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 12px 48px rgba(139, 69, 19, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.hero-section-new,
.journey-section-new,
.features-section-new,
.testimonials-section-new,
.page-hero-section,
.about-story-section,
.mission-vision-section,
.values-section-redesigned,
.contact-form-section-redesigned,
.faq-main-section-redesigned {
  animation: elegantFadeIn 1.2s ease-out;
}

/* Enhanced Card Hover Effects */
.journey-step-card:hover,
.feature-card-interactive:hover,
.testimonial-card-new:hover,
.value-card-redesigned:hover,
.mission-card-new:hover,
.vision-card-new:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  animation: antiqueGlow 2s ease-in-out infinite;
}

/* Button Enhanced Effects */
.btn-submit-new:hover,
.btn-demo-new:hover,
.btn-support-new:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(139, 69, 19, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.2);
}

.spiritual-background {
  --background-color: transparent;
  --default-color: #2c1810;
  --heading-color: #8b4513;
  --surface-color: rgba(255, 255, 255, 0.1);
  --contrast-color: #ffffff;
}

.meditation-background {
  --background-color: transparent;
  --default-color: #4a2c1a;
  --heading-color: #8b4513;
  --surface-color: rgba(255, 255, 255, 0.1);
  --contrast-color: #ffffff;
}


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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: linear-gradient(135deg, #f5f5dc 0%, #e8dcc0 25%, #d4c5a9 50%, #c0b090 75%, #ad9b77 100%);
  background-attachment: fixed;
  font-family: var(--default-font);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Green Background Effects */
.spiritual-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(61, 107, 31, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(74, 124, 42, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.chakra-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--gradient-earth);
  border-radius: 50%;
  opacity: 0.15;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

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

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

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

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

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

.php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

/*--------------------------------------------------------------
# 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;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: transparent;
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--default-color);
}

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5dc 0%, #e8dcc0 25%, #d4c5a9 50%, #c0b090 75%, #ad9b77 100%);
  transition: all 0.6s ease-out;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: transparent;
  padding: 20px 0;
  position: relative;
}

.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: transparent;
  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
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 0 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color) 90%, black 50%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

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

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

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

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

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

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
  transform: translateX(6px);
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

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

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 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: transparent;
  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: transparent;
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  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: rgba(255, 255, 255, 0.6);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  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: transparent;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

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

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

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# 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;
  transition: 0.3s;
}

.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;
  transition: 0.3s;
  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;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

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

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.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(--contrast-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 {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.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 .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Cookie Popup Redesigned
--------------------------------------------------------------*/
#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--default-color);
  border: 1px solid rgba(139, 69, 19, 0.2);
  padding: 0;
  font-family: inherit;
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border-radius: 20px;
  font-size: 15px;
  max-width: 600px;
  width: calc(100% - 40px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  z-index: 1;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  position: relative;
}

#cookie-popup .popup-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  position: relative;
}

#cookie-popup .popup-message::before {
  content: '🍪';
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 12px;
  flex-shrink: 0;
  animation: cookie-bounce 2s ease-in-out infinite;
}

@keyframes cookie-bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-5deg);
  }
  75% {
    transform: translateY(-3px) rotate(5deg);
  }
}

#cookie-popup .popup-message p {
  margin: 0;
  padding: 0;
  padding-left: 3.5rem;
  line-height: 1.7;
  color: var(--default-color);
  font-size: 0.95rem;
}

#cookie-popup .popup-message a {
  color: var(--antique-brown);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
  color: var(--dark-green-light);
  border-bottom-color: var(--dark-green-light);
}

#cookie-popup button {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
  align-self: flex-end;
  position: relative;
  overflow: hidden;
}

#cookie-popup button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

#cookie-popup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

#cookie-popup button:hover::before {
  width: 300px;
  height: 300px;
}

#cookie-popup button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    transform: translateY(100px);
    max-width: none;
  }
  
  #cookie-popup.show {
    transform: translateY(0);
  }
  
  #cookie-popup .popup-content {
    padding: 1.5rem;
    gap: 1.25rem;
  }
  
  #cookie-popup .popup-message p {
    padding-left: 3rem;
    font-size: 0.9rem;
  }
  
  #cookie-popup button {
    width: 100%;
    align-self: stretch;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    bottom: 15px;
    left: 15px;
    right: 15px;
    border-radius: 16px;
  }
  
  #cookie-popup .popup-content {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  #cookie-popup .popup-message::before {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
  
  #cookie-popup .popup-message p {
    padding-left: 2.75rem;
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

#features-slider {
  position: relative;
}

.swiper-slide {
  transition: filter 0.3s ease;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--accent-color);
  background: var(--nav-dropdown-background-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
}
@media (max-width:768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-next {
  right: 5%;
}

.swiper-button-prev {
  left: 5%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--nav-dropdown-background-color);
}

.list-cards {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.card-item {
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 4px 12px  var(--heading-color);
  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
  margin: 10px;
}
.card-item:hover {
  box-shadow: 0 8px 24px var(--heading-color);
  transform: translateY(-5px);
}
.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%;
  }
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  padding: 80px 0;
}

.success-story-item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.success-story-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.story-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.success-story-item h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.story-meta {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.story-content {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.story-result {
  margin-top: 20px;
}

.result-badge {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.cta-section {
  background: rgba(255, 255, 255, 0.6);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.cta-section h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--default-color);
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .success-story-item {
    padding: 20px;
  }
  
  .story-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Futuristic Benefits Section
--------------------------------------------------------------*/

.futuristic-benefits {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  padding: 100px 0;
}

.futuristic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #8b4513, transparent),
    radial-gradient(2px 2px at 40px 70px, #d4af37, transparent),
    radial-gradient(1px 1px at 90px 40px, #722f37, transparent),
    radial-gradient(1px 1px at 130px 80px, #8b4513, transparent),
    radial-gradient(2px 2px at 160px 30px, #d4af37, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
  opacity: 0.3;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-30px) translateX(30px); }
  66% { transform: translateY(30px) translateX(-20px); }
  100% { transform: translateY(0px) translateX(0px); }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(212, 175, 55, 0.1) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(74, 124, 42, 0.1) 100%);
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.title-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #8b4513, #d4af37);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

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

.futuristic-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-line {
  display: block;
  background: linear-gradient(45deg, #ffffff, #8b4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line.highlight {
  background: linear-gradient(45deg, #8b4513, #d4af37, #722f37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.futuristic-subtitle {
  font-size: 1.2rem;
  color: #b8b8b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.futuristic-card {
  position: relative;
  background: rgba(26, 26, 46, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.futuristic-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(45, 80, 22, 0.8);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8b4513, #d4af37, #722f37, #8b4513);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.futuristic-card:hover .card-glow {
  opacity: 1;
  animation: rotate 3s linear infinite;
}

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

.card-content {
  position: relative;
  z-index: 2;
}

.benefit-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(139, 69, 19, 0.2), rgba(74, 124, 42, 0.2));
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.benefit-icon {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #8b4513;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.futuristic-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.futuristic-card p {
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.card-footer {
  text-align: center;
}

.tech-indicator {
  display: inline-block;
  background: rgba(139, 69, 19, 0.2);
  color: #8b4513;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.process-overview-futuristic {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.process-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #ffffff;
}

.process-badge {
  display: block;
  background: linear-gradient(45deg, #722f37, #8b4513);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b4513, #d4af37, #722f37, #8b4513);
  z-index: 1;
  animation: lineFlow 3s ease-in-out infinite;
}

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

.process-step-futuristic {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-number-futuristic {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #8b4513, #d4af37);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  animation: stepPulse 2s ease-in-out infinite;
}

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

.step-content h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  color: #b8b8b8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.step-connector {
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8b4513, transparent);
  z-index: 1;
}

.process-step-futuristic:last-child .step-connector {
  display: none;
}

.cta-section-futuristic {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 30px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  margin-top: 80px;
}

.cta-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8b4513, #d4af37, #722f37, #8b4513);
  border-radius: 32px;
  z-index: -1;
  opacity: 0.3;
  animation: rotate 4s linear infinite;
}

.cta-section-futuristic h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section-futuristic p {
  color: #b8b8b8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-futuristic {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #8b4513, #d4af37);
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-futuristic:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(45, 80, 22, 0.4);
  color: #000;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-futuristic:hover .btn-glow {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .futuristic-title {
    font-size: 2.5rem;
  }
  
  .futuristic-card {
    padding: 20px;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .step-connector {
    display: none;
  }
  
  .cta-section-futuristic {
    padding: 40px 20px;
  }
  
  .cta-section-futuristic h3 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Futuristic About Section
--------------------------------------------------------------*/

.futuristic-about {
  position: relative;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  padding: 100px 0;
}

.futuristic-bg-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.geometric-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    polygon(20% 0%, 40% 20%, 20% 40%, 0% 20%),
    polygon(80% 0%, 100% 20%, 80% 40%, 60% 20%),
    polygon(20% 60%, 40% 80%, 20% 100%, 0% 80%),
    polygon(80% 60%, 100% 80%, 80% 100%, 60% 80%);
  background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px;
  background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.1;
  animation: geometricFloat 15s ease-in-out infinite;
}

@keyframes geometricFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(2deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

.gradient-overlay-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(61, 107, 31, 0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(45, 80, 22, 0.1) 100%);
  animation: gradientShiftAbout 10s ease-in-out infinite;
}

@keyframes gradientShiftAbout {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.title-wrapper-about {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-badge-about {
  display: inline-block;
  background: linear-gradient(45deg, #722f37, #8b4513);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulseAbout 2.5s ease-in-out infinite;
}

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

.futuristic-title-about {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-line-about {
  display: block;
  background: linear-gradient(45deg, #ffffff, #722f37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-about.highlight-about {
  background: linear-gradient(45deg, #722f37, #8b4513, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlowAbout 3.5s ease-in-out infinite;
}

@keyframes textGlowAbout {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.4); }
}

.futuristic-subtitle-about {
  font-size: 1.2rem;
  color: #b8b8b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-card-futuristic {
  position: relative;
  background: rgba(15, 15, 35, 0.8);
  border: 1px solid rgba(61, 107, 31, 0.3);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.about-card-futuristic:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(61, 107, 31, 0.8);
  box-shadow: 0 20px 40px rgba(61, 107, 31, 0.2);
}

.card-glow-about {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #722f37, #8b4513, #d4af37, #722f37);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-card-futuristic:hover .card-glow-about {
  opacity: 1;
  animation: rotateAbout 3s linear infinite;
}

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

.card-content-about {
  position: relative;
  z-index: 2;
}

.icon-wrapper-about {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.icon-bg-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(61, 107, 31, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 50%;
  animation: iconPulseAbout 2.5s ease-in-out infinite;
}

@keyframes iconPulseAbout {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.icon-about {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #722f37;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about-card-futuristic h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.about-card-futuristic p {
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.card-footer-about {
  text-align: center;
}

.tech-badge-about {
  display: inline-block;
  background: rgba(61, 107, 31, 0.2);
  color: #722f37;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(61, 107, 31, 0.3);
}

.mission-statement {
  position: relative;
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(61, 107, 31, 0.3);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: blur(10px);
  margin-top: 60px;
}

.mission-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #722f37, #8b4513, #d4af37, #722f37);
  border-radius: 32px;
  z-index: -1;
  opacity: 0.3;
  animation: rotateAbout 4s linear infinite;
}

.mission-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.mission-content h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.mission-content p {
  color: #b8b8b8;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


/*--------------------------------------------------------------
# Futuristic FAQ Section
--------------------------------------------------------------*/

.futuristic-faq {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  overflow: hidden;
  padding: 100px 0;
}

.futuristic-bg-faq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.circuit-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, transparent 98%, #8b4513 100%),
    linear-gradient(0deg, transparent 98%, #d4af37 100%),
    linear-gradient(45deg, transparent 98%, #722f37 100%);
  background-size: 50px 50px, 30px 30px, 80px 80px;
  background-position: 0 0, 25px 25px, 40px 40px;
  opacity: 0.1;
  animation: circuitFlow 20s linear infinite;
}

@keyframes circuitFlow {
  0% { transform: translateX(0px) translateY(0px); }
  100% { transform: translateX(50px) translateY(50px); }
}

.gradient-overlay-faq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(74, 124, 42, 0.1) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(45, 80, 22, 0.1) 100%);
  animation: gradientShiftFaq 12s ease-in-out infinite;
}

@keyframes gradientShiftFaq {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.title-wrapper-faq {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-badge-faq {
  display: inline-block;
  background: linear-gradient(45deg, #d4af37, #8b4513);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulseFaq 3s ease-in-out infinite;
}

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

.futuristic-title-faq {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-line-faq {
  display: block;
  background: linear-gradient(45deg, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-faq.highlight-faq {
  background: linear-gradient(45deg, #d4af37, #8b4513, #722f37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlowFaq 4s ease-in-out infinite;
}

@keyframes textGlowFaq {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5); }
}

.futuristic-subtitle-faq {
  font-size: 1.2rem;
  color: #b8b8b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-container-futuristic {
  position: relative;
  z-index: 2;
}

.faq-item-futuristic {
  position: relative;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(74, 124, 42, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.faq-item-futuristic:hover {
  border-color: rgba(74, 124, 42, 0.8);
  box-shadow: 0 10px 30px rgba(74, 124, 42, 0.2);
}

.faq-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #d4af37, #8b4513, #722f37, #d4af37);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item-futuristic:hover .faq-glow {
  opacity: 1;
  animation: rotateFaq 3s linear infinite;
}

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

.faq-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.faq-icon-wrapper-faq {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, rgba(74, 124, 42, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon-futuristic {
  font-size: 1.5rem;
  color: #d4af37;
}

.faq-header h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle-futuristic {
  width: 30px;
  height: 30px;
  background: rgba(74, 124, 42, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-toggle-futuristic i {
  color: #d4af37;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item-futuristic:hover .faq-toggle-futuristic {
  background: rgba(74, 124, 42, 0.4);
  transform: scale(1.1);
}

.faq-content-futuristic {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 124, 42, 0.2);
}

.faq-content-futuristic p {
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.faq-active-futuristic .faq-content-futuristic {
  display: block;
}

/*--------------------------------------------------------------
# New Spiritual Design Styles
--------------------------------------------------------------*/

/* Logo Icon */
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  animation: rotate 10s linear infinite;
}

.logo-icon i {
  font-size: 20px;
  color: var(--spiritual-white);
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  background: var(--gradient-spiritual);
  color: var(--spiritual-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(45, 80, 22, 0.3); }
  to { box-shadow: 0 0 20px rgba(45, 80, 22, 0.6); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-title .title-line {
  display: block;
  color: var(--default-color);
}

.hero-title .title-line.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--default-color);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--spiritual-white);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
  color: var(--spiritual-white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent-color);
  padding: 15px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--gradient-aura);
  border-radius: 30px;
  opacity: 0.3;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.element {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 10%;
  animation-delay: 1.5s;
}

.element-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.element-4 {
  bottom: 10%;
  right: 20%;
  animation-delay: 4.5s;
}

/* Section Headers */
.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-secondary);
  color: var(--spiritual-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .title-line {
  display: block;
  color: var(--default-color);
}

.section-title .title-line.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* About Cards */
.about-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  height: 100%;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: var(--spiritual-white);
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-aura);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.about-card:hover .card-glow {
  opacity: 0.1;
}

/* Practice Cards */
.practice-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(80, 227, 194, 0.1);
  height: 100%;
}

.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(80, 227, 194, 0.2);
}

.practice-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.practice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.practice-card:hover .practice-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.practice-card:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 3rem;
  color: var(--spiritual-white);
}

.practice-content {
  padding: 30px;
}

.practice-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.practice-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.practice-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--default-color);
}

.practice-features i {
  color: var(--spiritual-teal);
  font-size: 1.2rem;
}

/* Journey Timeline */
.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--gradient-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--spiritual-white);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.timeline-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spiritual-white);
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(106, 76, 147, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(106, 76, 147, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(106, 76, 147, 0.05);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  flex: 1;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--spiritual-purple);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px 25px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.6);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(80, 227, 194, 0.1);
}

.contact-form .form-control {
  background: transparent;
  border: 1px solid rgba(80, 227, 194, 0.2);
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--spiritual-teal);
  box-shadow: 0 0 0 3px rgba(80, 227, 194, 0.1);
  background: transparent;
  color: var(--default-color);
}

.contact-form .form-control::placeholder {
  color: var(--default-color);
  opacity: 0.6;
}

.contact-info {
  padding: 40px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spiritual-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.info-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

/* Newsletter Form */
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  display: flex;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 20px;
  color: var(--default-color);
  font-size: 1rem;
}

.newsletter-input input:focus {
  outline: none;
}

.newsletter-input input::placeholder {
  color: var(--default-color);
  opacity: 0.6;
}

.newsletter-input button {
  background: var(--gradient-primary);
  color: var(--spiritual-white);
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

/* Footer Updates */
.footer-about .logo-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-about .logo-icon i {
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(139, 69, 19, 0.2);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.6;
}


/* Modern Practice Cards */
.practice-card-modern {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.practice-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.2);
}

.practice-image-modern {
  height: 250px;
  position: relative;
}

.practice-image-modern img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.5s ease;
}

.practice-card-modern:hover .practice-image-modern img {
  transform: scale(1.1);
}

.image-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.7), rgba(45, 80, 22, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.practice-card-modern:hover .image-overlay-modern {
  opacity: 1;
}

.play-button {
  font-size: 4rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.practice-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--dark-green);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.practice-content-modern {
  background: rgba(255, 255, 255, 0.6);
}

.practice-icon {
  font-size: 2.5rem;
  color: var(--antique-brown);
  margin-bottom: 1rem;
}

.practice-content-modern h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
}

.practice-features-modern li {
  padding: 0.5rem 0;
  color: var(--default-color);
  opacity: 0.9;
}

.practice-features-modern i {
  color: var(--antique-brown);
}

.practice-link {
  color: var(--antique-brown);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.practice-link:hover {
  color: var(--antique-brown);
}

/* Modern Journey Steps */
.journey-timeline-modern {
  margin-top: 3rem;
}

.journey-step {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--dark-green), var(--dark-green-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.journey-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
  border-color: var(--dark-green);
}

.journey-step:hover::before {
  opacity: 1;
}

.step-number-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--antique-brown);
  opacity: 0.2;
  line-height: 1;
}

.step-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--antique-brown);
}

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

.step-content p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.step-tag {
  background: rgba(45, 80, 22, 0.1);
  color: var(--antique-brown);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Modern Footer */
.footer-main {
  padding: 4rem 0 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(45, 80, 22, 0.1);
}

.footer-brand {
  color: var(--default-color);
}

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

.sitename-large {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
}

.footer-social {
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50%;
  color: var(--antique-brown);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-3px);
  border-color: var(--dark-green);
}

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

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

.footer-links-modern a {
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links-modern a:hover {
  opacity: 1;
  color: var(--antique-brown);
  padding-left: 5px;
}

.footer-links-modern i {
  color: var(--antique-brown);
  width: 20px;
}

.newsletter-form-modern .form-control {
  background: transparent;
  border: 1px solid rgba(139, 69, 19, 0.2);
  color: var(--default-color);
  padding: 12px 16px;
  border-radius: 8px 0 0 8px;
}

.newsletter-form-modern .form-control:focus {
  border-color: var(--dark-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
  background: transparent;
  color: var(--default-color);
}

.btn-newsletter {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, var(--dark-green-light), var(--dark-green));
  transform: translateX(-2px);
}

.footer-legal h6 {
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-bottom-modern {
  background: transparent;
  border-top: 1px solid rgba(139, 69, 19, 0.2);
  padding: 1.5rem 0;
}

.footer-bottom-modern p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* New Hero Styles */
.hero-content-new {
  padding: 2rem 0;
}

.hero-badge-new {
  display: inline-block;
}

.badge-text {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.2));
  color: var(--antique-brown);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.hero-title-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.hero-description-new {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
  color: white;
}

.btn-hero-secondary {
  background: transparent;
  color: var(--antique-brown);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--dark-green);
}

.btn-hero-secondary:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-2px);
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  font-size: 0.95rem;
}

.highlight-item i {
  color: var(--antique-brown);
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
}

.hero-image-new {
  position: relative;
}

.image-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--dark-green);
  border-radius: 16px;
  z-index: 0;
}

.hero-img-main {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.3);
  animation: float-badge 3s ease-in-out infinite;
}

.floating-badge i {
  color: var(--antique-brown);
  font-size: 1.2rem;
}

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

.badge-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 30%;
  right: -5%;
  animation-delay: 1s;
}

.badge-3 {
  top: 50%;
  left: -10%;
  animation-delay: 2s;
}

@keyframes float-badge {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
    box-shadow: 0 16px 48px rgba(139, 69, 19, 0.25);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
  }
}

/* Feature Cards New */
.feature-card-new {
  background: rgba(255, 255, 255, 0.6);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-new:hover::before {
  transform: scaleX(1);
}

.feature-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
  border-color: var(--dark-green);
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.feature-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 16px;
  transform: rotate(45deg);
}

.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--antique-brown);
  z-index: 1;
}

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

.feature-description {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list i {
  color: var(--antique-brown);
  font-size: 1.1rem;
}

/* Feature Details Section */
.feature-details-section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(139, 69, 19, 0.2);
}

.feature-detail-image {
  position: relative;
}

.feature-detail-image img {
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.detail-badge {
  display: inline-block;
  background: rgba(45, 80, 22, 0.1);
  color: var(--antique-brown);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.detail-description {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.detail-features {
  margin-top: 2rem;
}

.detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.detail-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.detail-text p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonial-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.15);
  border-color: var(--dark-green);
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--dark-green);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.25rem 0;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0;
}

.testimonial-rating {
  color: var(--antique-brown);
  font-size: 1rem;
}

.testimonial-content {
  margin: 1.5rem 0;
}

.testimonial-text {
  color: var(--default-color);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-footer {
  text-align: right;
  margin-top: 1rem;
}

.testimonial-footer i {
  font-size: 3rem;
  color: var(--antique-brown);
  opacity: 0.2;
}

/* New Footer Styles */
.footer-new {
  background: transparent;
}

.footer-top-new {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(139, 69, 19, 0.2);
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.footer-logo-icon i {
  font-size: 1.8rem;
  color: white;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
}

.footer-description {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
}

.footer-social-new {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--antique-brown);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-3px);
  border-color: var(--dark-green);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-menu a {
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  opacity: 1;
  color: var(--antique-brown);
  padding-left: 5px;
}

.widget-description {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 0.95rem;
}

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

.newsletter-group {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(139, 69, 19, 0.2);
  color: var(--default-color);
  border-radius: 8px 0 0 8px;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--dark-green);
  background: rgba(255, 255, 255, 0.6);
  color: var(--default-color);
}

.newsletter-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border: none;
  color: white;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--dark-green-light), var(--dark-green));
  transform: translateX(-2px);
}

.footer-contact-new {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--default-color);
  opacity: 0.8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--antique-brown);
  width: 20px;
}

.contact-item a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--antique-brown);
}

.footer-bottom-new {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(139, 69, 19, 0.2);
  padding: 1.5rem 0;
}

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

.footer-copyright p,
.footer-made-with p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-made-with i {
  color: var(--antique-brown);
  margin: 0 4px;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Page Hero Styles (for non-index pages) */
.hero-page {
  padding: 6rem 0 4rem;
}

.min-vh-75 {
  min-height: 75vh;
}

.page-hero-content {
  padding: 2rem 0;
}

.page-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.2));
  color: var(--antique-brown);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 1.5rem;
}

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

.page-hero-description {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.page-hero-image {
  position: relative;
}

.page-hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Card New */
.about-card-new {
  background: rgba(255, 255, 255, 0.6);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-card-new:hover::before {
  transform: scaleX(1);
}

.about-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
  border-color: var(--dark-green);
}

.about-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-icon-wrapper i {
  font-size: 2rem;
  color: var(--antique-brown);
}

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

.about-card-text {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card-list i {
  color: var(--antique-brown);
  font-size: 1.1rem;
}

/* Mission New Styles */
.mission-content-new {
  padding: 2rem 0;
}

.mission-badge {
  display: inline-block;
  background: rgba(45, 80, 22, 0.1);
  color: var(--antique-brown);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.mission-text {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}


.mission-image-new {
  position: relative;
}

.mission-image-new img {
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mission-image-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

/* Value Card New */
.value-card-new {
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.15);
  border-color: var(--dark-green);
}

.value-icon-new {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon-new i {
  font-size: 2rem;
  color: var(--antique-brown);
}

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

.value-text {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  
  .practice-card-modern {
    margin-bottom: 2rem;
  }
  
  .journey-step {
    margin-bottom: 2rem;
  }
  
  .footer-main {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-title {
    margin-top: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .timeline-item {
    flex-direction: column !important;
    text-align: center;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .journey-timeline::before {
    display: none;
  }
  
  .floating-elements {
    display: none;
  }
}

.faq-active-futuristic .faq-toggle-futuristic i {
  transform: rotate(180deg);
}

/* Responsive Design for About and FAQ */
@media (max-width: 768px) {
  .futuristic-title-about,
  .futuristic-title-faq {
    font-size: 2.5rem;
  }
  
  .about-card-futuristic,
  .faq-content-wrapper {
    padding: 20px;
  }
  
  .mission-statement {
    padding: 30px 20px;
  }
  
  
  .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .faq-header h3 {
    font-size: 1.1rem;
  }
}

/* Thanks Page Styles */
.thanks-section {
  padding: 6rem 0 4rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks-content {
  padding: 4rem 0;
  background: linear-gradient(135deg,
    rgba(245, 245, 220, 0.06) 0%,
    rgba(74, 44, 26, 0.03) 50%,
    rgba(139, 69, 19, 0.05) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.thanks-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 25% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 70%),
    radial-gradient(circle at 75% 70%, rgba(114, 47, 55, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.thanks-icon {
  margin-bottom: 2rem;
}

.icon-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(139, 69, 19, 0.15) 50%,
    rgba(114, 47, 55, 0.2) 100%);
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(139, 69, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: antiquePulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.icon-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.4),
    rgba(139, 69, 19, 0.3),
    rgba(114, 47, 55, 0.4));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

@keyframes antiquePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 10px 30px rgba(139, 69, 19, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 15px 45px rgba(139, 69, 19, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.4);
  }
}

.icon-circle i {
  font-size: 4rem;
  color: white;
}

.thanks-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.thanks-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light),
    var(--burgundy));
  border-radius: 2px;
  opacity: 0.8;
}

.thanks-subtitle {
  font-size: 1.5rem;
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.thanks-description {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.thanks-actions {
  margin-top: 3rem;
}

/* What's Next Section */
.whats-next-section {
  padding: 4rem 0;
}

.next-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.next-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
  border-color: var(--dark-green);
}

.next-icon-wrapper {
  margin-bottom: 1.5rem;
}

.next-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.next-card:hover .next-icon-bg {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  transform: scale(1.1);
}

.next-icon-bg i {
  font-size: 2.5rem;
  color: var(--antique-brown);
  transition: all 0.3s ease;
}

.next-card:hover .next-icon-bg i {
  color: white;
}

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

.next-text {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.next-link {
  color: var(--antique-brown);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.next-link:hover {
  color: var(--antique-brown);
  padding-left: 5px;
}

.next-link i {
  transition: transform 0.3s ease;
}

.next-link:hover i {
  transform: translateX(5px);
}

/* Responsive Design for Thanks Page */
@media (max-width: 768px) {
  .thanks-section {
    padding: 4rem 0 3rem;
  }
  
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .thanks-subtitle {
    font-size: 1.2rem;
  }
  
  .thanks-description {
    font-size: 1rem;
  }
  
  .icon-circle {
    width: 100px;
    height: 100px;
  }
  
  .icon-circle i {
    font-size: 3rem;
  }
  
  .next-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .thanks-actions .btn-hero-primary,
  .thanks-actions .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# New Hero Section Styles
--------------------------------------------------------------*/
.hero-section-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(245, 245, 220, 0.1) 0%,
    rgba(139, 69, 19, 0.05) 50%,
    rgba(74, 44, 26, 0.1) 100%);
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(139, 69, 19, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(114, 47, 55, 0.04) 0%, transparent 80%);
  animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(3px 3px at 15% 25%, rgba(139, 69, 19, 0.4), transparent),
    radial-gradient(2px 2px at 45% 65%, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(1px 1px at 75% 35%, rgba(114, 47, 55, 0.5), transparent),
    radial-gradient(2px 2px at 85% 75%, rgba(74, 44, 26, 0.3), transparent),
    radial-gradient(1px 1px at 35% 85%, rgba(139, 69, 19, 0.2), transparent);
  background-size: 250px 250px;
  animation: particlesFloat 25s linear infinite;
  opacity: 0.6;
}

@keyframes particlesFloat {
  0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  25% { transform: translateY(-20px) translateX(15px) rotate(90deg); }
  50% { transform: translateY(-35px) translateX(-10px) rotate(180deg); }
  75% { transform: translateY(-15px) translateX(-25px) rotate(270deg); }
  100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.2) 0%,
    rgba(212, 175, 55, 0.15) 50%,
    rgba(114, 47, 55, 0.2) 100%);
  border: 2px solid rgba(212, 175, 55, 0.4);
  padding: 12px 24px;
  border-radius: 60px;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(15px);
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-badge-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-badge-icon {
  font-size: 1.2rem;
}

.hero-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

.hero-title-line {
  display: block;
  color: var(--default-color);
}

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

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light),
    var(--burgundy));
  border-radius: 2px;
  opacity: 0.7;
}

.hero-description-main {
  font-size: 1.15rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--default-color);
  font-size: 1rem;
}

.hero-feature-item i {
  color: var(--antique-brown);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-actions-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
  color: white;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--antique-brown);
  padding: 16px 32px;
  border: 2px solid var(--dark-green);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-3px);
}


.hero-visual-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-glow {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 30px;
  opacity: 0.2;
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.hero-image-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.hero-floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.floating-card-content {
  display: flex;
  flex-direction: column;
}

.floating-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.floating-card-text {
  font-size: 0.8rem;
  color: var(--default-color);
  opacity: 0.8;
}

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

.floating-card.card-2 {
  bottom: 30%;
  right: -10%;
  animation-delay: 1.3s;
}

.floating-card.card-3 {
  top: 50%;
  left: -15%;
  animation-delay: 2.6s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@media (max-width: 991px) {
  .hero-section-new {
    padding: 80px 0;
    min-height: auto;
  }
  
  .hero-title-main {
    font-size: 2.5rem;
  }
  
  .hero-description-main {
    font-size: 1rem;
  }
  
  
  .floating-card {
    display: none;
  }
  
  .hero-actions-wrapper {
    flex-direction: column;
  }
  
  .btn-hero-main,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# New Journey Section Styles
--------------------------------------------------------------*/
.journey-section-new {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg,
    rgba(245, 245, 220, 0.05) 0%,
    rgba(139, 69, 19, 0.03) 50%,
    rgba(114, 47, 55, 0.02) 100%);
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(74, 44, 26, 0.1);
}

.journey-background-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.journey-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.06) 1px, transparent 1px),
    linear-gradient(45deg, rgba(114, 47, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 40px 40px;
  opacity: 0.4;
  animation: patternShift 30s ease-in-out infinite;
}

@keyframes patternShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-10px, -5px) rotate(1deg); }
  66% { transform: translate(5px, -15px) rotate(-1deg); }
}

.journey-header-wrapper {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg,
    rgba(74, 44, 26, 0.2) 0%,
    rgba(139, 69, 19, 0.15) 50%,
    rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  padding: 12px 28px;
  border-radius: 60px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  box-shadow:
    0 6px 24px rgba(139, 69, 19, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.journey-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent
  );
  animation: rotate 8s linear infinite;
}

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

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

.journey-badge span {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.journey-title-main {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.journey-title-line {
  display: block;
  color: var(--default-color);
}

.journey-title-highlight {
  background: linear-gradient(135deg,
    var(--burgundy) 0%,
    var(--antique-brown-light) 50%,
    var(--antique-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.journey-description-main {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.journey-steps-container {
  position: relative;
  z-index: 2;
}

.journey-timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dark-green), var(--dark-green-light), transparent);
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}

@media (min-width: 992px) {
  .journey-timeline-line {
    display: block;
  }
}

.journey-step-card {
  background: transparent;
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  overflow: hidden;
}

.journey-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.journey-step-card:hover::before {
  transform: scaleX(1);
}

.journey-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
  border-color: var(--dark-green);
}

.step-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.step-number-circle {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(139, 69, 19, 0.15));
  border: 2px solid rgba(45, 80, 22, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.journey-step-card:hover .step-number-circle {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-color: var(--dark-green);
  transform: scale(1.1);
}

.step-number {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--antique-brown);
  opacity: 0.2;
  z-index: 1;
}

.step-icon-wrapper {
  position: relative;
  z-index: 2;
}

.step-icon-wrapper i {
  font-size: 2rem;
  color: var(--antique-brown);
  transition: all 0.3s ease;
}

.journey-step-card:hover .step-icon-wrapper i {
  color: white;
}

.step-connector-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--dark-green), transparent);
  margin-left: 15px;
  display: none;
}

@media (min-width: 992px) {
  .step-connector-line {
    display: block;
  }
  
  .journey-step-card:last-child .step-connector-line {
    display: none;
  }
}

.step-card-body {
  position: relative;
  z-index: 2;
}

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

.step-card-description {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--default-color);
}

.step-card-list i {
  color: var(--antique-brown);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .journey-section-new {
    padding: 80px 0;
  }
  
  .journey-header-wrapper {
    margin-bottom: 3rem;
  }
  
  .journey-title-main {
    font-size: 2.2rem;
  }
  
  .journey-step-card {
    margin-bottom: 2rem;
  }
  
  .step-number-circle {
    width: 70px;
    height: 70px;
  }
  
  .step-number {
    font-size: 2rem;
  }
  
  .step-icon-wrapper i {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Header Modern Styles
--------------------------------------------------------------*/
.header-modern {
  background-color: transparent;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

.header-top-bar {
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
  padding: 10px 0;
  backdrop-filter: blur(10px);
}

.header-contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  font-size: 0.9rem;
  opacity: 0.9;
}

.header-contact-item i {
  color: var(--antique-brown);
  font-size: 1rem;
}

.header-contact-item a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-contact-item a:hover {
  color: var(--antique-brown);
}

.header-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.header-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50%;
  color: var(--antique-brown);
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-social-link:hover {
  background: var(--dark-green);
  color: white;
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

.header-main {
  background-color: transparent;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header-main.sticky-top {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scrolled .header-main {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.logo-icon:hover {
  transform: rotate(5deg) scale(1.05);
}

.logo-icon i {
  font-size: 1.5rem;
  color: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 2px;
}

.logo-tagline {
  font-size: 0.85rem;
  color: var(--antique-brown);
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: var(--default-color);
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px;
  width: 0;
  height: 2px;
  background: var(--dark-green);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--antique-brown);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  color: var(--default-color);
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(45, 80, 22, 0.1);
  color: var(--antique-brown);
}

.btn-primary-modern {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
  color: white;
}

.navbar-toggler {
  border: 2px solid rgba(212, 175, 55, 0.3);
  padding: 8px 12px;
  border-radius: 6px;
}

.navbar-toggler-icon {
  color: var(--antique-brown);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
}

@media (max-width: 991px) {
  .header-contact-info {
    justify-content: center;
  }
  
  .header-social {
    justify-content: center;
    margin-top: 10px;
  }
  
  .navbar-collapse {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(45, 80, 22, 0.1);
  }
  
  .nav-link {
    padding: 12px 0;
  }
  
  .header-cta {
    margin-top: 15px;
    text-align: center;
  }
  
  .btn-primary-modern {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Footer Modern Styles
--------------------------------------------------------------*/
.footer-modern {
  background-color: transparent;
  color: var(--default-color);
  position: relative;
}

.footer-main {
  padding: 4rem 0 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(45, 80, 22, 0.1);
  backdrop-filter: blur(10px);
}

.footer-logo-link {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo-modern {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-logo-icon-modern:hover {
  transform: rotate(5deg) scale(1.05);
}

.footer-logo-icon-modern i {
  font-size: 1.8rem;
  color: white;
}

.footer-logo-text-modern {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 2px;
}

.footer-logo-tagline {
  font-size: 0.85rem;
  color: var(--antique-brown);
  font-weight: 600;
  letter-spacing: 1px;
}

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


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

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

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

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

.footer-links a {
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--antique-brown);
  padding-left: 5px;
}

.footer-newsletter-text {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.input-group-modern {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(139, 69, 19, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.form-control-modern {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--default-color);
  font-size: 0.95rem;
}

.form-control-modern:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--default-color);
}

.form-control-modern::placeholder {
  color: var(--default-color);
  opacity: 0.6;
}

.btn-newsletter-modern {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border: none;
  color: white;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-newsletter-modern:hover {
  background: linear-gradient(135deg, var(--dark-green-light), var(--dark-green));
  transform: scale(1.05);
}

.btn-newsletter-modern i {
  font-size: 1.1rem;
}

.footer-contact-modern {
  margin-top: 1.5rem;
}

.contact-item-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--default-color);
  opacity: 0.8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact-item-modern i {
  color: var(--antique-brown);
  width: 20px;
  flex-shrink: 0;
}

.contact-item-modern a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-modern a:hover {
  color: var(--antique-brown);
}

.footer-bottom-modern {
  background-color: transparent;
  border-top: 1px solid rgba(45, 80, 22, 0.1);
  padding: 1.5rem 0;
}

.footer-copyright-modern {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-copyright-modern strong {
  color: var(--heading-color);
  font-weight: 700;
}

.footer-social-modern {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.social-link-modern {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50%;
  color: var(--antique-brown);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-modern:hover {
  background: var(--dark-green);
  color: white;
  border-color: var(--dark-green);
  transform: translateY(-3px);
}

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

@media (max-width: 991px) {
  .footer-main {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 2.5rem;
  }
  
  
  .footer-social-modern {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom-modern {
    text-align: center;
  }
  
  .footer-copyright-modern {
    margin-bottom: 1rem;
  }
}

/*--------------------------------------------------------------
# Features Section New - Interactive
--------------------------------------------------------------*/
.features-section-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(245, 245, 220, 0.08) 0%,
    rgba(74, 44, 26, 0.04) 50%,
    rgba(139, 69, 19, 0.06) 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.15);
  border-bottom: 2px solid rgba(114, 47, 55, 0.1);
}

.features-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.features-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 65% 20%, rgba(139, 69, 19, 0.06) 0%, transparent 70%),
    radial-gradient(circle at 85% 80%, rgba(114, 47, 55, 0.07) 0%, transparent 50%),
    linear-gradient(45deg, rgba(74, 44, 26, 0.03) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 80px 80px, 30px 30px;
  animation: pattern-move 25s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes pattern-move {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
}

.features-header-wrapper {
  position: relative;
  z-index: 1;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: float-badge 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.features-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.features-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.features-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.features-title-main {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.features-title-line {
  display: block;
  line-height: 1.2;
}

.features-title-highlight {
  background: linear-gradient(135deg,
    var(--antique-gold) 0%,
    var(--antique-brown-light) 50%,
    var(--burgundy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.features-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light),
    var(--burgundy));
  border-radius: 2px;
  opacity: 0.8;
}

.features-description-new {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  opacity: 0.9;
}

/* Feature Card Interactive */
.feature-card-interactive {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(30, 90, 30, 0.3));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card-interactive:hover .feature-card-glow {
  opacity: 1;
}

.feature-card-content {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.feature-card-interactive:hover .feature-card-content {
  transform: translateY(-10px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.feature-icon-wrapper-interactive {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.1);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.feature-icon-bg-interactive {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-card-interactive:hover .feature-icon-bg-interactive {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  transform: scale(1.1);
}

.feature-icon-interactive {
  position: relative;
  font-size: 2.5rem;
  color: var(--antique-brown);
  z-index: 1;
  transition: all 0.4s ease;
}

.feature-card-interactive:hover .feature-icon-interactive {
  transform: scale(1.1) rotate(5deg);
  color: var(--dark-green-light);
}

.feature-title-interactive {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card-interactive:hover .feature-title-interactive {
  color: var(--antique-brown);
}

.feature-description-interactive {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  flex-grow: 1;
}

.feature-list-interactive {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: slide-in-item 0.5s ease forwards;
}

.feature-list-item:nth-child(1) { animation-delay: 0.1s; }
.feature-list-item:nth-child(2) { animation-delay: 0.2s; }
.feature-list-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slide-in-item {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-list-item i {
  color: var(--antique-brown);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-list-item span {
  color: var(--default-color);
  font-size: 0.95rem;
}

.feature-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card-interactive:hover .feature-hover-effect {
  transform: scaleX(1);
}

/* Feature Details New */
.feature-details-section-new {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

.feature-detail-image-new {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.feature-image-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  filter: blur(30px);
  z-index: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.feature-image-main {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.feature-detail-image-new:hover .feature-image-main {
  transform: scale(1.05);
}

.feature-image-decoration {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.feature-detail-content-new {
  position: relative;
  z-index: 1;
}

.detail-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.detail-badge-new i {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.detail-badge-new span {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
}

.detail-title-new {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.detail-description-new {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}

.detail-features-new {
  margin-top: 2rem;
}

.detail-item-new {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.detail-item-new:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(139, 69, 19, 0.2);
  transform: translateX(5px);
}

.detail-icon-new {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 12px;
  flex-shrink: 0;
}

.detail-icon-new i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.detail-text-new h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.detail-text-new p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Testimonials Section New - Swiper Slider
--------------------------------------------------------------*/
.testimonials-section-new {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(114, 47, 55, 0.02) 0%,
    rgba(139, 69, 19, 0.03) 50%,
    rgba(74, 44, 26, 0.04) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(74, 44, 26, 0.15);
}

.testimonials-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.testimonials-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(114, 47, 55, 0.06) 0%, transparent 70%),
    radial-gradient(circle at 60% 70%, rgba(139, 69, 19, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 80%),
    linear-gradient(135deg, rgba(74, 44, 26, 0.02) 1px, transparent 1px);
  background-size: 120px 80px, 90px 90px, 150px 100px, 35px 35px;
  animation: pattern-move 30s ease-in-out infinite reverse;
  opacity: 0.6;
}

.testimonials-header-wrapper {
  position: relative;
  z-index: 1;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 245, 220, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(25px);
  box-shadow:
    0 10px 40px rgba(139, 69, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  animation: float-badge 4.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.testimonials-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    rgba(139, 69, 19, 0.05),
    transparent);
  animation: slide 4s ease-in-out infinite;
}

@keyframes slide {
  0% { left: -100%; }
  100% { left: 100%; }
}

.testimonials-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.testimonials-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.testimonials-title-main {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonials-title-line {
  display: block;
  line-height: 1.2;
}

.testimonials-title-highlight {
  background: linear-gradient(135deg,
    var(--burgundy) 0%,
    var(--antique-brown-light) 30%,
    var(--antique-gold) 70%,
    var(--antique-brown) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.testimonials-title-highlight::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg,
    var(--burgundy),
    var(--antique-gold),
    var(--antique-brown));
  border-radius: 2px;
  opacity: 0.7;
}

.testimonials-description-new {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  opacity: 0.9;
}

/* Testimonials Swiper */
.testimonials-swiper-wrapper {
  position: relative;
  z-index: 1;
  padding: 2rem 0 4rem;
  overflow: hidden;
}

.testimonials-swiper {
  padding: 2rem 2rem 4rem !important;
  overflow: hidden;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.testimonials-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.02);
}

.testimonial-card-new {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.testimonials-swiper .swiper-slide-active .testimonial-card-glow {
  opacity: 1;
}

.testimonial-card-content {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.testimonials-swiper .swiper-slide-active .testimonial-card-content {
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  opacity: 0.5;
}

.testimonial-quote-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.testimonial-header-new {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar-new {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.avatar-glow {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  animation: avatar-pulse 2s ease-in-out infinite;
}

@keyframes avatar-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.testimonial-avatar-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.testimonial-info-new {
  flex: 1;
}

.testimonial-name-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.testimonial-role-new {
  color: var(--default-color);
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.testimonial-rating-new {
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating-new i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-content-new {
  flex: 1;
  display: flex;
  align-items: center;
}

.testimonial-text-new {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  opacity: 0.9;
}

/* Swiper Navigation */
.testimonials-nav-next,
.testimonials-nav-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50%;
  color: var(--antique-brown);
  transition: all 0.3s ease;
  margin-top: -25px;
}

.testimonials-nav-next:hover,
.testimonials-nav-prev:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--dark-green);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.testimonials-nav-next::after,
.testimonials-nav-prev::after {
  display: none;
}

.testimonials-nav-next i,
.testimonials-nav-prev i {
  font-size: 1.25rem;
}

/* Swiper Pagination */
.testimonials-pagination {
  position: relative !important;
  margin-top: 2rem;
  bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(45, 80, 22, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--dark-green);
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .features-title-main,
  .testimonials-title-main {
    font-size: 2rem;
  }
  
  .feature-card-content,
  .testimonial-card-content {
    padding: 2rem;
  }
  
  .testimonials-nav-next,
  .testimonials-nav-prev {
    display: none;
  }
}

/*--------------------------------------------------------------
# About Page Styles - New Interactive
--------------------------------------------------------------*/
.about-section-new {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.about-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 90, 30, 0.05) 0%, transparent 50%);
  animation: pattern-move 20s ease-in-out infinite;
}

.about-header-wrapper {
  position: relative;
  z-index: 1;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float-badge 3s ease-in-out infinite;
}

.about-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.about-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.about-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.about-title-line {
  display: block;
  line-height: 1.2;
}

.about-title-highlight {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description-new {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  opacity: 0.9;
}

/* About Card Interactive */
.about-card-interactive {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(30, 90, 30, 0.3));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.about-card-interactive:hover .about-card-glow {
  opacity: 1;
}

.about-card-content {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.about-card-interactive:hover .about-card-content {
  transform: translateY(-10px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.about-icon-wrapper-interactive {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.1);
  animation: pulse-icon 2s ease-in-out infinite;
}

.about-icon-bg-interactive {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.about-card-interactive:hover .about-icon-bg-interactive {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  transform: scale(1.1);
}

.about-icon-interactive {
  position: relative;
  font-size: 2.5rem;
  color: var(--antique-brown);
  z-index: 1;
  transition: all 0.4s ease;
}

.about-card-interactive:hover .about-icon-interactive {
  transform: scale(1.1) rotate(5deg);
  color: var(--dark-green-light);
}

.about-card-title-interactive {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.about-card-interactive:hover .about-card-title-interactive {
  color: var(--antique-brown);
}

.about-card-text-interactive {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  flex-grow: 1;
}

.about-card-list-interactive {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: slide-in-item 0.5s ease forwards;
}

.about-list-item:nth-child(1) { animation-delay: 0.1s; }
.about-list-item:nth-child(2) { animation-delay: 0.2s; }
.about-list-item:nth-child(3) { animation-delay: 0.3s; }

.about-list-item i {
  color: var(--antique-brown);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-list-item span {
  color: var(--default-color);
  font-size: 0.95rem;
}

.about-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-card-interactive:hover .about-hover-effect {
  transform: scaleX(1);
}

/* Mission Section New */
.mission-section-new {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.mission-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.mission-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 90, 30, 0.05) 0%, transparent 50%);
  animation: pattern-move 25s ease-in-out infinite reverse;
}

.mission-content-new {
  position: relative;
  z-index: 1;
}

.mission-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.mission-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.mission-badge-new span {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
}

.mission-title-new {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.mission-text-new {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}



.mission-image-new {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.mission-image-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  filter: blur(30px);
  z-index: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}

.mission-image-main {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.mission-image-new:hover .mission-image-main {
  transform: scale(1.05);
}

.mission-image-decoration {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

/* Values Section New */
.values-section-new {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.values-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.values-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 50%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(30, 90, 30, 0.05) 0%, transparent 50%);
  animation: pattern-move 20s ease-in-out infinite;
}

.values-header-wrapper {
  position: relative;
  z-index: 1;
}

.values-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float-badge 3s ease-in-out infinite;
}

.values-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.values-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.values-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.values-title-line {
  display: block;
  line-height: 1.2;
}

.values-title-highlight {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-card-interactive {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(30, 90, 30, 0.3));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.value-card-interactive:hover .value-card-glow {
  opacity: 1;
}

.value-card-content {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-card-interactive:hover .value-card-content {
  transform: translateY(-10px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.value-icon-wrapper-interactive {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.1);
  animation: pulse-icon 2s ease-in-out infinite;
}

.value-icon-bg-interactive {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.value-card-interactive:hover .value-icon-bg-interactive {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  transform: scale(1.1);
}

.value-icon-interactive {
  position: relative;
  font-size: 2rem;
  color: var(--antique-brown);
  z-index: 1;
  transition: all 0.4s ease;
}

.value-card-interactive:hover .value-icon-interactive {
  transform: scale(1.1) rotate(5deg);
  color: var(--dark-green-light);
}

.value-title-interactive {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.value-card-interactive:hover .value-title-interactive {
  color: var(--antique-brown);
}

.value-text-interactive {
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

.value-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card-interactive:hover .value-hover-effect {
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# Contact Page Styles - New Interactive
--------------------------------------------------------------*/
.contact-section-new {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.contact-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 90, 30, 0.05) 0%, transparent 50%);
  animation: pattern-move 20s ease-in-out infinite;
}

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

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float-badge 3s ease-in-out infinite;
}

.contact-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.contact-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.contact-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.contact-title-line {
  display: block;
  line-height: 1.2;
}

.contact-title-highlight {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-description-new {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  opacity: 0.9;
}

/* Contact Form New */
.contact-form-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.contact-form-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.contact-form-wrapper:hover .contact-form-glow {
  opacity: 1;
}

.contact-form-new {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  z-index: 1;
}

.form-group-new {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-label-new {
  display: block;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-control-new {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control-new:focus {
  outline: none;
  border-color: var(--dark-green);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
}

.form-textarea-new {
  resize: vertical;
  min-height: 150px;
}

.form-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transition: width 0.3s ease;
}

.form-control-new:focus ~ .form-focus-line {
  width: 100%;
}

.btn-contact-submit {
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Contact Info New */
.contact-info-new {
  position: relative;
  z-index: 1;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(5px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.1);
}

.contact-info-icon-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon-glow {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.1);
  animation: pulse-icon 2s ease-in-out infinite;
}

.contact-info-icon {
  position: relative;
  font-size: 1.5rem;
  color: var(--antique-brown);
  z-index: 1;
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.contact-info-text {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.contact-info-text a {
  color: var(--antique-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: var(--dark-green-light);
}

/* Support Section New */
.support-section-new {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.support-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.support-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 90, 30, 0.05) 0%, transparent 50%);
  animation: pattern-move 25s ease-in-out infinite reverse;
}

.support-header-wrapper {
  position: relative;
  z-index: 1;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float-badge 3s ease-in-out infinite;
}

.support-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.support-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.support-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.support-title-line {
  display: block;
  line-height: 1.2;
}

.support-title-highlight {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-card-interactive {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(30, 90, 30, 0.3));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.support-card-interactive:hover .support-card-glow {
  opacity: 1;
}

.support-card-content {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-card-interactive:hover .support-card-content {
  transform: translateY(-10px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.support-icon-wrapper-interactive {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-icon-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.1);
  animation: pulse-icon 2s ease-in-out infinite;
}

.support-icon-bg-interactive {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.support-card-interactive:hover .support-icon-bg-interactive {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  transform: scale(1.1);
}

.support-icon-interactive {
  position: relative;
  font-size: 2rem;
  color: var(--antique-brown);
  z-index: 1;
  transition: all 0.4s ease;
}

.support-card-interactive:hover .support-icon-interactive {
  transform: scale(1.1) rotate(5deg);
  color: var(--dark-green-light);
}

.support-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.support-card-interactive:hover .support-card-title {
  color: var(--antique-brown);
}

.support-card-text {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  flex-grow: 1;
}

.btn-support-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-support-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
  color: white;
}

.support-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.support-card-interactive:hover .support-hover-effect {
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# FAQ Page Styles - New Interactive
--------------------------------------------------------------*/
.faq-section-new {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.faq-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.faq-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 90, 30, 0.05) 0%, transparent 50%);
  animation: pattern-move 20s ease-in-out infinite;
}

.faq-header-wrapper {
  position: relative;
  z-index: 1;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float-badge 3s ease-in-out infinite;
}

.faq-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.faq-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

.faq-title-line {
  display: block;
  line-height: 1.2;
}

.faq-title-highlight {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-description-new {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  opacity: 0.9;
}

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

.faq-item-new {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-new:hover {
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.1);
}

.faq-item-new.active {
  border-color: rgba(45, 80, 22, 0.4);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.faq-question-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-new:hover {
  background: rgba(255, 255, 255, 0.5);
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 80, 22, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item-new.active .faq-icon-wrapper {
  background: rgba(139, 69, 19, 0.2);
  transform: rotate(180deg);
}

.faq-icon {
  color: var(--antique-brown);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item-new.active .faq-answer-new {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer-new p {
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
  opacity: 0.9;
}

/* FAQ Categories Section */
.faq-categories-section-new {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.faq-categories-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.faq-categories-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 90, 30, 0.05) 0%, transparent 50%);
  animation: pattern-move 25s ease-in-out infinite reverse;
}

.faq-categories-header-wrapper {
  position: relative;
  z-index: 1;
}

.faq-categories-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float-badge 3s ease-in-out infinite;
}

.faq-categories-badge-icon {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.faq-categories-badge-text {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

.faq-categories-title-line {
  display: block;
  line-height: 1.2;
}

.faq-categories-title-highlight {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-category-card-interactive {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-category-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(30, 90, 30, 0.3));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.faq-category-card-interactive:hover .faq-category-card-glow {
  opacity: 1;
}

.faq-category-card-content {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-category-card-interactive:hover .faq-category-card-content {
  transform: translateY(-10px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.faq-category-icon-wrapper-interactive {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-category-icon-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.1);
  animation: pulse-icon 2s ease-in-out infinite;
}

.faq-category-icon-bg-interactive {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.faq-category-card-interactive:hover .faq-category-icon-bg-interactive {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  transform: scale(1.1);
}

.faq-category-icon-interactive {
  position: relative;
  font-size: 2rem;
  color: var(--antique-brown);
  z-index: 1;
  transition: all 0.4s ease;
}

.faq-category-card-interactive:hover .faq-category-icon-interactive {
  transform: scale(1.1) rotate(5deg);
  color: var(--dark-green-light);
}

.faq-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.faq-category-card-interactive:hover .faq-category-title {
  color: var(--antique-brown);
}

.faq-category-text {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  flex-grow: 1;
}

.faq-category-link {
  display: inline-flex;
  align-items: center;
  color: var(--antique-brown);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-category-link:hover {
  color: var(--dark-green-light);
  transform: translateX(5px);
}

.faq-category-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.faq-category-card-interactive:hover .faq-category-hover-effect {
  transform: scaleX(1);
}

/* FAQ Contact Section */
.faq-contact-section-new {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.faq-contact-background-new {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.faq-contact-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(45, 80, 22, 0.08) 0%, transparent 70%);
  animation: pattern-move 20s ease-in-out infinite;
}

.faq-contact-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 3rem;
}

.faq-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.faq-contact-badge i {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.faq-contact-badge span {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
}

.faq-contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq-contact-text {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-faq-contact {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-faq-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-title-main,
  .contact-title-main,
  .faq-title-main,
  .values-title-main,
  .support-title-main,
  .faq-categories-title-main {
    font-size: 2rem;
  }
  
  .about-card-content,
  .value-card-content,
  .support-card-content,
  .faq-category-card-content {
    padding: 2rem;
  }
  
}

/*--------------------------------------------------------------
# Page Hero Section - Redesigned
--------------------------------------------------------------*/
.page-hero-section {
  position: relative;
  padding: 10rem 0 8rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(245, 245, 220, 0.08) 0%,
      rgba(139, 69, 19, 0.06) 30%,
      rgba(114, 47, 55, 0.04) 60%,
      rgba(74, 44, 26, 0.08) 100%),
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.02) 0%, transparent 60%);
  border-bottom: 2px solid linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.3) 20%,
    rgba(212, 175, 55, 0.5) 50%,
    rgba(212, 175, 55, 0.3) 80%,
    transparent 100%);
  animation: heroMuseumEntrance 2s ease-out;
}

/* Museum-Style Hero Background System */
.page-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* Antique parchment texture simulation */
    radial-gradient(circle at 30% 30%, rgba(139, 69, 19, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(114, 47, 55, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(74, 44, 26, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.02) 1px, transparent 1px);
  background-size: 120px 120px, 80px 80px, 150px 150px, 100px 100px, 90px 90px;
  animation: museumTextureDrift 60s linear infinite;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    /* Museum lighting effects */
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 80%),
    radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 60% 20%, rgba(114, 47, 55, 0.03) 0%, transparent 75%),
    radial-gradient(circle at 40% 80%, rgba(74, 44, 26, 0.02) 0%, transparent 85%);
  animation: museumLightingShift 35s ease-in-out infinite;
}

/* Antique floating elements */
.page-hero-floating-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-antique-item {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(139, 69, 19, 0.08) 50%,
    rgba(114, 47, 55, 0.1) 100%);
  border-radius: 50%;
  animation: antiqueFloatItem 15s ease-in-out infinite;
  opacity: 0.6;
}

.floating-antique-item:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.floating-antique-item:nth-child(2) {
  top: 25%;
  right: 15%;
  width: 30px;
  height: 30px;
  animation-delay: 3s;
}

.floating-antique-item:nth-child(3) {
  bottom: 30%;
  left: 20%;
  width: 25px;
  height: 25px;
  animation-delay: 6s;
}

.floating-antique-item:nth-child(4) {
  top: 60%;
  right: 25%;
  width: 35px;
  height: 35px;
  animation-delay: 9s;
}

.floating-antique-item:nth-child(5) {
  bottom: 15%;
  right: 10%;
  width: 28px;
  height: 28px;
  animation-delay: 12s;
}

@keyframes heroMuseumEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes museumTextureDrift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-120px, -120px) rotate(360deg); }
}

@keyframes museumLightingShift {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 1;
    transform: scale(1.02) rotate(0.5deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(0.98) rotate(-0.3deg);
  }
  75% {
    opacity: 0.95;
    transform: scale(1.01) rotate(0.2deg);
  }
}

@keyframes antiqueFloatItem {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) translateX(-5px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-15px) translateX(8px) rotate(270deg);
    opacity: 0.6;
  }
}

/* Museum Dust Particles */
.page-hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    /* Antique dust particles */
    radial-gradient(circle at 10% 15%, rgba(212, 175, 55, 0.08) 1px, transparent 3px),
    radial-gradient(circle at 25% 35%, rgba(139, 69, 19, 0.06) 1px, transparent 2px),
    radial-gradient(circle at 60% 20%, rgba(114, 47, 55, 0.05) 1px, transparent 4px),
    radial-gradient(circle at 85% 60%, rgba(74, 44, 26, 0.07) 1px, transparent 2px),
    radial-gradient(circle at 40% 85%, rgba(212, 175, 55, 0.04) 1px, transparent 3px),
    radial-gradient(circle at 75% 90%, rgba(139, 69, 19, 0.06) 1px, transparent 2px),
    /* Subtle gold flecks */
    radial-gradient(circle at 30% 45%, rgba(212, 175, 55, 0.12) 0.5px, transparent 1px),
    radial-gradient(circle at 70% 25%, rgba(212, 175, 55, 0.1) 0.5px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px, 90px 90px, 110px 110px, 200px 200px, 180px 180px;
  animation: museumDustParticles 45s linear infinite;
  opacity: 0.7;
}

/* Antique Architectural Elements */
.page-hero-architectural {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.architectural-column {
  position: absolute;
  width: 4px;
  height: 200px;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(139, 69, 19, 0.08) 30%,
    rgba(114, 47, 55, 0.06) 70%,
    rgba(74, 44, 26, 0.08) 100%);
  border-radius: 2px;
  opacity: 0.3;
}

.architectural-column.left {
  left: 8%;
  top: 20%;
  transform: rotate(-2deg);
}

.architectural-column.right {
  right: 8%;
  top: 25%;
  transform: rotate(1.5deg);
}

.architectural-arch {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-bottom: none;
  border-radius: 150px 150px 0 0;
  opacity: 0.2;
}

@keyframes museumDustParticles {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.5;
  }
  33% {
    transform: translate(-50px, -30px) rotate(120deg);
    opacity: 0.7;
  }
  66% {
    transform: translate(30px, -60px) rotate(240deg);
    opacity: 0.6;
  }
  100% {
    transform: translate(-20px, -90px) rotate(360deg);
    opacity: 0.5;
  }
}

.min-vh-75 {
  min-height: 75vh;
}

/* Antique Museum Badge */
.page-hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(245, 245, 220, 0.95) 30%,
      rgba(255, 250, 240, 0.97) 70%,
      rgba(255, 255, 255, 0.98) 100%),
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  border: 3px solid linear-gradient(135deg,
    rgba(212, 175, 55, 0.3) 0%,
    rgba(139, 69, 19, 0.25) 50%,
    rgba(114, 47, 55, 0.3) 100%);
  border-radius: 80px;
  margin-bottom: 3rem;
  backdrop-filter: blur(25px);
  box-shadow:
    0 12px 48px rgba(139, 69, 19, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    inset 0 -1px 2px rgba(139, 69, 19, 0.05);
  position: relative;
  overflow: hidden;
  animation: museumBadgeEntrance 2.5s ease-out;
  transform-style: preserve-3d;
}

.page-hero-badge-new::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg,
    transparent 30%,
    rgba(212, 175, 55, 0.08) 50%,
    transparent 70%);
  animation: museumBadgeShimmer 4s ease-in-out infinite;
  z-index: 1;
}

.page-hero-badge-new::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 80px;
  padding: 3px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.4) 0%,
    rgba(139, 69, 19, 0.3) 50%,
    rgba(114, 47, 55, 0.4) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  z-index: 2;
}

.page-hero-badge-new::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: badgePulse 4s ease-in-out infinite;
}

@keyframes museumBadgeEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9) rotateX(10deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02) rotateX(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

@keyframes museumBadgeShimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

/* Antique Badge Icon */
.page-hero-badge-new i {
  color: var(--antique-brown);
  font-size: 1.1rem;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 1px 2px rgba(139, 69, 19, 0.2));
  animation: museumIconPulse 3s ease-in-out infinite;
}

/* Antique Badge Text */
.page-hero-badge-new span {
  color: var(--antique-brown);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 2px rgba(139, 69, 19, 0.1);
  letter-spacing: 0.02em;
}

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

/* Museum-Style Hero Title */
.page-hero-title-new {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(139, 69, 19, 0.05),
    0 8px 16px rgba(114, 47, 55, 0.03);
  position: relative;
  animation: museumTitleReveal 2s ease-out;
  letter-spacing: -0.02em;
}

.page-hero-title-new::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg,
    var(--antique-gold) 0%,
    var(--antique-brown-light) 30%,
    var(--burgundy) 60%,
    var(--antique-brown) 100%);
  border-radius: 3px;
  opacity: 0.8;
  animation: museumTitleUnderline 2.5s ease-out;
}

.page-hero-title-new::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.4) 20%,
    rgba(212, 175, 55, 0.6) 50%,
    rgba(212, 175, 55, 0.4) 80%,
    transparent 100%);
  border-radius: 1px;
  opacity: 0.6;
  animation: museumTitleAccent 3s ease-out;
}

/* Antique Highlight Text */
.highlight-text {
  background: linear-gradient(135deg,
    var(--antique-gold) 0%,
    var(--antique-brown-light) 25%,
    var(--burgundy) 50%,
    var(--antique-brown) 75%,
    var(--antique-gold) 100%);
  background-size: 200% 200%;
  animation: museumHighlightGlow 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.highlight-text::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(139, 69, 19, 0.08) 50%,
    rgba(114, 47, 55, 0.1) 100%);
  border-radius: 4px;
  z-index: -1;
  opacity: 0;
  animation: museumHighlightBackground 3s ease-out;
}

@keyframes museumTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(5px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-5px) scale(1.02);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes museumTitleUnderline {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 120px;
    opacity: 0.8;
  }
}

@keyframes museumTitleAccent {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 80px;
    opacity: 0;
  }
  100% {
    width: 80px;
    opacity: 0.6;
  }
}

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

@keyframes museumHighlightBackground {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

/* Museum-Style Description */
.page-hero-description-new {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  position: relative;
  animation: museumDescriptionFade 2.5s ease-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.page-hero-description-new::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -30px;
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.2);
  font-family: 'Georgia', serif;
  line-height: 1;
}

@keyframes museumDescriptionFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.95;
    transform: translateY(0);
  }
}


/* Antique Museum Display Case */
.page-hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.05) 0%,
    rgba(114, 47, 55, 0.03) 50%,
    rgba(74, 44, 26, 0.05) 100%);
  border: 3px solid linear-gradient(135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(139, 69, 19, 0.15) 50%,
    rgba(114, 47, 55, 0.2) 100%);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.05),
    inset 0 -1px 2px rgba(139, 69, 19, 0.1);
  animation: museumCaseEntrance 2.5s ease-out;
  transform-style: preserve-3d;
}

.page-hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 3px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3) 0%,
    rgba(139, 69, 19, 0.25) 50%,
    rgba(114, 47, 55, 0.3) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  z-index: 2;
}

.page-hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%);
  border-radius: 30px 30px 0 0;
  z-index: 3;
}

.hero-image-glow-effect {
  position: absolute;
  inset: -25px;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(139, 69, 19, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(114, 47, 55, 0.1) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  animation: museumGlowPulse 4s ease-in-out infinite;
  opacity: 0.8;
}

.hero-image-main {
  position: relative;
  z-index: 1;
  border-radius: 27px;
  width: 100%;
  height: auto;
  filter: contrast(1.02) brightness(1.01) saturate(1.05);
  animation: museumImageReveal 2.5s ease-out;
}

@keyframes museumCaseEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9) rotateX(15deg);
    filter: blur(10px);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.02) rotateX(-3deg);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}

@keyframes museumGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes museumImageReveal {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) contrast(1.02) brightness(1.01) saturate(1.05);
  }
}

/* Antique Floating Museum Labels */
.floating-badge-1,
.floating-badge-2 {
  position: absolute;
  padding: 1rem 1.5rem;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(245, 245, 220, 0.95) 50%,
      rgba(255, 255, 255, 0.97) 100%),
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  backdrop-filter: blur(20px);
  border: 2px solid linear-gradient(135deg,
    rgba(212, 175, 55, 0.25) 0%,
    rgba(139, 69, 19, 0.2) 50%,
    rgba(114, 47, 55, 0.25) 100%);
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  box-shadow:
    0 12px 36px rgba(139, 69, 19, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  animation: museumBadgeFloat 4s ease-in-out infinite;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.floating-badge-1 {
  top: 18%;
  right: -15px;
  transform-origin: center;
}

.floating-badge-2 {
  bottom: 22%;
  left: -15px;
  animation-delay: 2s;
  transform-origin: center;
}

.floating-badge-1::before,
.floating-badge-2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3) 0%,
    rgba(139, 69, 19, 0.25) 50%,
    rgba(114, 47, 55, 0.3) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  z-index: 1;
}

.floating-badge-1::after,
.floating-badge-2::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
    transparent 30%,
    rgba(212, 175, 55, 0.06) 50%,
    transparent 70%);
  animation: museumLabelShimmer 5s ease-in-out infinite;
  z-index: 2;
}

.floating-badge-1 i,
.floating-badge-2 i {
  color: var(--antique-brown);
  font-size: 1.2rem;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 1px 2px rgba(139, 69, 19, 0.2));
}

.floating-badge-1 span,
.floating-badge-2 span {
  color: var(--antique-brown);
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 2px rgba(139, 69, 19, 0.1);
  letter-spacing: 0.01em;
}

@keyframes museumBadgeFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
    box-shadow:
      0 12px 36px rgba(139, 69, 19, 0.12),
      0 0 0 1px rgba(212, 175, 55, 0.1),
      inset 0 1px 2px rgba(255, 255, 255, 0.1);
  }
  25% {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow:
      0 16px 48px rgba(139, 69, 19, 0.15),
      0 0 0 1px rgba(212, 175, 55, 0.12),
      inset 0 1px 2px rgba(255, 255, 255, 0.15);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
    box-shadow:
      0 20px 60px rgba(139, 69, 19, 0.18),
      0 0 0 1px rgba(212, 175, 55, 0.15),
      inset 0 1px 2px rgba(255, 255, 255, 0.2);
  }
  75% {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow:
      0 16px 48px rgba(139, 69, 19, 0.15),
      0 0 0 1px rgba(212, 175, 55, 0.12),
      inset 0 1px 2px rgba(255, 255, 255, 0.15);
  }
}

@keyframes museumLabelShimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

/* Antique Museum Content Container */
.page-hero-content-new {
  position: relative;
  z-index: 2;
  animation: museumContentSlide 2.5s ease-out;
  backdrop-filter: blur(0.5px);
}

@keyframes museumContentSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Museum Seal/Emblem */
.museum-seal {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(139, 69, 19, 0.08) 50%,
    rgba(114, 47, 55, 0.1) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  animation: museumSealRotate 20s linear infinite;
  z-index: 1;
}

.museum-seal::before {
  content: '🏛️';
  font-size: 2rem;
  filter: grayscale(20%);
}

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

/* Antique Time Indicator */
.antique-clock {
  position: absolute;
  bottom: 15%;
  right: 12%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.08) 0%,
    rgba(114, 47, 55, 0.06) 50%,
    rgba(74, 44, 26, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  animation: antiqueClockPulse 3s ease-in-out infinite;
  z-index: 1;
}

.antique-clock::before {
  content: '2026';
  font-size: 0.7rem;
  color: var(--antique-brown);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@keyframes antiqueClockPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* About Story Section */
.about-story-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg,
    rgba(245, 245, 220, 0.06) 0%,
    rgba(74, 44, 26, 0.03) 50%,
    rgba(139, 69, 19, 0.05) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
  overflow: hidden;
}

.about-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(114, 47, 55, 0.03) 0%, transparent 70%);
  animation: storyBackground 40s ease-in-out infinite;
  pointer-events: none;
}

@keyframes storyBackground {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

.story-content-wrapper {
  position: relative;
  z-index: 1;
}

.section-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 60px;
  margin-bottom: 2rem;
  backdrop-filter: blur(18px);
  box-shadow:
    0 6px 24px rgba(139, 69, 19, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  animation: sectionBadgeFloat 4s ease-in-out infinite;
}

.section-badge-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    rgba(139, 69, 19, 0.05),
    transparent);
  animation: sectionBadgeShine 5s ease-in-out infinite;
}

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

@keyframes sectionBadgeShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.section-badge-new i {
  color: var(--antique-brown);
  font-size: 0.9rem;
}

.section-badge-new span {
  color: var(--antique-brown);
  font-weight: 600;
  font-size: 0.9rem;
}

.section-title-new {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 2rem;
  line-height: 1.15;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: relative;
}

.section-title-new::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light),
    var(--burgundy));
  border-radius: 2px;
  opacity: 0.7;
}

.section-description-new {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  max-width: 600px;
}

.story-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.story-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.highlight-item i {
  color: var(--antique-brown);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-item span {
  color: var(--default-color);
  font-size: 0.95rem;
}

.story-visual-wrapper {
  position: relative;
  height: 500px;
}

.story-card-1,
.story-card-2,
.story-card-3 {
  position: absolute;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
}

.story-card-1:hover,
.story-card-2:hover,
.story-card-3:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
}

.story-card-1 {
  top: 0;
  left: 0;
  width: 200px;
}

.story-card-2 {
  top: 50%;
  right: 0;
  width: 200px;
  transform: translateY(-50%);
}

.story-card-3 {
  bottom: 0;
  left: 50%;
  width: 200px;
  transform: translateX(-50%);
}

.story-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
}

.story-card-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.story-card-1 h4,
.story-card-2 h4,
.story-card-3 h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.story-card-1 p,
.story-card-2 p,
.story-card-3 p {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

/* Mission & Vision Cards */
.mission-vision-section {
  padding: 6.5rem 0;
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.03) 0%,
    rgba(139, 69, 19, 0.04) 50%,
    rgba(74, 44, 26, 0.02) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(74, 44, 26, 0.08);
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.4) 20%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.4) 80%,
    transparent 100%);
  transform: translateY(-50%);
}

.mission-card-new,
.vision-card-new {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.mission-card-glow,
.vision-card-glow {
  position: absolute;
  inset: -3px;
  border-radius: 24px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3) 0%,
    rgba(139, 69, 19, 0.25) 50%,
    rgba(114, 47, 55, 0.3) 100%);
  opacity: 0;
  filter: blur(25px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.mission-card-new:hover .mission-card-glow,
.vision-card-new:hover .vision-card-glow {
  opacity: 1;
}

.mission-card-content,
.vision-card-content {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 3.5rem;
  height: 100%;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mission-card-new:hover .mission-card-content,
.vision-card-new:hover .vision-card-content {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mission-icon-wrapper,
.vision-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
}

.mission-icon-wrapper i,
.vision-icon-wrapper i {
  font-size: 2rem;
  color: var(--antique-brown);
}

.mission-card-title,
.vision-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.mission-card-text,
.vision-card-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.mission-list,
.vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li,
.vision-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--default-color);
  font-size: 0.95rem;
}

.mission-list li i,
.vision-list li i {
  color: var(--antique-brown);
  font-size: 1rem;
}

/* Values Section Redesigned */
.values-section-redesigned {
  padding: 6rem 0;
  background: linear-gradient(180deg,
    rgba(139, 69, 19, 0.02) 0%,
    rgba(212, 175, 55, 0.03) 50%,
    rgba(74, 44, 26, 0.04) 100%);
  border-top: 1px solid rgba(114, 47, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.values-section-redesigned::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 25% 20%, rgba(114, 47, 55, 0.04) 0%, transparent 70%),
    radial-gradient(circle at 75% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.value-card-redesigned {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.value-card-redesigned:hover {
  transform: translateY(-10px);
}

.value-card-inner {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(18px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.value-card-redesigned:hover .value-card-inner {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.value-icon-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(139, 69, 19, 0.1) 50%,
    rgba(114, 47, 55, 0.15) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-icon-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3),
    rgba(139, 69, 19, 0.2),
    rgba(114, 47, 55, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

.value-card-redesigned:hover .value-icon-circle {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.25) 0%,
    rgba(139, 69, 19, 0.2) 50%,
    rgba(114, 47, 55, 0.25) 100%);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.value-icon-circle i {
  font-size: 2rem;
  color: var(--antique-brown);
}

.value-title-redesigned {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.value-text-redesigned {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
}

/* Team Section */
.team-section-new {
  padding: 6rem 0;
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.02) 0%,
    rgba(114, 47, 55, 0.03) 50%,
    rgba(74, 44, 26, 0.04) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(114, 47, 55, 0.06);
  position: relative;
  overflow: hidden;
}

.team-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(139, 69, 19, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.team-expertise-card {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(18px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.team-expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    rgba(139, 69, 19, 0.03),
    transparent);
  animation: cardShine 8s ease-in-out infinite;
}

@keyframes cardShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.team-expertise-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.expertise-icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(139, 69, 19, 0.1) 50%,
    rgba(114, 47, 55, 0.15) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.expertise-icon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3),
    rgba(139, 69, 19, 0.2),
    rgba(114, 47, 55, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

.expertise-icon-box i {
  font-size: 2rem;
  color: var(--antique-brown);
  transition: all 0.5s ease;
}

.team-expertise-card:hover .expertise-icon-box {
  transform: scale(1.15) rotate(5deg);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.team-expertise-card:hover .expertise-icon-box i {
  color: var(--antique-gold);
  transform: scale(1.1);
}

.expertise-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.expertise-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
}

/* Contact Page Styles */
.contact-quick-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 12px;
}

.quick-info-item i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.quick-info-item div {
  display: flex;
  flex-direction: column;
}

.quick-info-item strong {
  font-size: 0.85rem;
  color: var(--default-color);
  opacity: 0.7;
}

.quick-info-item span {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

.contact-hero-visual {
  position: relative;
  height: 400px;
}

.contact-visual-card-1,
.contact-visual-card-2,
.contact-visual-card-3 {
  position: absolute;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
}

.contact-visual-card-1 {
  top: 10%;
  left: 0;
  width: 150px;
}

.contact-visual-card-2 {
  top: 50%;
  right: 0;
  width: 150px;
  transform: translateY(-50%);
}

.contact-visual-card-3 {
  bottom: 10%;
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
}

.contact-visual-card-1 i,
.contact-visual-card-2 i,
.contact-visual-card-3 i {
  font-size: 2rem;
  color: var(--antique-brown);
}

.contact-visual-card-1 span,
.contact-visual-card-2 span,
.contact-visual-card-3 span {
  font-size: 0.85rem;
  color: var(--heading-color);
  font-weight: 600;
  text-align: center;
}

.contact-form-section-redesigned {
  padding: 6rem 0;
  background: linear-gradient(135deg,
    rgba(74, 44, 26, 0.02) 0%,
    rgba(139, 69, 19, 0.03) 50%,
    rgba(212, 175, 55, 0.02) 100%);
  border-top: 1px solid rgba(114, 47, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-section-redesigned::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 15% 30%, rgba(114, 47, 55, 0.04) 0%, transparent 70%),
    radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.form-section-header {
  margin-bottom: 2rem;
}

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

.form-section-description {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.8;
}

.contact-form-container-new {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 245, 220, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow:
    0 10px 40px rgba(139, 69, 19, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form-container-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    rgba(139, 69, 19, 0.03),
    transparent);
  animation: formShine 6s ease-in-out infinite;
}

@keyframes formShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.contact-form-redesigned {
  position: relative;
}

.form-field-new {
  margin-bottom: 1.5rem;
}

.field-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

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

.input-icon,
.textarea-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--antique-brown);
  font-size: 1.1rem;
  z-index: 1;
}

.textarea-icon {
  top: 1.5rem;
  transform: none;
}

.input-field-new,
.textarea-field-new {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.textarea-field-new {
  padding-left: 3rem;
  padding-top: 1rem;
  resize: vertical;
  min-height: 150px;
}

.input-field-new:focus,
.textarea-field-new:focus {
  outline: none;
  border-color: var(--dark-green);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
}

.btn-submit-new {
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-submit-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.contact-sidebar-new {
  position: sticky;
  top: 100px;
}

.sidebar-section {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

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

.detail-icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 80, 22, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.detail-icon-box i {
  color: var(--antique-brown);
  font-size: 1.1rem;
}

.detail-content {
  flex: 1;
}

.detail-content strong {
  display: block;
  font-size: 0.85rem;
  color: var(--default-color);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.detail-content a,
.detail-content span {
  display: block;
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
}

.detail-content a:hover {
  color: var(--antique-brown);
}

.sidebar-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.btn-demo-new,
.btn-support-new {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-demo-new:hover,
.btn-support-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
  color: white;
}

.contact-options-section {
  padding: 6rem 0;
  background: linear-gradient(180deg,
    rgba(114, 47, 55, 0.02) 0%,
    rgba(139, 69, 19, 0.03) 50%,
    rgba(74, 44, 26, 0.02) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-options-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 25% 40%, rgba(212, 175, 55, 0.04) 0%, transparent 70%),
    radial-gradient(circle at 75% 60%, rgba(139, 69, 19, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.contact-option-card {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(18px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-option-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.option-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(139, 69, 19, 0.1) 50%,
    rgba(114, 47, 55, 0.15) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.option-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3),
    rgba(139, 69, 19, 0.2),
    rgba(114, 47, 55, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

.option-icon-wrapper i {
  font-size: 2rem;
  color: var(--antique-brown);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.contact-option-card:hover .option-icon-wrapper {
  transform: scale(1.15) rotate(5deg);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.contact-option-card:hover .option-icon-wrapper i {
  color: var(--antique-gold);
  transform: scale(1.1);
}

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

.option-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.option-link {
  display: inline-flex;
  align-items: center;
  color: var(--antique-brown);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.option-link:hover {
  color: var(--dark-green-light);
  transform: translateX(5px);
}

/* FAQ Page Styles */
.faq-search-box {
  position: relative;
  max-width: 500px;
  margin-top: 2rem;
}

.faq-search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--antique-brown);
  font-size: 1.1rem;
  z-index: 1;
}

.faq-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  font-size: 1rem;
}

.faq-hero-visual {
  position: relative;
  height: 400px;
}

.faq-visual-item {
  position: absolute;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
}

.faq-visual-item:nth-child(1) {
  top: 10%;
  left: 0;
  width: 150px;
}

.faq-visual-item:nth-child(2) {
  top: 50%;
  right: 0;
  width: 150px;
  transform: translateY(-50%);
}

.faq-visual-item:nth-child(3) {
  bottom: 10%;
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
}

.faq-visual-item i {
  font-size: 2rem;
  color: var(--antique-brown);
}

.faq-visual-item span {
  font-size: 0.85rem;
  color: var(--heading-color);
  font-weight: 600;
  text-align: center;
}

.faq-main-section-redesigned {
  padding: 6.5rem 0;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.02) 0%,
    rgba(114, 47, 55, 0.03) 50%,
    rgba(139, 69, 19, 0.02) 100%);
  border-top: 1px solid rgba(74, 44, 26, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.faq-main-section-redesigned::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(ellipse 50% 30% at 25% 25%, rgba(139, 69, 19, 0.04) 0%, transparent 70%),
    radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.faq-sidebar-new {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: sticky;
  top: 100px;
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sidebar-title-faq {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.faq-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-category-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--default-color);
}

.faq-category-item:hover,
.faq-category-item.active {
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(139, 69, 19, 0.1) 50%,
    rgba(114, 47, 55, 0.15) 100%);
  color: var(--antique-brown);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
}

.faq-category-item i {
  font-size: 1.1rem;
}

.faq-category-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

.faq-content-wrapper {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
}

.faq-section-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.6) 20%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.6) 80%,
    transparent 100%);
  position: relative;
}

.faq-section-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light),
    var(--burgundy));
  border-radius: 2px;
  opacity: 0.8;
}

.faq-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: relative;
}

.faq-section-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light),
    var(--burgundy));
  border-radius: 2px;
  opacity: 0.7;
}

.faq-section-subtitle {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.6;
  font-weight: 500;
}

.faq-accordion-new {
  margin-top: 2rem;
}

.faq-item-redesigned {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 245, 220, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 24px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}


.faq-item-redesigned:hover {
  border-color: rgba(45, 80, 22, 0.3);
}

.faq-item-redesigned.active {
  border-color: rgba(45, 80, 22, 0.4);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.1);
}

.faq-question-redesigned {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-redesigned:hover {
  background: rgba(255, 255, 255, 0.5);
}

.question-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 80, 22, 0.1);
  border-radius: 50%;
  font-weight: 700;
  color: var(--antique-brown);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.question-text-redesigned {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.question-icon-redesigned {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 80, 22, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item-redesigned.active .question-icon-redesigned {
  background: rgba(139, 69, 19, 0.2);
  transform: rotate(45deg);
}

.question-icon-redesigned i {
  color: var(--antique-brown);
  font-size: 1.1rem;
}

.faq-answer-redesigned {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-redesigned.active .faq-answer-redesigned {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.answer-content {
  padding-top: 1rem;
}

.answer-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

.faq-cta-section-redesigned {
  padding: 5rem 0;
  background: transparent;
}

.faq-cta-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 3rem;
}

.cta-title-faq {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.cta-text-faq {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

.btn-cta-faq {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-cta-faq:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
  color: white;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
  .page-hero-title-new {
    font-size: 2rem;
  }
  
  .page-hero-description-new {
    font-size: 1rem;
  }
  
  .section-title-new {
    font-size: 2rem;
  }
  
  .story-visual-wrapper {
    height: auto;
    margin-top: 2rem;
  }
  
  .story-card-1,
  .story-card-2,
  .story-card-3 {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    transform: none !important;
  }
  
  .contact-hero-visual,
  .faq-hero-visual {
    height: auto;
    margin-top: 2rem;
  }
  
  .contact-visual-card-1,
  .contact-visual-card-2,
  .contact-visual-card-3,
  .faq-visual-item {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    transform: none !important;
  }
  
  .faq-sidebar-new {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  
  .contact-sidebar-new {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

/*--------------------------------------------------------------
# Completely Redesigned Policy Pages Styles
--------------------------------------------------------------*/

/* Privacy Hero */
.privacy-hero,
.cookie-hero,
.terms-hero {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg,
    rgba(245, 245, 220, 0.1) 0%,
    rgba(139, 69, 19, 0.05) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}




.privacy-hero-content,
.cookie-hero-content,
.terms-hero-content {
  position: relative;
  z-index: 1;
}

.privacy-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--antique-brown);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

.privacy-hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--antique-brown);
  margin-bottom: 0.5rem;
}

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

.privacy-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.privacy-visual-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  max-width: 300px;
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 50%;
  color: var(--antique-brown);
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.privacy-visual-card h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.privacy-visual-card p {
  color: var(--default-color);
  opacity: 0.8;
}

/* Terms Hero Styles */
.terms-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--antique-brown);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

.terms-hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.terms-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.terms-visual-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  max-width: 300px;
}

.terms-visual-card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 50%;
  color: var(--antique-brown);
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.terms-visual-card h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.terms-visual-card p {
  color: var(--default-color);
  opacity: 0.8;
}

/* Cookie Hero Styles */
.cookie-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--antique-brown);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

.cookie-hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cookie-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.cookie-visual-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  max-width: 300px;
}

.cookie-visual-card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.2));
  border-radius: 50%;
  color: var(--antique-brown);
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.cookie-visual-card h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.cookie-visual-card p {
  color: var(--default-color);
  opacity: 0.8;
}




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



.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 50px;
}

.hero-feature-item i {
  color: var(--antique-brown);
  font-size: 1.1rem;
}

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








@keyframes float-orb {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.8;
  }
}

/* Overview Section */
.privacy-overview-section,
.cookie-overview-section,
.terms-overview-section {
  padding: 5rem 0;
  background: linear-gradient(135deg,
    rgba(245, 245, 220, 0.08) 0%,
    rgba(74, 44, 26, 0.04) 50%,
    rgba(139, 69, 19, 0.06) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.privacy-overview-section::before,
.cookie-overview-section::before,
.terms-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 25% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 75% 70%, rgba(114, 47, 55, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.overview-card-new {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(18px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.overview-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    rgba(139, 69, 19, 0.03),
    transparent);
  animation: cardShine 10s ease-in-out infinite;
}

.overview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.overview-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(139, 69, 19, 0.1) 50%,
    rgba(114, 47, 55, 0.15) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.overview-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3),
    rgba(139, 69, 19, 0.2),
    rgba(114, 47, 55, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

.overview-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
  position: relative;
  z-index: 1;
}

.overview-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.overview-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

/* Sticky Navigation */
.privacy-sticky-nav,
.cookie-sticky-nav,
.terms-sticky-nav {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2rem;
}

.sticky-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

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

.nav-indicator {
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 2px;
}

.sticky-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--default-color);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu-item:hover,
.nav-menu-item.active {
  background: rgba(45, 80, 22, 0.1);
  color: var(--antique-brown);
  transform: translateX(5px);
}

.nav-item-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--antique-brown);
  min-width: 30px;
}

.nav-item-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-item-arrow {
  font-size: 0.85rem;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.nav-menu-item:hover .nav-item-arrow {
  opacity: 1;
}

/* Content Sections */
.privacy-content-new,
.cookie-content-new,
.terms-content-new {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-article,
.cookie-article,
.terms-article {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(18px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 3.5rem;
  scroll-margin-top: 100px;
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.privacy-article::before,
.cookie-article::before,
.terms-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.03),
    rgba(139, 69, 19, 0.02),
    transparent);
  animation: articleShine 12s ease-in-out infinite;
}

@keyframes articleShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.article-header-new {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.6) 20%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.6) 80%,
    transparent 100%);
  position: relative;
}

.article-header-new::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light),
    var(--burgundy));
  border-radius: 2px;
  opacity: 0.7;
}

.article-number-badge {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(139, 69, 19, 0.15) 50%,
    rgba(114, 47, 55, 0.2) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  color: var(--antique-brown);
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.article-number-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.4),
    rgba(139, 69, 19, 0.3),
    rgba(114, 47, 55, 0.4));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

.article-header-content {
  flex: 1;
}

.article-title-new {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: relative;
}

.article-title-new::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light));
  border-radius: 2px;
  opacity: 0.6;
}

.article-subtitle {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
}

.article-body-new {
  padding-left: 4.5rem;
}

.article-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.article-paragraph:last-child {
  margin-bottom: 0;
}

/* Info Cards */
.info-card-modern {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-left: 4px solid var(--dark-green);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

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

.info-card-header i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.info-card-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.data-type-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin-bottom: 1rem;
}

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

.data-type-item i {
  font-size: 1.5rem;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.data-type-item strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.data-type-item p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

/* Usage Grid */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.usage-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.usage-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
}

.usage-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.usage-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

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

.usage-card p {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.guarantee-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(45, 80, 22, 0.05);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-left: 4px solid var(--dark-green);
  border-radius: 16px;
  margin: 2rem 0;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-radius: 50%;
  flex-shrink: 0;
}

.guarantee-icon i {
  font-size: 1.5rem;
  color: white;
}

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

.guarantee-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 0;
}

.inline-link {
  color: var(--antique-brown);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.inline-link:hover {
  color: var(--dark-green-light);
  text-decoration: underline;
}

/* Security Grid */
.security-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-feature-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.security-feature-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
}

.security-icon-modern {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  margin-bottom: 1rem;
}

.security-icon-modern i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

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

.security-feature-modern p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

/* Rights Grid */
.rights-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.right-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
}

.right-icon-modern {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  margin-bottom: 1rem;
}

.right-icon-modern i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

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

.right-card-modern p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.contact-section-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  margin-top: 2rem;
}

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

.contact-header-modern i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

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

.contact-section-modern p {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 1rem;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-email-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
  color: white;
}

/* Cookie Specific Styles */
.explanation-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.explanation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.explanation-header i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.explanation-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.explanation-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

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

.purpose-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.purpose-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
}

.purpose-icon-modern {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  margin-bottom: 1rem;
}

.purpose-icon-modern i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.purpose-card-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.purpose-card-modern p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.cookie-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cookie-type-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cookie-type-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
}

.cookie-type-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-type-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
}

.cookie-type-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.cookie-type-header-modern h4 {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.cookie-badge-required,
.cookie-badge-optional {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.cookie-badge-required {
  background: rgba(220, 53, 69, 0.1);
  color: #722f37;
}

.cookie-badge-optional {
  background: rgba(45, 80, 22, 0.1);
  color: var(--antique-brown);
}

.cookie-type-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.cookie-examples {
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 80, 22, 0.1);
}

.cookie-examples strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.cookie-examples ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-examples li {
  padding: 0.5rem 0;
  color: var(--default-color);
  opacity: 0.8;
  padding-left: 1.5rem;
  position: relative;
}

.cookie-examples li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--antique-brown);
  font-weight: bold;
}

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

.method-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
}

.method-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.method-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

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

.method-card p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.warning-box-modern {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-left: 4px solid #ffc107;
  border-radius: 12px;
  margin: 2rem 0;
}

.warning-box-modern i {
  font-size: 1.5rem;
  color: #ffc107;
  flex-shrink: 0;
}

.warning-box-modern strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.warning-box-modern p {
  font-size: 0.95rem;
  color: var(--default-color);
  margin: 0;
}

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

.duration-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
}

.duration-item i {
  font-size: 1.5rem;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.duration-item strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.duration-item p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.update-notice {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 12px;
  margin-top: 2rem;
}

.update-notice i {
  font-size: 1.5rem;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.update-notice p {
  font-size: 0.95rem;
  color: var(--default-color);
  margin: 0;
  line-height: 1.6;
}

/* Terms Specific Styles */
.warning-card-modern {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-left: 4px solid #ffc107;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

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

.warning-header i {
  font-size: 1.5rem;
  color: #ffc107;
}

.warning-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.warning-card-modern p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 0;
}

.allowed-uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.allowed-use-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.allowed-use-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
}

.allowed-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.allowed-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

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

.allowed-use-card p {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.prohibited-box {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.1) 0%,
    rgba(139, 69, 19, 0.08) 50%,
    rgba(74, 44, 26, 0.06) 100%);
  border: 2px solid rgba(114, 47, 55, 0.3);
  border-left: 6px solid var(--burgundy);
  border-radius: 16px;
  margin: 2.5rem 0;
  box-shadow:
    0 6px 24px rgba(114, 47, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.prohibited-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg,
    var(--burgundy) 0%,
    var(--antique-brown) 50%,
    var(--burgundy) 100%);
}

.prohibited-box i {
  font-size: 1.5rem;
  color: #722f37;
  flex-shrink: 0;
}

.prohibited-box strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.prohibited-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prohibited-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--default-color);
  position: relative;
}

.prohibited-box li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #722f37;
  font-weight: bold;
}

.copyright-info-card {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 245, 220, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2.5rem 0;
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.copyright-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.03),
    rgba(139, 69, 19, 0.02),
    transparent);
  animation: cardShine 15s ease-in-out infinite;
}

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

.copyright-header i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.copyright-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.copyright-info-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 0;
}

.liability-limits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.liability-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
}

.liability-item i {
  font-size: 1.5rem;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.liability-item strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.liability-item p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.external-links-notice {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 12px;
  margin: 2rem 0;
}

.external-links-notice i {
  font-size: 1.5rem;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.external-links-notice p {
  font-size: 0.95rem;
  color: var(--default-color);
  margin: 0;
  line-height: 1.6;
}

/* Thanks Page Redesigned */
.thanks-hero-redesigned {
  position: relative;
  padding: 8rem 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(245, 245, 220, 0.15) 0%,
    rgba(139, 69, 19, 0.08) 50%,
    rgba(114, 47, 55, 0.06) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.thanks-hero-bg-new {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.thanks-hero-gradient-new {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 25% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(114, 47, 55, 0.05) 0%, transparent 80%);
  animation: heroGradientShift 25s ease-in-out infinite;
}

.thanks-hero-pattern-new {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.12) 1px, transparent 2px),
    radial-gradient(circle at 45% 60%, rgba(139, 69, 19, 0.1) 1px, transparent 2px),
    radial-gradient(circle at 75% 40%, rgba(114, 47, 55, 0.08) 1px, transparent 2px),
    radial-gradient(circle at 35% 80%, rgba(74, 44, 26, 0.09) 1px, transparent 2px),
    linear-gradient(45deg, rgba(139, 69, 19, 0.03) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 60px 60px, 100px 100px, 40px 40px;
  animation: particlesDrift 30s ease-in-out infinite;
  opacity: 0.8;
}

.thanks-content-redesigned {
  position: relative;
  z-index: 1;
  text-align: center;
}

.thanks-success-wrapper {
  margin-bottom: 3rem;
}

.success-animation-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.success-circle-main {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: scale-in-success 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scale-in-success {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-checkmark-main {
  width: 80px;
  height: 80px;
}

.success-checkmark-main svg {
  width: 100%;
  height: 100%;
}

.success-circle-path {
  stroke: white;
  stroke-width: 3;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: draw-circle 0.6s ease-out forwards;
}

.success-checkmark-path {
  stroke: white;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: draw-checkmark 0.4s ease-out 0.6s forwards;
}

@keyframes draw-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-checkmark {
  to {
    stroke-dashoffset: 0;
  }
}

.success-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.success-particles .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--dark-green);
  border-radius: 50%;
  animation: particle-explode 1s ease-out forwards;
}

.success-particles .particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0.1s;
}

.success-particles .particle:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 0.2s;
}

.success-particles .particle:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 0.3s;
}

.success-particles .particle:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 0.4s;
}

.success-particles .particle:nth-child(5) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.5s;
}

@keyframes particle-explode {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1) translate(var(--tx, 0), var(--ty, 0));
    opacity: 0;
  }
}

.thanks-title-redesigned {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.thanks-subtitle-redesigned {
  font-size: 1.5rem;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.thanks-description-redesigned {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-process-timeline {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  position: relative;
}

.step-indicator {
  position: relative;
  margin-bottom: 1rem;
}

.step-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(139, 69, 19, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.process-step.active .step-icon {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  border-color: var(--dark-green);
  transform: scale(1.1);
}

.process-step.active .step-icon i {
  color: white;
}

.step-icon i {
  font-size: 1.75rem;
  color: var(--antique-brown);
  transition: color 0.3s ease;
}

.step-line {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100px;
  height: 3px;
  background: rgba(139, 69, 19, 0.2);
  transform: translateY(-50%);
  z-index: 1;
}

.process-step:last-child .step-line {
  display: none;
}

.process-step.active .step-line {
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
}

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

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

.thanks-actions-redesigned {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn-thanks-home,
.btn-thanks-contact,
.btn-thanks-about {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-thanks-home {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-thanks-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
  color: white;
}

.btn-thanks-contact,
.btn-thanks-about {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.2);
  color: var(--antique-brown);
}

.btn-thanks-contact:hover,
.btn-thanks-about:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  color: var(--antique-brown);
}

.thanks-explore-section {
  padding: 6rem 0;
  background: linear-gradient(135deg,
    rgba(245, 245, 220, 0.08) 0%,
    rgba(74, 44, 26, 0.04) 50%,
    rgba(139, 69, 19, 0.06) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.thanks-explore-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 25% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 70%),
    radial-gradient(circle at 75% 70%, rgba(114, 47, 55, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.explore-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 245, 220, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 60px;
  margin-bottom: 2rem;
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: badgeGlow 3s ease-in-out infinite;
}

.explore-badge i {
  color: var(--antique-brown);
  position: relative;
  z-index: 1;
}

.explore-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--antique-brown);
  position: relative;
  z-index: 1;
}

.explore-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: relative;
}

.explore-title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,
    var(--antique-gold),
    var(--antique-brown-light),
    var(--burgundy));
  border-radius: 2px;
  opacity: 0.7;
}

.explore-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.explore-card-modern {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-card-glow {
  position: absolute;
  inset: -3px;
  border-radius: 24px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3) 0%,
    rgba(139, 69, 19, 0.25) 50%,
    rgba(114, 47, 55, 0.3) 100%);
  opacity: 0;
  filter: blur(25px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.explore-card-modern:hover .explore-card-glow {
  opacity: 1;
}

.explore-card-content {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(18px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.explore-card-modern:hover .explore-card-content {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 20px 60px rgba(139, 69, 19, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.explore-icon-modern {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-pulse-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(139, 69, 19, 0.08) 50%,
    rgba(114, 47, 55, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  animation: pulse-icon 3s ease-in-out infinite;
}

.icon-bg-modern {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.explore-card-modern:hover .icon-bg-modern {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  transform: scale(1.1);
}

.explore-icon-modern i {
  position: relative;
  font-size: 3rem;
  color: var(--antique-brown);
  z-index: 1;
  transition: all 0.4s ease;
}

.explore-card-modern:hover .explore-icon-modern i {
  transform: scale(1.1) rotate(5deg);
  color: var(--dark-green-light);
}

.explore-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.explore-card-modern:hover .explore-card-title {
  color: var(--antique-brown);
}

.explore-card-text {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  flex-grow: 1;
}

.explore-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--antique-brown);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-card-link:hover {
  color: var(--dark-green-light);
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .privacy-hero-title,
  .cookie-hero-title,
  .terms-hero-title,
  .thanks-title-redesigned {
    font-size: 2.5rem;
  }
  
  .privacy-sticky-nav,
  .cookie-sticky-nav,
  .terms-sticky-nav {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  
  .article-body-new {
    padding-left: 0;
    padding-top: 1rem;
  }
  
  .article-header-new {
    flex-direction: column;
    gap: 1rem;
  }
  
  .article-number-badge {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .privacy-hero-title,
  .cookie-hero-title,
  .terms-hero-title,
  .thanks-title-redesigned {
    font-size: 2rem;
  }

  .privacy-hero-visual,
  .cookie-hero-visual,
  .terms-hero-visual {
    height: 300px;
    margin-top: 2rem;
  }

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

  .privacy-hero-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .privacy-hero-title {
    font-size: 2.2rem;
  }

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

  .terms-hero-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .terms-hero-title {
    font-size: 2.2rem;
  }

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

  .cookie-hero-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .cookie-hero-title {
    font-size: 2.2rem;
  }
  
  .thanks-process-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .step-line {
    display: none;
  }
  
  .usage-grid,
  .security-grid-modern,
  .rights-grid-modern,
  .purpose-grid-modern,
  .cookie-types-grid,
  .management-methods,
  .allowed-uses-grid {
    grid-template-columns: 1fr;
  }
  
  .thanks-actions-redesigned {
    flex-direction: column;
  }
  
  .btn-thanks-home,
  .btn-thanks-contact,
  .btn-thanks-about {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Policy Pages Styles - Privacy, Cookie, Terms
--------------------------------------------------------------*/
.policy-content-section {
  padding: 5rem 0;
  background: transparent;
}

.policy-sidebar {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.sidebar-title-policy {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.policy-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-nav-list li {
  margin-bottom: 0.5rem;
}

.policy-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--default-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.policy-nav-link:hover {
  background: rgba(45, 80, 22, 0.1);
  color: var(--antique-brown);
  padding-left: 1.25rem;
}

.policy-nav-link.active {
  background: rgba(139, 69, 19, 0.15);
  color: var(--antique-brown);
  font-weight: 600;
  border-left: 3px solid var(--dark-green);
}

.policy-content-wrapper {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 3rem;
}

.policy-intro {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.policy-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

.policy-section-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.policy-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.policy-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.policy-section-content {
  padding-left: 4.5rem;
}

.policy-section-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1rem;
  opacity: 0.9;
}

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

.info-box,
.highlight-box,
.warning-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 12px;
  margin: 1.5rem 0;
}

.info-box {
  border-left: 6px solid var(--antique-brown);
  background: linear-gradient(135deg,
    rgba(139, 69, 19, 0.08) 0%,
    rgba(74, 44, 26, 0.04) 100%);
}

.highlight-box {
  border-left: 6px solid var(--antique-gold);
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(139, 69, 19, 0.04) 100%);
}

.warning-box {
  border-left: 6px solid var(--burgundy);
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.08) 0%,
    rgba(139, 69, 19, 0.04) 100%);
}

.info-box i,
.highlight-box i,
.warning-box i {
  font-size: 1.5rem;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.warning-box i {
  color: #ffc107;
}

.info-box div,
.highlight-box div,
.warning-box div {
  flex: 1;
}

.info-box strong,
.highlight-box strong,
.warning-box strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.info-box ul,
.highlight-box ul {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.info-box li,
.highlight-box li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
  font-size: 0.95rem;
}

.policy-link {
  color: var(--antique-brown);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-link:hover {
  color: var(--dark-green-light);
  text-decoration: underline;
}

.security-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.security-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 12px;
  flex: 1;
  min-width: 150px;
}

.security-feature-item i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.security-feature-item span {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 600;
}

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

.right-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 12px;
}

.right-item i {
  font-size: 1.25rem;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.right-item span {
  font-size: 0.95rem;
  color: var(--default-color);
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 12px;
  margin-top: 1.5rem;
}

.contact-box i {
  font-size: 1.5rem;
  color: var(--antique-brown);
  flex-shrink: 0;
}

.contact-box a {
  color: var(--antique-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: var(--dark-green-light);
  text-decoration: underline;
}

.contact-box div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-box strong {
  color: var(--heading-color);
  font-size: 0.9rem;
}

.privacy-quick-info,
.cookie-quick-info,
.terms-quick-info {
  margin-top: 2rem;
}

.quick-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.quick-info-badge i {
  color: var(--antique-brown);
  font-size: 1rem;
}

.quick-info-badge span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.privacy-hero-visual,
.cookie-hero-visual,
.terms-hero-visual {
  position: relative;
  height: 400px;
}

.privacy-visual-card,
.cookie-visual-item,
.terms-visual-card {
  position: absolute;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
}

.privacy-visual-card:nth-child(1),
.cookie-visual-item:nth-child(1),
.terms-visual-card:nth-child(1) {
  top: 10%;
  left: 0;
  width: 150px;
}

.privacy-visual-card:nth-child(2),
.cookie-visual-item:nth-child(2),
.terms-visual-card:nth-child(2) {
  top: 50%;
  right: 0;
  width: 150px;
  transform: translateY(-50%);
}

.privacy-visual-card:nth-child(3),
.cookie-visual-item:nth-child(3),
.terms-visual-card:nth-child(3) {
  bottom: 10%;
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
}

.privacy-visual-card i,
.cookie-visual-item i,
.terms-visual-card i {
  font-size: 2rem;
  color: var(--antique-brown);
}

.privacy-visual-card span,
.cookie-visual-item span,
.terms-visual-card span {
  font-size: 0.85rem;
  color: var(--heading-color);
  font-weight: 600;
  text-align: center;
}

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

.purpose-item {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 24px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.purpose-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 15px 40px rgba(139, 69, 19, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.purpose-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(139, 69, 19, 0.1) 50%,
    rgba(114, 47, 55, 0.15) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.purpose-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.3),
    rgba(139, 69, 19, 0.2),
    rgba(114, 47, 55, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

.purpose-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

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

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

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.cookie-type-card {
  padding: 2.5rem;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(245, 245, 220, 0.85) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 24px rgba(139, 69, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.cookie-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    rgba(139, 69, 19, 0.03),
    transparent);
  animation: cardShine 8s ease-in-out infinite;
}

.cookie-type-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 15px 40px rgba(139, 69, 19, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-type-header i {
  font-size: 2rem;
  color: var(--antique-brown);
}

.cookie-type-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.cookie-type-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

/*--------------------------------------------------------------
# Thanks Page Styles
--------------------------------------------------------------*/
.thanks-hero-section {
  position: relative;
  padding: 8rem 0 6rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(245, 245, 220, 0.12) 0%,
    rgba(139, 69, 19, 0.08) 50%,
    rgba(114, 47, 55, 0.06) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.thanks-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.thanks-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 25% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(114, 47, 55, 0.05) 0%, transparent 80%);
  animation: heroGradientShift 25s ease-in-out infinite;
}

.thanks-hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.12) 1px, transparent 2px),
    radial-gradient(circle at 45% 60%, rgba(139, 69, 19, 0.1) 1px, transparent 2px),
    radial-gradient(circle at 75% 40%, rgba(114, 47, 55, 0.08) 1px, transparent 2px),
    radial-gradient(circle at 35% 80%, rgba(74, 44, 26, 0.09) 1px, transparent 2px),
    linear-gradient(45deg, rgba(139, 69, 19, 0.03) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 60px 60px, 100px 100px, 40px 40px;
  animation: particlesDrift 30s ease-in-out infinite;
  opacity: 0.8;
}

.thanks-content-new {
  position: relative;
  z-index: 1;
}

.thanks-success-animation {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.success-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(139, 69, 19, 0.15) 50%,
    rgba(114, 47, 55, 0.2) 100%);
  border: 3px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: scale-in 0.5s ease-out;
  overflow: hidden;
}

.success-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.4),
    rgba(139, 69, 19, 0.3),
    rgba(114, 47, 55, 0.4));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-checkmark {
  color: white;
  font-size: 3rem;
  animation: checkmark-draw 0.6s ease-out 0.3s both;
}

@keyframes checkmark-draw {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.success-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--dark-green);
  opacity: 0;
  animation: ripple 2s ease-out infinite;
}

.success-ripple.delay-1 {
  animation-delay: 0.5s;
}

.success-ripple.delay-2 {
  animation-delay: 1s;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.thanks-title-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.thanks-subtitle-new {
  font-size: 1.5rem;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.thanks-description-new {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-timeline {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(139, 69, 19, 0.2);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
  border-color: var(--dark-green);
  background: rgba(45, 80, 22, 0.1);
}

.timeline-icon i {
  font-size: 1.5rem;
  color: var(--antique-brown);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.timeline-content strong {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 700;
}

.timeline-content span {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
}

.thanks-actions-new {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-thanks-primary,
.btn-thanks-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-thanks-primary {
  background: linear-gradient(135deg, var(--antique-brown), var(--antique-gold));
  color: white;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-thanks-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
  color: white;
}

.btn-thanks-secondary {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.2);
  color: var(--antique-brown);
}

.btn-thanks-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  color: var(--antique-brown);
}

.whats-next-section-redesigned {
  padding: 5rem 0;
  background: transparent;
}

.next-card-redesigned {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(30, 90, 30, 0.3));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.next-card-redesigned:hover .next-card-glow {
  opacity: 1;
}

.next-card-content {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 69, 19, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.next-card-redesigned:hover .next-card-content {
  transform: translateY(-10px);
  border-color: rgba(45, 80, 22, 0.3);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.next-icon-wrapper-new {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.next-icon-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.1);
  animation: pulse-icon 2s ease-in-out infinite;
}

.next-icon-bg-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.next-card-redesigned:hover .next-icon-bg-new {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(30, 90, 30, 0.2));
  transform: scale(1.1);
}

.next-icon-wrapper-new i {
  position: relative;
  font-size: 2.5rem;
  color: var(--antique-brown);
  z-index: 1;
  transition: all 0.4s ease;
}

.next-card-redesigned:hover .next-icon-wrapper-new i {
  transform: scale(1.1) rotate(5deg);
  color: var(--dark-green-light);
}

.next-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.next-card-redesigned:hover .next-title-new {
  color: var(--antique-brown);
}

.next-text-new {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  flex-grow: 1;
}

.next-link-new {
  display: inline-flex;
  align-items: center;
  color: var(--antique-brown);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.next-link-new:hover {
  color: var(--dark-green-light);
  transform: translateX(5px);
}

.next-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-brown), var(--antique-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.next-card-redesigned:hover .next-hover-effect {
  transform: scaleX(1);
}

/* Responsive Styles for Policy Pages */
@media (max-width: 768px) {
  .policy-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  
  .policy-section-content {
    padding-left: 0;
    padding-top: 1rem;
  }
  
  .policy-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .section-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .privacy-hero-visual,
  .cookie-hero-visual,
  .terms-hero-visual {
    height: auto;
    margin-top: 2rem;
  }
  
  .privacy-visual-card,
  .cookie-visual-item,
  .terms-visual-card {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    transform: none !important;
  }
  
  .thanks-timeline {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-purposes,
  .cookie-types {
    grid-template-columns: 1fr;
  }
  
  .rights-list {
    grid-template-columns: 1fr;
  }
  
  .security-features {
    flex-direction: column;
  }
}