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

/* Dalcampo Theme Colors */
:root {
  --dalcampo-primary: #4a7c59;      /* Forest green - represents Italian hills */
  --dalcampo-secondary: #8b5a3c;    /* Warm brown - represents fertile soil */
  --dalcampo-accent: #d4a574;      /* Warm sand - represents harvest */
  --dalcampo-light: #f8f4f0;        /* Cream - represents fresh produce */
  --dalcampo-olive: #6b8e23;        /* Olive green - Italian olive trees */
  --dalcampo-terra: #a0522d;       /* Terra cotta - Italian clay */
  --dalcampo-sun: #ffd700;         /* Golden sun - Mediterranean sun */

  /* Modern Redesign Color Scheme */
  --modern-primary: #2d5a27;
  --modern-secondary: #8b5a2b;
  --modern-accent: #d4a574;
  --modern-light: #f8f4f0;
  --modern-olive: #6b7f47;
  --modern-warm: #e8dcc0;
  --modern-earth: #8b5a2b;

  /* Neutral Colors */
  --modern-white: #ffffff;
  --modern-gray-50: #f9fafb;
  --modern-gray-100: #f3f4f6;
  --modern-gray-200: #e5e7eb;
  --modern-gray-300: #d1d5db;
  --modern-gray-400: #9ca3af;
  --modern-gray-500: #6b7280;
  --modern-gray-600: #4b5563;
  --modern-gray-700: #374151;
  --modern-gray-800: #1f2937;
  --modern-gray-900: #111827;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  --gradient-accent: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%);
  --gradient-warm: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  --gradient-earth: linear-gradient(135deg, #8b5a2b 0%, #2d5a27 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Colors - Dark Blue & Light Pink Light Theme */
:root {
    --background-color: #fef7f7;
    --default-color: #1e3a5f;
    --heading-color: #2d4a6b;
    --accent-color: #3d5a7b;
    --surface-color: #ffffff;
    --contrast-color: #1e3a5f;
    --nav-color: #2d4a6b;
    --nav-hover-color: #1e3a5f;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #1e3a5f;
    --nav-dropdown-hover-color: #2d4a6b;
    --success-color: #2d4a6b;
    --warning-color: #3d5a7b;
    --danger-color: #f5c6cb;
    --info-color: #3d5a7b;
    --pink-light: #f8d7da;
    --pink-medium: #f5c6cb;
    --pink-dark: #f1b0b7;
    --blue-dark: #1e3a5f;
    --blue-medium: #2d4a6b;
    --blue-light: #3d5a7b;
  }


  /* Color Presets - Light theme with dark blue & light pink */
  
  .light-background {
    --background-color: #ffffff;
    --default-color: #1e3a5f;
    --heading-color: #2d4a6b;
    --surface-color: #fef7f7;
    --contrast-color: #1e3a5f;
  }
  
  .dark-background {
    --background-color: #fef7f7;
    --default-color: #1e3a5f;
    --heading-color: #2d4a6b;
    --surface-color: #ffffff;
    --contrast-color: #1e3a5f;
  }


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

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

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

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

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

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

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

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

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

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

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

/*--------------------------------------------------------------
# Dalcampo Header - Farm Theme
--------------------------------------------------------------*/

/* ===== COLORS ===== */
/* Primary colors inspired by Italian countryside */
:root {
  --dalcampo-primary: #4a7c59;      /* Forest green - represents Italian hills */
  --dalcampo-secondary: #8b5a3c;    /* Warm brown - represents fertile soil */
  --dalcampo-accent: #d4a574;      /* Warm sand - represents harvest */
  --dalcampo-light: #f8f4f0;        /* Cream - represents fresh produce */
  --dalcampo-olive: #6b8e23;        /* Olive green - Italian olive trees */
  --dalcampo-terra: #a0522d;       /* Terra cotta - Italian clay */
  --dalcampo-sun: #ffd700;         /* Golden sun - Mediterranean sun */
}

/* ===== ANIMATIONS ===== */
/* Farm-inspired animations */
@keyframes farm-sway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-2px) rotate(0.5deg); }
  75% { transform: translateY(2px) rotate(-0.5deg); }
}

@keyframes harvest-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.6);
  }
}

@keyframes leaf-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
    opacity: 1;
  }
}

@keyframes soil-particles {
  0% {
    transform: translateY(100px) translateX(0) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(0) translateX(20px) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) translateX(40px) scale(0);
    opacity: 0;
  }
}

@keyframes vine-grow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes shimmer-effect {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.header-modern {
  position: relative;
  z-index: 997;
  background: transparent;
}

.header-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 2px solid rgba(74, 124, 89, 0.15);
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(74, 124, 89, 0.08);
  font-family: 'Josefin Slab', serif;
}

.header-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--dalcampo-primary) 30%,
    var(--dalcampo-accent) 70%,
    transparent 100%);
}

.scrolled .header-main {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(74, 124, 89, 0.15);
  border-bottom-color: rgba(74, 124, 89, 0.25);
  padding: 1rem 0;
  animation: farm-sway 3s ease-in-out infinite;
}

.scrolled .header-main::before {
  height: 3px;
}

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

.header-left-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

/* Logo with farm theme */
.logo-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.logo-modern:hover {
  transform: translateY(-3px);
}

.logo-modern .logo-img {
  width: 200px;
  height: 55px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(74, 124, 89, 0.2));
  font-family: 'Josefin Slab', serif;
}

.logo-modern:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(74, 124, 89, 0.3));
}

/* Navigation */
.navmenu-modern {
  display: flex;
}

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

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

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: rgba(74, 124, 89, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-family: 'Josefin Slab', serif;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(74, 124, 89, 0.1) 0%,
    rgba(139, 90, 60, 0.08) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--dalcampo-primary) 50%,
    transparent 100%);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--dalcampo-primary);
  transform: translateY(-2px);
  text-shadow: 0 1px 2px rgba(74, 124, 89, 0.2);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--dalcampo-primary);
  background: linear-gradient(135deg,
    rgba(74, 124, 89, 0.12) 0%,
    rgba(212, 165, 116, 0.1) 100%);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.2);
  border: 1px solid rgba(74, 124, 89, 0.2);
}

.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  background: linear-gradient(90deg,
    transparent 0%,
    var(--dalcampo-primary) 50%,
    transparent 100%);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--dalcampo-primary), var(--dalcampo-olive));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
  position: relative;
  overflow: hidden;
  font-family: 'Josefin Slab', serif;
  border: 2px solid transparent;
}

.btn-primary-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dalcampo-olive), var(--dalcampo-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary-modern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary-modern:hover::before {
  opacity: 1;
}

.btn-primary-modern:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
  border-color: rgba(74, 124, 89, 0.3);
}

.btn-primary-modern:hover::after {
  transform: translateX(100%);
}

.btn-primary-modern:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary-modern span {
  position: relative;
  z-index: 1;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(139, 90, 60, 0.1));
  border: 2px solid rgba(74, 124, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dalcampo-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.mobile-nav-toggle:hover {
  background: linear-gradient(135deg, var(--dalcampo-primary), var(--dalcampo-olive));
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
  border-color: rgba(74, 124, 89, 0.3);
}

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

  .navmenu-modern {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100vh;
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(248, 244, 240, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 2rem;
    padding-top: 6rem;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s ease,
                opacity 0.4s ease,
                pointer-events 0.4s ease;
    z-index: 1001;
    box-shadow: -8px 0 40px rgba(74, 124, 89, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    border-left: 2px solid rgba(74, 124, 89, 0.2);
  }

  .navmenu-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
      transparent 0%,
      var(--dalcampo-primary) 50%,
      transparent 100%);
  }

  .mobile-nav-close {
    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(74, 124, 89, 0.1), rgba(139, 90, 60, 0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(74, 124, 89, 0.2);
    border-radius: 12px;
    color: var(--dalcampo-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
  }

  .mobile-nav-close:hover {
    background: linear-gradient(135deg, var(--dalcampo-primary), var(--dalcampo-olive));
    color: white;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    border-color: rgba(74, 124, 89, 0.3);
  }

  .navmenu-modern.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: rgba(74, 124, 89, 0.05);
    border: 1px solid rgba(74, 124, 89, 0.1);
    font-size: 1.1rem;
  }

  .nav-link:hover {
    background: rgba(74, 124, 89, 0.1);
    border-color: rgba(74, 124, 89, 0.2);
    transform: translateX(8px);
  }

  .nav-link.active {
    background: linear-gradient(135deg,
      rgba(74, 124, 89, 0.15) 0%,
      rgba(212, 165, 116, 0.1) 100%);
    border-color: rgba(74, 124, 89, 0.3);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.2);
  }

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

  .header-actions {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .header-main {
    padding: 1rem 0;
  }

  .scrolled .header-main {
    padding: 0.75rem 0;
  }

  .header-main-content {
    gap: 1.5rem;
  }

  .logo-modern .logo-img {
    width: 180px;
    height: 50px;
  }

  .nav-menu-list {
    gap: 1.5rem;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .btn-primary-modern {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .mobile-nav-toggle {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .header-main {
    padding: 0.75rem 0;
  }

  .logo-modern .logo-img {
    width: 160px;
    height: 45px;
  }

  .nav-menu-list {
    gap: 1rem;
  }

  .btn-primary-modern {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }

  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
  }
}

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

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


/* Logo */
.logo-img {
  width: 240px;
  height: 70px;
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.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(30, 58, 95, 0.08);
}

/*--------------------------------------------------------------
# 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(30, 58, 95, 0.08);
  }

  .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(30, 58, 95, 0.08);
  }

  .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(245, 198, 203, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(245, 198, 203, 0.05);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #1e3a5f;
    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(255, 255, 255, 0.95);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Dalcampo Footer - Farm Theme
--------------------------------------------------------------*/
.footer-new {
  position: relative;
  background: linear-gradient(180deg,
    var(--dalcampo-light) 0%,
    rgba(248, 244, 240, 0.95) 50%,
    var(--dalcampo-light) 100%);
  color: var(--default-color);
  padding: 5rem 0 0;
  overflow: hidden;
  border-top: 2px solid rgba(74, 124, 89, 0.15);
  font-family: 'Josefin Slab', serif;
}

.footer-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--dalcampo-primary) 30%,
    var(--dalcampo-accent) 70%,
    transparent 100%);
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(74, 124, 89, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(139, 90, 60, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Footer particles animation */
.footer-background::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 4px;
  height: 4px;
  background: var(--dalcampo-accent);
  border-radius: 50%;
  animation: soil-particles 8s ease-in-out infinite;
}

.footer-background::before {
  content: '';
  position: absolute;
  top: 60%;
  right: 15%;
  width: 3px;
  height: 3px;
  background: var(--dalcampo-primary);
  border-radius: 50%;
  animation: soil-particles 6s ease-in-out infinite reverse;
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Footer Brand */
.footer-brand-section {
  grid-column: span 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-logo-image {
  width: 200px;
  height: 55px;
  filter: drop-shadow(0 3px 10px rgba(74, 124, 89, 0.2));
  transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
  transform: scale(1.05);
  filter: drop-shadow(0 5px 15px rgba(74, 124, 89, 0.3));
}

.footer-tagline {
  font-size: 1.1rem;
  color: rgba(74, 124, 89, 0.8);
  line-height: 1.6;
  margin: 0;
  font-family: 'Josefin Slab', serif;
  font-weight: 400;
}

.footer-logo:hover .footer-logo-image {
  filter: drop-shadow(0 4px 16px rgba(30, 58, 95, 0.25));
}

.footer-tagline {
  color: rgba(26, 45, 71, 0.7);
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(139, 90, 60, 0.1));
  border: 2px solid rgba(74, 124, 89, 0.2);
  border-radius: 12px;
  color: rgba(26, 45, 71, 0.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-link:hover {
  color: #ffffff;
  border-color: rgba(30, 58, 95, 0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.social-link:hover::before {
  opacity: 1;
}

/* Footer Links */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.footer-column-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dalcampo-primary);
  margin: 0 0 1.5rem 0;
  font-family: 'Josefin Slab', serif;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--dalcampo-primary), var(--dalcampo-accent));
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list li a {
  color: rgba(74, 124, 89, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Josefin Slab', serif;
  font-weight: 400;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  position: relative;
}

.footer-links-list li a::before {
  content: '';
  position: absolute;
  left: -12px;
  width: 4px;
  height: 4px;
  background: rgba(30, 58, 95, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links-list li a:hover {
  color: #1e3a5f;
  transform: translateX(8px);
  padding-left: 12px;
}

.footer-links-list li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Newsletter */
.footer-newsletter-description {
  color: rgba(26, 45, 71, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.footer-newsletter-form {
  margin-bottom: 0;
}

.newsletter-input-wrapper {
  display: flex;
  background: rgba(245, 198, 203, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 198, 203, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-input-wrapper:focus-within {
  border-color: rgba(245, 198, 203, 0.6);
  box-shadow: 0 0 0 3px rgba(245, 198, 203, 0.2),
              0 4px 12px rgba(245, 198, 203, 0.25);
  background: rgba(245, 198, 203, 0.2);
}

.newsletter-input-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  color: #1e3a5f;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input-field::placeholder {
  color: rgba(30, 58, 95, 0.5);
}

.newsletter-submit-btn {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
  border: none;
  padding: 1rem 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.newsletter-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d4a6b 0%, #3d5a7b 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.newsletter-submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.newsletter-submit-btn:hover::before {
  opacity: 1;
}

.newsletter-submit-btn i {
  position: relative;
  z-index: 1;
}

/* Footer Bottom */
.footer-bottom {
  background: linear-gradient(135deg, var(--dalcampo-primary), var(--dalcampo-olive));
  position: relative;
  overflow: hidden;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
}

.footer-bottom-wrapper {
  position: relative;
  z-index: 2;
}

.footer-bottom-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  gap: 2rem;
}

.footer-copyright-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  min-width: 280px;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-copyright p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.6;
}

.copyright-year {
  color: rgba(26, 45, 71, 0.6);
  font-weight: 400;
}

.copyright-brand {
  color: #1e3a5f;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.copyright-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e3a5f 0%, #2d4a6b 100%);
  opacity: 0.5;
  border-radius: 2px;
}

.copyright-text {
  color: rgba(26, 45, 71, 0.7);
  font-weight: 400;
}

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

.legal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(26, 45, 71, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.legal-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(30, 58, 95, 0.15) 0%, 
    rgba(245, 198, 203, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.legal-link i {
  font-size: 0.9rem;
  color: rgba(30, 58, 95, 0.7);
  transition: all 0.3s ease;
}

.legal-link span {
  position: relative;
  z-index: 1;
}

.legal-link:hover {
  color: #1e3a5f;
  border-color: rgba(30, 58, 95, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.legal-link:hover::before {
  opacity: 1;
}

.legal-link:hover i {
  color: #1e3a5f;
  transform: scale(1.1);
}

.footer-contact-section {
  display: flex;
  align-items: center;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(26, 45, 71, 0.9);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, 
    rgba(30, 58, 95, 0.08) 0%, 
    rgba(245, 198, 203, 0.06) 100%);
  border: 1px solid rgba(30, 58, 95, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.footer-contact-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.footer-contact-link::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, 
    rgba(30, 58, 95, 0.4) 0%, 
    rgba(245, 198, 203, 0.4) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.contact-icon-wrapper {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.15);
  border-radius: 10px;
  border: 1px solid rgba(30, 58, 95, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-icon-wrapper i {
  font-size: 1.25rem;
  color: #1e3a5f;
  transition: all 0.3s ease;
}

.contact-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}

.contact-label {
  font-size: 0.75rem;
  color: rgba(26, 45, 71, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-email {
  font-size: 0.95rem;
  color: #1e3a5f;
  font-weight: 600;
}

.footer-contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.25),
              0 0 0 1px rgba(30, 58, 95, 0.2);
  border-color: rgba(30, 58, 95, 0.3);
}

.footer-contact-link:hover::before {
  opacity: 1;
}

.footer-contact-link:hover::after {
  opacity: 1;
}

.footer-contact-link:hover .contact-icon-wrapper {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1) rotate(5deg);
}

.footer-contact-link:hover .contact-icon-wrapper i {
  color: #ffffff;
  transform: scale(1.1);
}

.footer-contact-link:hover .contact-label {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-link:hover .contact-email {
  color: #ffffff;
}

.footer-bottom-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(30, 58, 95, 0.2) 50%, 
    transparent 100%);
  margin: 1.5rem 0;
  position: relative;
}

.footer-bottom-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: rgba(30, 58, 95, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(30, 58, 95, 0.3);
}

.footer-bottom-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.footer-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(26, 45, 71, 0.7);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(30, 58, 95, 0.05);
  border: 1px solid rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
}

.footer-meta-item i {
  font-size: 0.9rem;
  color: rgba(30, 58, 95, 0.6);
  transition: all 0.3s ease;
}

.footer-meta-item span {
  font-weight: 500;
}

.footer-meta-item:hover {
  color: #1e3a5f;
  background: rgba(30, 58, 95, 0.1);
  border-color: rgba(30, 58, 95, 0.2);
  transform: translateY(-2px);
}

.footer-meta-item:hover i {
  color: #1e3a5f;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1199px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-newsletter-column {
    grid-column: span 2;
  }
}

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

  .footer-main {
    gap: 2.5rem;
  }

  .footer-logo-image {
    width: 180px;
    height: 50px;
  }

  .footer-tagline {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-newsletter-column {
    grid-column: span 1;
  }

  .footer-bottom {
    padding: 2.5rem 0;
  }

  .footer-bottom-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-copyright-section {
    width: 100%;
    min-width: auto;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-legal-links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .legal-link {
    flex: 1;
    min-width: calc(33.333% - 0.5rem);
    justify-content: center;
    padding: 0.625rem 0.75rem;
    font-size: 0.8rem;
  }

  .legal-link span {
    display: none;
  }

  .footer-contact-section {
    width: 100%;
  }

  .footer-contact-link {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  .contact-text-wrapper {
    align-items: center;
    text-align: center;
  }

  .footer-bottom-meta {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .footer-meta-item {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

/*--------------------------------------------------------------
# Global Footer (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(180deg, #1a1626 0%, #0f0d17 100%);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(30, 58, 95, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(30, 58, 95, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 198, 203, 0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Newsletter Section */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(245, 198, 203, 0.2), rgba(248, 215, 218, 0.15));
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

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

.newsletter-icon i {
  font-size: 36px;
  color: #1e3a5f;
}

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

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

.newsletter-form {
  position: relative;
}

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

.input-group:focus-within {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

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

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

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

.btn-newsletter:hover {
  background: var(--dark-background);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 95, 0.15);
}

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

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

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

.form-messages .error-message {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
}

.form-messages .sent-message {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}

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

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

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

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

.brand-logo:hover .footer-logo {
  transform: scale(1.05);
  opacity: 0.9;
}

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

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

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

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

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

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

.social-link:hover {
  background: rgba(30, 58, 95, 0.2);
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
  border-color: rgba(30, 58, 95, 0.4);
}

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

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

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

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

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

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

.input-group-compact:focus-within {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

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

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

.btn-newsletter-compact:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

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

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

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

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


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

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 58, 95, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 198, 203, 0.3);
}

.social-link:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
}

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

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

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

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

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

.footer-links ul li a:hover {
  color: var(--contrast-color);
  background: rgba(30, 58, 95, 0.15);
  border-left-color: var(--accent-color);
  padding-left: 1rem;
}

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

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

.contact-item:hover {
  background: rgba(30, 58, 95, 0.15);
  border-color: rgba(30, 58, 95, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
}

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

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

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

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

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

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

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

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

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

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

.footer-bottom-links a:hover {
  color: var(--contrast-color);
  background: rgba(30, 58, 95, 0.15);
  border-color: rgba(30, 58, 95, 0.3);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(245, 198, 203, 0.05) 100%);
  padding: 60px 0;
  position: relative;
  border-bottom: 1px solid rgba(30, 58, 95, 0.2);
}

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

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

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 0 120px;
  background: #fef7f7;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fef7f7 50%, #ffffff 100%);
  z-index: 0;
  overflow: hidden;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(30, 58, 95, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(245, 198, 203, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(30, 58, 95, 0.08) 0%, transparent 60%);
  z-index: 1;
  animation: gradient-pulse 20s ease-in-out infinite;
}

@keyframes gradient-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

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

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 198, 203, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  animation: particle-float 30s ease-in-out infinite;
}

.hero-particles::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  bottom: 10%;
  right: 10%;
  animation-delay: 15s;
}

@keyframes particle-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(50px, -50px) scale(1.2);
    opacity: 0.8;
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
    opacity: 0.6;
  }
}



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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  color: rgba(30, 58, 95, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  border-color: rgba(30, 58, 95, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(245, 198, 203, 0.6);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(245, 198, 203, 0.6);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(245, 198, 203, 0.9);
  }
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
}

.hero-title .title-line {
  display: block;
  margin-bottom: 0.5rem;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(245, 198, 203, 0.7));
  }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(30, 58, 95, 0.8);
  margin-bottom: 2.5rem;
  max-width: 580px;
  font-weight: 400;
}

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

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(30, 58, 95, 0.85);
  font-size: 1rem;
  font-weight: 400;
}

.hero-feature-item i {
  color: #2d4a6b;
  font-size: 1.1rem;
  flex-shrink: 0;
  animation: check-pulse 2s ease-in-out infinite;
}

@keyframes check-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(245, 198, 203, 0.5));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.8));
  }
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(245, 198, 203, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  font-family: var(--heading-font);
}

.btn-hero-primary::before {
  content: '';
  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.6s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245, 198, 203, 0.6);
  border-color: rgba(245, 198, 203, 0.5);
  background: linear-gradient(135deg, #2d4a6b, #3d5a7b);
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

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

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #1e3a5f;
  padding: 1.125rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(245, 198, 203, 0.4);
}

.btn-hero-outline:hover {
  background: rgba(245, 198, 203, 0.15);
  border-color: rgba(245, 198, 203, 0.6);
  color: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 198, 203, 0.3);
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(30, 58, 95, 0.75);
  font-size: 0.9rem;
  font-weight: 400;
}

.trust-badge i {
  color: #2d4a6b;
  font-size: 1rem;
  animation: trust-icon-float 3s ease-in-out infinite;
}

@keyframes trust-icon-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

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

.hero-ai-core {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(245, 198, 203, 0.3);
  animation: ai-ring-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(245, 198, 203, 0.2);
}

.ai-ring.ring-1 {
  width: 400px;
  height: 400px;
  animation-delay: 0s;
  border-style: dashed;
  border-width: 2px;
}

.ai-ring.ring-2 {
  width: 320px;
  height: 320px;
  animation-delay: 1s;
  border-style: solid;
  border-width: 1.5px;
}

.ai-ring.ring-3 {
  width: 240px;
  height: 240px;
  animation-delay: 2s;
  border-style: dotted;
  border-width: 1px;
}

@keyframes ai-ring-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) rotate(180deg);
  }
}

.ai-data-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.data-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(245, 198, 203, 0.6);
  animation: data-flow 8s linear infinite;
}

.data-particle.particle-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.data-particle.particle-2 {
  top: 30%;
  right: 15%;
  animation-delay: 1.5s;
}

.data-particle.particle-3 {
  bottom: 25%;
  left: 25%;
  animation-delay: 3s;
}

.data-particle.particle-4 {
  bottom: 15%;
  right: 30%;
  animation-delay: 4.5s;
}

.data-particle.particle-5 {
  top: 50%;
  left: 10%;
  animation-delay: 6s;
}

.data-particle.particle-6 {
  top: 20%;
  right: 25%;
  animation-delay: 7.5s;
}

@keyframes data-flow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translate(calc(200px - 100%), calc(200px - 100%)) scale(1.5);
    opacity: 0.8;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
}

.ai-center {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(45, 74, 107, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 3px solid rgba(245, 198, 203, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 50px rgba(245, 198, 203, 0.4),
    inset 0 0 30px rgba(30, 58, 95, 0.3),
    0 0 0 10px rgba(245, 198, 203, 0.1);
  z-index: 10;
  animation: ai-center-pulse 4s ease-in-out infinite;
  position: relative;
}

@keyframes ai-center-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 50px rgba(245, 198, 203, 0.4),
      inset 0 0 30px rgba(30, 58, 95, 0.3),
      0 0 0 10px rgba(245, 198, 203, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 70px rgba(245, 198, 203, 0.6),
      inset 0 0 40px rgba(30, 58, 95, 0.4),
      0 0 0 15px rgba(245, 198, 203, 0.2);
  }
}

.ai-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(245, 198, 203, 0.6);
  animation: pulse-ring-expand 2s ease-out infinite;
}

@keyframes pulse-ring-expand {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.ai-center i {
  font-size: 5rem;
  color: #ffffff;
  animation: shield-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.8));
  z-index: 1;
  position: relative;
}

@keyframes shield-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.8));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(245, 198, 203, 1));
  }
}

.transaction-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.transaction-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(245, 198, 203, 0.6) 50%, 
    transparent 100%);
  animation: transaction-flow 3s linear infinite;
  box-shadow: 0 0 10px rgba(245, 198, 203, 0.5);
}

.transaction-line.line-1 {
  top: 20%;
  left: 0;
  width: 60%;
  animation-delay: 0s;
  transform: rotate(45deg);
  transform-origin: left center;
}

.transaction-line.line-2 {
  top: 60%;
  right: 0;
  width: 50%;
  animation-delay: 1s;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.transaction-line.line-3 {
  bottom: 30%;
  left: 20%;
  width: 40%;
  animation-delay: 2s;
  transform: rotate(90deg);
  transform-origin: center center;
}

@keyframes transaction-flow {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

.hero-practice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.practice-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.9));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.75rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  border: 1px solid rgba(30, 58, 95, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 198, 203, 0.2), rgba(248, 215, 218, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 198, 203, 0.6);
  box-shadow: 0 20px 50px rgba(245, 198, 203, 0.4);
}

.practice-card:hover::before {
  opacity: 1;
}

.practice-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  box-shadow: 0 8px 25px rgba(245, 198, 203, 0.4);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.practice-card:hover .practice-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(245, 198, 203, 0.6);
}

.practice-icon i {
  font-size: 2rem;
  color: #ffffff;
  filter: drop-shadow(0 0 5px rgba(245, 198, 203, 0.5));
}

.practice-info {
  position: relative;
  z-index: 1;
}

.practice-info h4 {
  color: var(--default-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: var(--heading-font);
}

.practice-info p {
  color: rgba(30, 58, 95, 0.6);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
}

.practice-card.card-yoga {
  animation: card-float-1 6s ease-in-out infinite;
}

.practice-card.card-meditation {
  animation: card-float-2 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.practice-card.card-mindfulness {
  animation: card-float-3 6s ease-in-out infinite;
  animation-delay: 3s;
}

.practice-card.card-balance {
  animation: card-float-4 6s ease-in-out infinite;
  animation-delay: 4.5s;
}

@keyframes card-float-1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes card-float-2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

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

@keyframes card-float-4 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}


.hero-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(30, 58, 95, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, rgba(30, 58, 95, 0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 70px;
    opacity: 0.3;
  }
}

.scroll-down span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .hero-ai-core {
    width: 300px;
    height: 300px;
  }

  .ai-ring.ring-1 {
    width: 300px;
    height: 300px;
  }

  .ai-ring.ring-2 {
    width: 240px;
    height: 240px;
  }

  .ai-ring.ring-3 {
    width: 180px;
    height: 180px;
  }

  .ai-center {
    width: 140px;
    height: 140px;
  }

  .ai-center i {
    font-size: 3.5rem;
  }

  .circle-center i {
    font-size: 4rem;
  }
}

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

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.25;
  }

  .hero-title .title-line {
    margin-bottom: 0.25rem;
  }

  .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
  }

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

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    gap: 0.75rem;
  }

  .hero-feature-item {
    font-size: 0.95rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-practice-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 100%;
  }

  .hero-meditation-circle {
    width: 250px;
    height: 250px;
    margin-bottom: 2rem;
  }

  .circle-ring.ring-1 {
    width: 250px;
    height: 250px;
  }

  .circle-ring.ring-2 {
    width: 200px;
    height: 200px;
  }

  .circle-ring.ring-3 {
    width: 150px;
    height: 150px;
  }

  .circle-center {
    width: 120px;
    height: 120px;
  }

  .circle-center i {
    font-size: 3rem;
  }

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

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

.about-bg {
  background: linear-gradient(135deg, #4a3d5c 0%, #6b5b7d 100%);
  position: relative;
  padding: 80px 0;
}


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

.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: white;
}

.about-title .highlight {
  background: linear-gradient(45deg, #b19cd9, #c4a8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #9333ea, #b19cd9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 24px;
  color: #ffffff;
}

.feature-content h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.about-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.image-stack {
  height: 100%;
}

.image-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.2);
}

.main-image {
  top: 0;
  left: 0;
  width: 80%;
  z-index: 2;
}

.overlay-image {
  top: 20%;
  right: 0;
  width: 70%;
  z-index: 1;
}


.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #f5c6cb, #f8d7da);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.card-icon i {
  color: #1e3a5f;
  font-size: 18px;
}

.card-content h5 {
  color: #1e3a5f;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.card-content p {
  color: rgba(30, 58, 95, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.stats-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 198, 203, 0.3);
}


.cta-section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 198, 203, 0.3);
}

.cta-section h3 {
  color: #1e3a5f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(30, 58, 95, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  border-color: #1e3a5f;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #2d4a6b, #3d5a7b);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
}

.btn-outline-primary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  
  .about-visual {
    min-height: 300px;
    margin-top: 40px;
  }
  
  .image-item {
    position: relative;
    width: 100% !important;
    margin-bottom: 20px;
  }
  

  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.features .icon-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(30, 58, 95, 0.15);
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--contrast-color);
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
  background: rgba(217, 119, 6, 0.1);
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.features .icon-box:hover i {
  background: rgba(217, 119, 6, 0.2);
  transform: scale(1.1);
}

.features .icon-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Features Section */
.features {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fef7f7 100%);
  overflow: hidden;
}

.features-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(245, 198, 203, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(30, 58, 95, 0.12) 0%, transparent 50%);
  z-index: 0;
  animation: features-bg-rotate 25s linear infinite;
}

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

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

.features-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.features-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
}

.features-intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(30, 58, 95, 0.8);
  max-width: 750px;
  margin: 0 auto;
}

/* Features Content */
.features-content {
  padding-right: 30px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--contrast-color);
}

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

.features-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.features-showcase {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-showcase-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(254, 247, 247, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(245, 198, 203, 0.3);
  border-radius: 28px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-showcase-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 198, 203, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.feature-showcase-card:hover::after {
  opacity: 1;
}

.feature-showcase-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(245, 198, 203, 0.6);
  box-shadow: 0 25px 60px rgba(245, 198, 203, 0.3);
}

.feature-primary {
  grid-row: 1 / 3;
  padding: 3.5rem;
  background: linear-gradient(135deg, rgba(245, 198, 203, 0.2), rgba(248, 215, 218, 0.15));
  border-color: rgba(245, 198, 203, 0.4);
}

.showcase-icon-large {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 30px;
  opacity: 0.2;
  filter: blur(20px);
  animation: orb-pulse 4s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { 
    opacity: 0.2; 
    transform: translate(-50%, -50%) scale(1);
    filter: blur(20px);
  }
  50% { 
    opacity: 0.4; 
    transform: translate(-50%, -50%) scale(1.2);
    filter: blur(25px);
  }
}

.showcase-icon-large i {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 30px;
  font-size: 4rem;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(245, 198, 203, 0.4);
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.5));
}

.feature-primary:hover .showcase-icon-large i {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(245, 198, 203, 0.6);
  filter: drop-shadow(0 0 20px rgba(245, 198, 203, 0.8));
}

.showcase-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 18px;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(245, 198, 203, 0.3);
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(245, 198, 203, 0.4));
}

.feature-showcase-card:hover .showcase-icon {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 12px 35px rgba(245, 198, 203, 0.5);
  filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.7));
}

.showcase-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1.25rem;
  font-family: var(--heading-font);
}

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

.showcase-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(30, 58, 95, 0.85);
  margin-bottom: 2rem;
}

.showcase-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(30, 58, 95, 0.8);
  margin-bottom: 1.5rem;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(245, 198, 203, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(245, 198, 203, 0.3);
  transition: all 0.3s ease;
}

.showcase-feature-item:hover {
  background: rgba(245, 198, 203, 0.25);
  border-color: rgba(245, 198, 203, 0.5);
  transform: translateX(5px);
}

.showcase-feature-item i {
  color: #2d4a6b;
  font-size: 1.25rem;
  flex-shrink: 0;
  animation: feature-check-pulse 2s ease-in-out infinite;
}

@keyframes feature-check-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 3px rgba(245, 198, 203, 0.4));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(245, 198, 203, 0.7));
  }
}

.showcase-feature-item span {
  color: rgba(30, 58, 95, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(30, 58, 95, 0.75);
  line-height: 1.6;
}

.showcase-list li i {
  color: #2d4a6b;
  font-size: 1rem;
  flex-shrink: 0;
  animation: list-check-pulse 2s ease-in-out infinite;
}

@keyframes list-check-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Features CTA */
.features-cta-wrapper {
  margin-top: 5rem;
  text-align: center;
}

.contact-cta {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fef7f7 100%);
  overflow: hidden;
}

.contact-cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(245, 198, 203, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 198, 203, 0.1) 0%, transparent 60%);
  z-index: 0;
  animation: cta-bg-pulse 20s ease-in-out infinite;
}

@keyframes cta-bg-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.contact-cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cta-particle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(245, 198, 203, 0.6);
  animation: cta-particle-float 12s ease-in-out infinite;
}

.cta-particle.particle-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.cta-particle.particle-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.cta-particle.particle-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

.cta-particle.particle-4 {
  top: 30%;
  right: 25%;
  animation-delay: 9s;
}

@keyframes cta-particle-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.8;
  }
  75% {
    transform: translate(20px, 30px) scale(1.1);
    opacity: 0.9;
  }
}

.cta-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cta-icon-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(245, 198, 203, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: cta-icon-glow-pulse 3s ease-in-out infinite;
  filter: blur(20px);
}

@keyframes cta-icon-glow-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.cta-icon-ring {
  position: absolute;
  inset: -10px;
  border: 3px solid rgba(245, 198, 203, 0.5);
  border-radius: 50%;
  animation: cta-icon-ring-rotate 4s linear infinite;
}

@keyframes cta-icon-ring-rotate {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.5;
  }
}

.cta-icon-wrapper i {
  position: relative;
  z-index: 1;
  font-size: 4rem;
  color: #1e3a5f;
  filter: drop-shadow(0 0 15px rgba(245, 198, 203, 0.6));
  animation: cta-icon-bounce 3s ease-in-out infinite;
}

@keyframes cta-icon-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

.cta-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  font-family: var(--heading-font);
  animation: cta-title-fade 2s ease-in-out infinite;
}

@keyframes cta-title-fade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(30, 58, 95, 0.85);
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-email-link {
  color: #1e3a5f;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(245, 198, 203, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.cta-email-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b);
  transition: width 0.3s ease;
}

.cta-email-link:hover {
  color: #2d4a6b;
  border-bottom-color: rgba(245, 198, 203, 0.8);
}

.cta-email-link:hover::after {
  width: 100%;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(245, 198, 203, 0.3);
  border-radius: 50px;
  font-size: 1rem;
  color: #1e3a5f;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 198, 203, 0.2);
}

.cta-feature-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(245, 198, 203, 0.6);
  box-shadow: 0 8px 25px rgba(245, 198, 203, 0.4);
  background: rgba(255, 255, 255, 1);
}

.cta-feature-item i {
  font-size: 1.25rem;
  color: #2d4a6b;
  animation: cta-feature-icon-pulse 2s ease-in-out infinite;
}

@keyframes cta-feature-icon-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(245, 198, 203, 0.4));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.7));
  }
}

.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.cta-btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(245, 198, 203, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary-modern::before {
  content: '';
  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.6s ease;
}

.cta-btn-primary-modern:hover::before {
  left: 100%;
}

.cta-btn-primary-modern:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(245, 198, 203, 0.6);
  background: linear-gradient(135deg, #2d4a6b, #3d5a7b);
}

.cta-btn-primary-modern i {
  transition: transform 0.3s ease;
}

.cta-btn-primary-modern:hover i {
  transform: translateX(5px);
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: btn-shimmer 3s ease-in-out infinite;
}

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

.cta-btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #1e3a5f;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(245, 198, 203, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-btn-secondary-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(245, 198, 203, 0.2);
  transition: width 0.4s ease;
  z-index: -1;
}

.cta-btn-secondary-modern:hover::before {
  width: 100%;
}

.cta-btn-secondary-modern:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(245, 198, 203, 0.8);
  box-shadow: 0 10px 30px rgba(245, 198, 203, 0.3);
  color: #1e3a5f;
}

.cta-btn-secondary-modern i {
  transition: transform 0.3s ease;
}

.cta-btn-secondary-modern:hover i {
  transform: rotate(15deg);
}

.cta-support-info {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(245, 198, 203, 0.15);
  border: 1px solid rgba(245, 198, 203, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  color: rgba(30, 58, 95, 0.8);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.cta-support-info:hover {
  background: rgba(245, 198, 203, 0.25);
  border-color: rgba(245, 198, 203, 0.5);
  transform: scale(1.05);
}

.cta-support-info i {
  color: #2d4a6b;
  animation: cta-clock-pulse 2s ease-in-out infinite;
}

@keyframes cta-clock-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(254, 247, 247, 0.95));
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 3px solid rgba(245, 198, 203, 0.4);
  border-radius: 32px;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(245, 198, 203, 0.25);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 198, 203, 0.2) 0%, transparent 70%);
  animation: rotate-bg 25s linear infinite;
}

.cta-icon {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 50%;
  font-size: 3.5rem;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(245, 198, 203, 0.4);
  animation: float-icon 4s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(245, 198, 203, 0.6));
  border: 3px solid rgba(245, 198, 203, 0.3);
}

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

.cta-heading {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.cta-text {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(30, 58, 95, 0.85);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  padding: 1.125rem 2.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(245, 198, 203, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::before {
  content: '';
  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.6s ease;
}

.cta-btn-primary:hover::before {
  left: 100%;
}

.cta-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 45px rgba(245, 198, 203, 0.6);
  background: linear-gradient(135deg, #2d4a6b, #3d5a7b);
}

.cta-btn-primary i {
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover i {
  transform: translateX(5px);
}

.cta-btn-primary:hover i {
  transform: translateX(5px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--default-color);
  padding: 1.125rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(30, 58, 95, 0.3);
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(30, 58, 95, 0.15);
  border-color: var(--heading-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

/* Features Visual */
.features-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-composition {
  position: relative;
  width: 100%;
  height: 500px;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(30, 58, 95, 0.2);
}

.main-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(245, 198, 203, 0.3), rgba(30, 58, 95, 0.15));
  border-radius: 25px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(30, 58, 95, 0.15);
  animation: float 6s ease-in-out infinite;
}

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

.floating-card span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

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

.card-2 {
  top: 50%;
  right: -20px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

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

/* Responsive */
@media (max-width: 1200px) {
  .testimonials-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .feature-primary {
    grid-row: auto;
  }
}

@media (max-width: 992px) {
  .testimonials-main-title,
  .features-main-title {
    font-size: 2.75rem;
  }

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

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

  .features {
    padding: 100px 0;
  }

  .testimonials-main-title,
  .features-main-title {
    font-size: 2.25rem;
  }

  .testimonials-intro-text,
  .features-intro-text {
    font-size: 1.1rem;
  }

  .testimonial-featured {
    padding: 2.5rem;
  }

  .featured-quote p {
    font-size: 1.15rem;
  }

  .feature-primary {
    padding: 2.5rem;
  }

  .showcase-title {
    font-size: 1.75rem;
  }

  .showcase-icon-large {
    width: 100px;
    height: 100px;
  }

  .showcase-icon-large i {
    width: 100px;
    height: 100px;
    font-size: 3.5rem;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.features-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  padding: 40px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.features-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b5b7d, #8b7d9f, #9333ea);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.features-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(30, 58, 95, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.features-item .row {
  align-items: center;
}

.features-item img {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(30, 58, 95, 0.15);
  transition: transform 0.3s ease;
}

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

.features-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #6b5b7d 0%, #8b7d9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.features-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6b5b7d, #8b7d9f);
  border-radius: 2px;
}

.features-item .fst-italic {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.features-item .fst-italic::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: #b19cd9;
  font-family: serif;
}

.features-item p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.features-item ul li {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features-item ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.features-item ul li:hover::before {
  left: 100%;
}

.features-item ul li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.features-item ul li i {
  font-size: 20px;
  color: #b19cd9;
  margin-right: 15px;
  width: 24px;
  text-align: center;
  background: rgba(102, 126, 234, 0.1);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.features-item ul li:hover i {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

.features-item ul li span {
  font-weight: 500;
  line-height: 1.5;
}

.features-item ul li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-item {
    padding: 30px 20px;
    margin: 15px 0;
  }
  
  .features-item h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .features-item h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .features-item .fst-italic {
    text-align: center;
    padding-left: 0;
  }
  
  .features-item .fst-italic::before {
    display: none;
  }
  
  .features-item ul li {
    padding: 12px 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .features-item {
    padding: 25px 15px;
  }
  
  .features-item h3 {
    font-size: 1.5rem;
  }
  
  .features-item ul li {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

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

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fef7f7 100%);
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(245, 198, 203, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(30, 58, 95, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 198, 203, 0.1) 0%, transparent 60%);
  z-index: 0;
  animation: testimonials-bg-flow 25s ease-in-out infinite;
}

@keyframes testimonials-bg-flow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
    opacity: 0.9;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
    opacity: 0.85;
  }
}

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

.testimonials-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.12), rgba(123, 154, 204, 0.12));
  border: 1px solid rgba(30, 58, 95, 0.25);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-label i {
  color: var(--heading-color);
  font-size: 1rem;
}

.testimonials-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
}

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

.testimonials-intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(42, 52, 65, 0.7);
  max-width: 750px;
  margin: 0 auto;
}

.testimonials-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.testimonial-featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(254, 247, 247, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 3px solid rgba(245, 198, 203, 0.4);
  border-radius: 32px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(245, 198, 203, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 198, 203, 0.2) 0%, transparent 70%);
  animation: rotate-bg 20s linear infinite;
}

.testimonial-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b, #1e3a5f);
  background-size: 200% 100%;
  animation: featured-top-gradient 3s linear infinite;
}

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

@keyframes featured-top-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.testimonial-featured:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(245, 198, 203, 0.7);
  box-shadow: 
    0 30px 80px rgba(245, 198, 203, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.featured-quote-mark {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 20px;
  opacity: 0.2;
  animation: quote-mark-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(245, 198, 203, 0.4);
}

@keyframes quote-mark-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.2;
    box-shadow: 0 0 30px rgba(245, 198, 203, 0.4);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.3;
    box-shadow: 0 0 50px rgba(245, 198, 203, 0.6);
  }
}

.featured-quote-mark i {
  font-size: 3rem;
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.6));
}

.featured-quote {
  position: relative;
  z-index: 1;
  margin: 0 0 2.5rem 0;
}

.featured-quote p {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #1e3a5f;
  font-style: italic;
  margin: 0;
  font-weight: 400;
  position: relative;
  animation: quote-text-fade 4s ease-in-out infinite;
}

@keyframes quote-text-fade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
}

.featured-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(245, 198, 203, 0.3);
}

.featured-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.avatar-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(15px);
  animation: pulse-glow 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(245, 198, 203, 0.5);
}

@keyframes pulse-glow {
  0%, 100% { 
    opacity: 0.4; 
    transform: scale(1);
    box-shadow: 0 0 40px rgba(245, 198, 203, 0.5);
  }
  50% { 
    opacity: 0.7; 
    transform: scale(1.15);
    box-shadow: 0 0 60px rgba(245, 198, 203, 0.8);
  }
}

.featured-avatar i {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 50%;
  font-size: 3rem;
  color: #ffffff;
  filter: drop-shadow(0 0 15px rgba(245, 198, 203, 0.6));
  animation: avatar-icon-float 4s ease-in-out infinite;
  border: 3px solid rgba(245, 198, 203, 0.3);
  box-shadow: 
    0 0 30px rgba(245, 198, 203, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

@keyframes avatar-icon-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

.featured-info {
  flex: 1;
}

.featured-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 0.5rem 0;
  font-family: var(--heading-font);
}

.featured-info p {
  font-size: 1rem;
  color: rgba(30, 58, 95, 0.7);
  margin: 0 0 0.75rem 0;
}

.featured-stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  font-size: 1.1rem;
}

.featured-stars i {
  animation: star-twinkle 2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}

.featured-stars i:nth-child(1) { animation-delay: 0s; }
.featured-stars i:nth-child(2) { animation-delay: 0.2s; }
.featured-stars i:nth-child(3) { animation-delay: 0.4s; }
.featured-stars i:nth-child(4) { animation-delay: 0.6s; }
.featured-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
  }
}

.featured-results {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 2px solid rgba(245, 198, 203, 0.4);
  font-size: 0.9rem;
  color: #1e3a5f;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(245, 198, 203, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 198, 203, 0.3), transparent);
  transition: left 0.5s ease;
}

.result-tag:hover::before {
  left: 100%;
}

.result-tag:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(245, 198, 203, 0.7);
  box-shadow: 0 8px 25px rgba(245, 198, 203, 0.4);
  background: rgba(255, 255, 255, 1);
}

.result-tag i {
  color: #2d4a6b;
  font-size: 1.1rem;
  animation: result-icon-pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes result-icon-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 3px rgba(245, 198, 203, 0.4));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(245, 198, 203, 0.7));
  }
}

.result-tag span {
  position: relative;
  z-index: 1;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-compact {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid rgba(245, 198, 203, 0.3);
  box-shadow: 0 8px 25px rgba(245, 198, 203, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-compact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #1e3a5f, #2d4a6b);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  box-shadow: 0 0 15px rgba(245, 198, 203, 0.5);
}

.testimonial-compact::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 198, 203, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-compact:hover {
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 198, 203, 0.3);
  border-color: rgba(245, 198, 203, 0.6);
}

.testimonial-compact:hover::before {
  transform: scaleY(1);
}

.testimonial-compact:hover::after {
  opacity: 1;
}

.compact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.compact-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(245, 198, 203, 0.3);
  border: 2px solid rgba(245, 198, 203, 0.3);
  transition: all 0.3s ease;
}

.compact-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 198, 203, 0.4), rgba(248, 215, 218, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.testimonial-compact:hover .compact-avatar::before {
  opacity: 1;
}

.testimonial-compact:hover .compact-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(245, 198, 203, 0.5);
}

.compact-avatar i {
  font-size: 1.75rem;
  color: #ffffff;
  filter: drop-shadow(0 0 5px rgba(245, 198, 203, 0.5));
  transition: all 0.3s ease;
}

.testimonial-compact:hover .compact-avatar i {
  filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.8));
}

.compact-meta {
  flex: 1;
}

.compact-meta h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a5f;
  margin: 0 0 0.25rem 0;
  font-family: var(--heading-font);
}

.compact-meta p {
  font-size: 0.85rem;
  color: rgba(30, 58, 95, 0.7);
  margin: 0;
}

.compact-rating {
  display: flex;
  gap: 0.2rem;
  color: #fbbf24;
  font-size: 0.9rem;
}

.compact-rating i {
  animation: compact-star-twinkle 2s ease-in-out infinite;
  filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.4));
}

.compact-rating i:nth-child(1) { animation-delay: 0s; }
.compact-rating i:nth-child(2) { animation-delay: 0.15s; }
.compact-rating i:nth-child(3) { animation-delay: 0.3s; }
.compact-rating i:nth-child(4) { animation-delay: 0.45s; }
.compact-rating i:nth-child(5) { animation-delay: 0.6s; }

@keyframes compact-star-twinkle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

.compact-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(30, 58, 95, 0.8);
  margin: 0 0 1.25rem 0;
  font-style: italic;
}

.compact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 198, 203, 0.2);
  border: 1px solid rgba(245, 198, 203, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #1e3a5f;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.compact-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.compact-badge:hover::before {
  left: 100%;
}

.compact-badge:hover {
  background: rgba(245, 198, 203, 0.3);
  border-color: rgba(245, 198, 203, 0.6);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(245, 198, 203, 0.3);
}

.compact-badge i {
  color: #2d4a6b;
  font-size: 1rem;
  animation: compact-badge-check 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes compact-badge-check {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.compact-badge span {
  position: relative;
  z-index: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info {
  flex: 1;
}

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

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

.testimonial-info .stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  opacity: 0.3;
  font-size: 1.5rem;
}

.quote-icon-left {
  margin-right: 0.5rem;
}

.quote-icon-right {
  margin-left: 0.5rem;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.testimonial-result i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.testimonial-result span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Program Slides */
.program-slide {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
}

.program-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.2);
  border-color: var(--accent-color);
}

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.program-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.program-slide h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.program-subtitle {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.program-content {
  flex: 1;
  margin-bottom: 2rem;
}

.program-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.program-feature i {
  color: var(--success-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.program-feature strong {
  display: block;
  color: var(--heading-color);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-feature p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.program-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 58, 95, 0.1);
  gap: 1rem;
}

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

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  padding: 40px 35px 35px 80px;
  margin: 25px 15px;
  min-height: 220px;
  position: relative;
  border: 1px solid rgba(42, 93, 91, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.1);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  top: 30px;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent-color);
  font-weight: bold;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
  letter-spacing: 0.5px;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  display: flex;
  gap: 3px;
}

.testimonials .testimonial-item .stars i {
  color: #ffd700;
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 28px;
  line-height: 0;
  opacity: 0.7;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px auto 15px auto;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-item p span {
  position: relative;
  z-index: 2;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

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

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(30, 58, 95, 0.08);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  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%);
}

/* New Pricing Card Styles */
/* Pricing Section */
.pricing {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(245, 198, 203, 0.1) 0%, var(--background-color) 100%);
  overflow: hidden;
}

.pricing-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(245, 198, 203, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: pricing-bg-pulse 15s ease-in-out infinite;
}

@keyframes pricing-bg-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.pricing-intro {
  text-align: center;
  margin-bottom: 4rem;
}

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

.pricing-intro-text {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-plan-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(245, 198, 203, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-plan-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 198, 203, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.pricing-plan-card:hover::before {
  transform: scaleX(1);
}

.pricing-plan-card:hover::after {
  opacity: 1;
}

.pricing-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 198, 203, 0.6);
  box-shadow: 0 15px 40px rgba(245, 198, 203, 0.3);
}

.pricing-plan-card.plan-featured {
  border-color: rgba(245, 198, 203, 0.5);
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(245, 198, 203, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(254, 247, 247, 0.95));
}

.pricing-plan-card.plan-featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b, #1e3a5f);
  background-size: 200% 100%;
  animation: featured-gradient 3s linear infinite;
}

@keyframes featured-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(245, 198, 203, 0.4);
  z-index: 1;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(245, 198, 203, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 198, 203, 0.6);
  }
}

.featured-badge i {
  font-size: 1rem;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: price-glow 3s ease-in-out infinite;
}

@keyframes price-glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(245, 198, 203, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.6));
  }
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--default-color);
  opacity: 0.8;
}

.price-period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
}

.plan-subtitle {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.plan-features {
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--default-color);
}

.feature-row.disabled {
  opacity: 0.5;
}

.feature-row i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #2d4a6b;
  animation: check-icon-pulse 2s ease-in-out infinite;
}

@keyframes check-icon-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 3px rgba(245, 198, 203, 0.4));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(245, 198, 203, 0.7));
  }
}

.feature-row.disabled i {
  color: rgba(30, 58, 95, 0.3);
  animation: none;
}

.feature-row .bi-check-circle-fill {
  color: var(--success-color);
}

.feature-row .bi-x-circle {
  color: var(--danger-color);
}

.feature-row span {
  line-height: 1.5;
}

.plan-footer {
  margin-top: auto;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  border-color: var(--accent-color);
  background: rgba(30, 58, 95, 0.1);
  transform: translateY(-2px);
}

.plan-btn-featured {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.plan-btn-featured:hover {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
  transform: translateY(-2px);
}

.plan-note {
  font-size: 0.875rem;
  color: var(--default-color);
  opacity: 0.7;
  text-align: center;
  margin: 1rem 0 0;
}

/* Pricing Guarantee */
.pricing-guarantee {
  margin-top: 4rem;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.guarantee-text {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.guarantee-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--default-color);
}

.guarantee-badge-item i {
  color: var(--success-color);
  font-size: 1.1rem;
}

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

.guarantee-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.guarantee-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

.guarantee-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.guarantee-btn-secondary:hover {
  border-color: var(--accent-color);
  background: rgba(30, 58, 95, 0.1);
}

/* Responsive */
@media (max-width: 1199px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-plan-card.plan-featured {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

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

  .pricing-main-title {
    font-size: 2rem;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }

  .pricing-plan-card.plan-featured {
    grid-column: 1;
    transform: scale(1);
  }

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

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .guarantee-icon {
    margin: 0 auto;
  }

  .guarantee-title {
    font-size: 1.75rem;
  }

  .guarantee-actions {
    flex-direction: column;
  }

  .guarantee-btn-primary,
  .guarantee-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Legal Info Styles */
.legal-info {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
}

.legal-info a {
  color: var(--accent-color);
  text-decoration: none;
}

.legal-info a:hover {
  text-decoration: underline;
}

.legal-info-section {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent-color);
}

.legal-info-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.legal-info-section p {
  margin-bottom: 0.5rem;
}

.stats-section {
  margin: 2rem 0;
}


/*--------------------------------------------------------------
# New Features Section Styles
--------------------------------------------------------------*/
.feature-box {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.2);
  border-color: var(--accent-color);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-box i {
  font-size: 2rem;
  color: var(--contrast-color);
}

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

.feature-box p,
.feature-description {
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.features-cta-box {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(30, 58, 95, 0.2);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.08);
}

.features-cta-box h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-cta-box .lead {
  color: var(--default-color);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# How It Works Section Styles
--------------------------------------------------------------*/
.how-it-works {
  position: relative;
}

.step-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.2);
  border-color: var(--accent-color);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(245, 198, 203, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  transform: scale(1.1);
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

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

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  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 {

  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 .contact-info {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact .contact-info h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.contact .info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.contact .info-content {
  flex: 1;
}

.contact .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .info-content p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--default-color);
}

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

.contact .info-content a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.contact .social-links {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .social-links h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact .social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s;
}

.contact .social-icons a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 58, 95, 0.15);
}

.contact .social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form {
  background: transparent;
  padding: 0;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea,
.contact .php-email-form select {
  font-size: 14px;
  padding: 12px 15px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: border-color 0.3s;
}

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

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.contact .form-check {
  margin-top: 10px;
}

.contact .form-check-label {
  font-size: 13px;
  color: var(--default-color);
  line-height: 1.6;
}

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

.contact .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 14px 40px;
  transition: all 0.3s;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.15);
}

.contact .php-email-form button[type=submit] svg {
  margin-right: 8px;
}


/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
/* Success Stories Section */
.success-stories {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(245, 198, 203, 0.1) 100%);
  overflow: hidden;
}

.success-stories-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(245, 198, 203, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: stories-bg-float 20s ease-in-out infinite;
}

@keyframes stories-bg-float {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(20px, -20px);
    opacity: 0.8;
  }
}

.success-stories-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(245, 198, 203, 0.2);
  border: 1px solid rgba(245, 198, 203, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.intro-label:hover {
  background: rgba(245, 198, 203, 0.3);
  border-color: rgba(245, 198, 203, 0.5);
  transform: scale(1.05);
}

.intro-label i {
  animation: intro-icon-rotate 3s ease-in-out infinite;
}

@keyframes intro-icon-rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.intro-label i {
  font-size: 1rem;
}

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

.success-stories-subtitle {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}


/* Success Stories Grid */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.success-story-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(245, 198, 203, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.success-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.success-story-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 198, 203, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.success-story-card:hover::before {
  transform: scaleX(1);
}

.success-story-card:hover::after {
  opacity: 1;
}

.success-story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 198, 203, 0.6);
  box-shadow: 0 15px 40px rgba(245, 198, 203, 0.3);
}

.story-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.story-avatar-large {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(245, 198, 203, 0.4);
  border-radius: 50%;
  animation: avatar-ring-pulse 2s ease-in-out infinite;
}

@keyframes avatar-ring-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
    border-color: rgba(245, 198, 203, 0.4);
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
    border-color: rgba(245, 198, 203, 0.7);
  }
}

.story-avatar-large i {
  font-size: 4rem;
  color: #1e3a5f;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(245, 198, 203, 0.5));
  animation: avatar-icon-float 3s ease-in-out infinite;
}

@keyframes avatar-icon-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.story-header-content {
  flex: 1;
}

.story-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.story-role {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0 0 1rem 0;
}

.story-achievement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 198, 203, 0.2);
  border: 1px solid rgba(245, 198, 203, 0.4);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3a5f;
  transition: all 0.3s ease;
}

.story-achievement:hover {
  background: rgba(245, 198, 203, 0.3);
  border-color: rgba(245, 198, 203, 0.6);
  transform: scale(1.05);
}

.story-achievement i {
  font-size: 1rem;
}

.story-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.story-text {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
}

.story-milestones {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(245, 198, 203, 0.15);
  border-radius: 10px;
  border-left: 3px solid #2d4a6b;
  transition: all 0.3s ease;
}

.milestone:hover {
  background: rgba(245, 198, 203, 0.25);
  border-left-color: #1e3a5f;
  transform: translateX(5px);
}

.milestone i {
  color: #2d4a6b;
  font-size: 1.1rem;
  flex-shrink: 0;
  animation: milestone-check 2s ease-in-out infinite;
}

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

.milestone span {
  font-size: 0.95rem;
  color: #1e3a5f;
  font-weight: 500;
}

/* Success Stories CTA */
.success-stories-cta {
  margin-top: 4rem;
}

.stories-cta-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.stories-cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.stories-cta-text {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.stories-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stories-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.stories-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

.stories-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.stories-btn-secondary:hover {
  border-color: var(--accent-color);
  background: rgba(30, 58, 95, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .success-stories {
    padding: 4rem 0;
  }

  .success-stories-title {
    font-size: 2rem;
  }


  .success-story-card {
    padding: 2rem;
  }

  .story-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stories-cta-card {
    padding: 2rem 1.5rem;
  }

  .stories-cta-title {
    font-size: 1.75rem;
  }

  .stories-cta-buttons {
    flex-direction: column;
  }

  .stories-btn-primary,
  .stories-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 247, 247, 0.95));
  backdrop-filter: blur(20px);
  color: var(--default-color);
  border: 2px solid rgba(30, 58, 95, 0.25);
  padding: 0;
  font-family: var(--default-font);
  box-shadow: 0 15px 50px rgba(30, 58, 95, 0.25), 0 5px 15px rgba(245, 198, 203, 0.2);
  border-radius: 20px;
  font-size: 14px;
  max-width: 550px;
  width: calc(100% - 40px);
  z-index: 1000;
  display: none;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b, #3d5a7b);
  background-size: 200% 100%;
  z-index: 1;
  animation: ai-gradient-shift 3s ease infinite;
}

#cookie-popup::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(245, 198, 203, 0.08));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#cookie-popup:hover::after {
  opacity: 1;
}

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

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

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

#cookie-popup .popup-message {
  flex: 1;
}

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

#cookie-popup .popup-message a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transition: width 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: var(--heading-color);
}

#cookie-popup .popup-message a:hover::after {
  width: 100%;
}

#cookie-popup button {
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-end;
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
  position: relative;
  overflow: hidden;
}

#cookie-popup button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

#cookie-popup button:hover::before {
  opacity: 1;
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, #2d4a6b, #3d5a7b);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.45), 0 5px 15px rgba(245, 198, 203, 0.2);
}

#cookie-popup button:active {
  transform: translateY(-1px) scale(0.98);
}

/* Cookie Popup Responsive Styles */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    transform: translateY(100px);
    border-radius: 16px;
    font-size: 13px;
  }

  #cookie-popup.show {
    transform: translateY(0);
  }

  #cookie-popup .popup-content {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  #cookie-popup .popup-message {
    max-width: 100%;
  }

  #cookie-popup p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  #cookie-popup button {
    width: 100%;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  #cookie-popup .popup-content {
    padding: 1rem;
    gap: 0.875rem;
  }

  #cookie-popup p {
    font-size: 12px;
  }

  #cookie-popup button {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}


/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
.page-title {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.page-title h1 {
  color: var(--heading-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-title p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Content Styling
--------------------------------------------------------------*/
.content {
  color: var(--default-color);
  line-height: 1.8;
}

.content h2 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.content h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.content h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.content p {
  margin-bottom: 1.2rem;
  color: var(--default-color);
}

.content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.content .contact-info {
  background: rgba(30, 58, 95, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(30, 58, 95, 0.2);
  margin: 2rem 0;
}

.content .contact-info p {
  margin-bottom: 0.5rem;
}

.content .contact-info strong {
  color: var(--accent-color);
}

.content .alert {
  border-radius: 15px;
  border: none;
  padding: 25px;
  margin: 2rem 0;
}

.content .alert-info {
  background: rgba(116, 192, 252, 0.1);
  color: var(--info-color);
  border: 1px solid rgba(116, 192, 252, 0.2);
}

.content .alert-warning {
  background: rgba(255, 212, 59, 0.1);
  color: var(--warning-color);
  border: 1px solid rgba(255, 212, 59, 0.2);
}

.content .alert h4 {
  color: inherit;
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings {
  background: rgba(30, 58, 95, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(30, 58, 95, 0.1);
  text-align: center;
  margin: 2rem 0;
}

.content .cookie-settings h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings p {
  margin-bottom: 1.5rem;
}

.content .cookie-settings .btn {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.content .cookie-settings .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Responsive Adjustments for Content Pages
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-title p {
    font-size: 1rem;
  }
  
  .content h2 {
    font-size: 1.5rem;
  }
  
  .content h3 {
    font-size: 1.3rem;
  }
  
  .content h4 {
    font-size: 1.1rem;
  }
  
  .content .contact-info,
  .content .cookie-settings {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .page-title {
    padding: 60px 0 30px;
  }
  
  .page-title h1 {
    font-size: 1.8rem;
  }
  
  .content h2 {
    font-size: 1.4rem;
  }
  
  .content h3 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Nueva Sección: Recursos Educativos
--------------------------------------------------------------*/
.recursos {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.recursos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.recurso-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(30, 58, 95, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.recurso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.recurso-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(30, 58, 95, 0.2);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

.recurso-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  background: rgba(30, 58, 95, 0.05);
}

.recurso-card.featured::before {
  transform: scaleX(1);
}

.recurso-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 25px;
  transition: all 0.3s ease;
}

.recurso-card:hover .recurso-icon {
  transform: scale(1.1) rotate(5deg);
}

.recurso-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.recurso-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.recurso-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 2px;
}

.recurso-card p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.recurso-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(30, 58, 95, 0.1);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.recurso-card:hover .feature-tag {
  background: rgba(30, 58, 95, 0.2);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.recurso-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.recurso-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
  color: var(--contrast-color);
}

/* Estadísticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer - Nuevo Diseño
--------------------------------------------------------------*/
.footer {
  background: var(--surface-color);
  padding: 80px 0 30px;
  color: var(--default-color);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.footer-newsletter {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 25px;
  margin: 0 20px 60px 20px;
  position: relative;
  z-index: 2;
}

.footer-newsletter h4 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-newsletter p {
  color: var(--contrast-color);
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.footer-newsletter .newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50px;
  backdrop-filter: blur(20px);
}

.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--background-color);
}

.footer-newsletter input[type="submit"] {
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-top {
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}



.footer-about .footer-contact p {
  margin: 0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-about .footer-contact strong {
  color: var(--heading-color);
}

.footer-links h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links ul li {
  padding: 8px 0;
}

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

.footer-links ul li a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  background: var(--background-color);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(30, 58, 95, 0.1);
  position: relative;
  z-index: 2;
}

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

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

/*--------------------------------------------------------------
# Responsive Design - Mejorado
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero h2 {
    font-size: 3.5rem;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 20px;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/

/* About Hero Section */
.about-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.about-hero-content {
  position: relative;
}

.section-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 58, 95, 0.15);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(30, 58, 95, 0.3);
}

.section-badge-new i {
  font-size: 0.9rem;
}

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

.highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature-item {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.about-feature-item:hover {
  background: rgba(30, 58, 95, 0.15);
  border-color: rgba(30, 58, 95, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-feature-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.about-feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-hero-visual {
  position: relative;
}

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

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .about-hero-image {
  transform: scale(1.05);
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(245, 198, 203, 0.05) 100%);
  pointer-events: none;
}

/* Mission Section */
.about-mission-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.mission-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.mission-card:hover {
  background: rgba(30, 58, 95, 0.1);
  border-color: rgba(30, 58, 95, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.mission-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Values Section */
.about-values-section {
  padding: 80px 0;
  background: var(--background-color);
}

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

.section-title-center {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.value-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  background: rgba(30, 58, 95, 0.15);
  border-color: rgba(30, 58, 95, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.value-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Team & Legal Section */
.about-team-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.team-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.team-header {
  margin-bottom: 1.5rem;
}

.team-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.team-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.legal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.legal-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-item strong {
  color: var(--heading-color);
  font-size: 0.85rem;
}

/* Modern Mission Section Styles */
.mission-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.mission-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mission-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-icon-modern i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.mission-title-modern {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.mission-content-modern {
  position: relative;
}

.mission-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.mission-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mission-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.mission-list-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Modern Values Section Styles */
.value-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.value-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-icon-modern {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.value-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.value-card-modern:hover .value-icon-bg {
  transform: scale(1.1) rotate(5deg);
}

.value-icon-bg i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.value-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.value-text-modern {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.section-description-center {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Modern Team Section Styles */
.team-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.team-card-modern:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.team-header-modern {
  margin-bottom: 2rem;
}

.team-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.team-content-modern {
  position: relative;
}

.team-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.team-features-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item-modern {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.team-feature-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-feature-icon-modern i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.team-feature-content-modern {
  flex: 1;
}

.team-feature-title-modern {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.team-feature-text-modern {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Modern Legal Card Styles */
.legal-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.legal-card-modern:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-icon-modern i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.legal-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content-modern {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-item-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-label-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-label-modern i {
  font-size: 1rem;
  color: var(--accent-color);
}

.legal-value-modern {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Services Page Styles */
.services-start-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-hero-content {
  position: relative;
}

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

.services-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}


.services-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-visual-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.services-visual-card:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.visual-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.services-visual-card:hover .visual-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.visual-icon-large i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.services-visual-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.services-visual-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.services-haupt-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.service-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-header-modern {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-modern i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.service-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.service-description-modern {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.service-features-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-footer-modern {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-link-modern:hover {
  color: var(--heading-color);
  gap: 0.75rem;
}

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

.service-link-modern:hover i {
  transform: translateX(3px);
}

.services-aktion-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-cta-content {
  position: relative;
}

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

.services-cta-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.services-cta-buttons .btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .mission-card-modern,
  .team-card-modern,
  .legal-card-modern {
    padding: 1.5rem;
  }

  .mission-title-modern,
  .team-title-modern {
    font-size: 1.5rem;
  }

  .value-card-modern {
    padding: 1.5rem;
  }

  .section-title-center {
    font-size: 2rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-title {
    font-size: 2rem;
  }


  .service-card-modern {
    padding: 1.5rem;
  }

  .service-title-modern {
    font-size: 1.25rem;
  }

  .services-cta-title {
    font-size: 2rem;
  }

  .services-cta-buttons {
    flex-direction: column;
  }

  .services-cta-buttons .btn-lg {
    width: 100%;
  }
}

.legal-item span,
.legal-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
}

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

@media (max-width: 991px) {
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .recurso-card {
    padding: 30px 20px;
  }
  
  .footer-newsletter .newsletter-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
  }
  
  .footer-newsletter input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .recurso-card {
    padding: 25px 15px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
}

/*--------------------------------------------------------------
# New Page Title Styles (for About, Contact, FAQ)
--------------------------------------------------------------*/
.page-title-new {
  position: relative;
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(30, 58, 95, 0.05) 100%);
  overflow: hidden;
}

.page-title-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(30, 58, 95, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-title-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(30, 58, 95, 0.1);
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.page-title-badge i {
  font-size: 1rem;
}

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

.page-title-description {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(30, 58, 95, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(30, 58, 95, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-content-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(30, 58, 95, 0.1);
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  width: fit-content;
}

.about-badge-new i {
  font-size: 1rem;
}

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

.about-hero-text-new {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
}

.about-features-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-feature-item-new:hover {
  transform: translateX(5px);
  border-color: rgba(30, 58, 95, 0.4);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.15);
}

.about-feature-icon-new {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon-new i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about-feature-content-new h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.about-feature-content-new p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.about-hero-visual-new {
  position: relative;
}

.about-image-wrapper-new {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 24px;
  opacity: 0.2;
  filter: blur(20px);
  z-index: -1;
}

.about-image-placeholder {
  font-size: 8rem;
  color: var(--accent-color);
  opacity: 0.3;
  animation: float-icon 3s ease-in-out infinite;
}

/* Mission & Vision */
.about-mission-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.about-mission-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(30, 58, 95, 0.05) 0%, var(--background-color) 100%);
  pointer-events: none;
}

.section-header-new {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

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

.section-description-new {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 1rem 0 0 0;
  line-height: 1.7;
}

.mission-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.mission-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.mission-card-new:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 58, 95, 0.4);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.25);
}

.mission-icon-wrapper-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mission-icon-wrapper-new i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.mission-title-new {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
}

.mission-text-new {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0 0 2rem 0;
}

.mission-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-list-new li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--default-color);
}

.mission-list-new li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Values */
.about-values-new {
  padding: 6rem 0;
}

.values-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.value-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 58, 95, 0.4);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.25);
}

.value-icon-wrapper-new {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.value-card-new:hover .value-icon-wrapper-new {
  transform: scale(1.1) rotate(5deg);
}

.value-icon-wrapper-new i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

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

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

/* Team & Legal */
.about-team-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.about-team-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--background-color) 0%, rgba(30, 58, 95, 0.05) 100%);
  pointer-events: none;
}

.team-grid-new {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.team-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 24px;
  padding: 3rem;
}

.team-title-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 1.5rem 0 1.5rem 0;
  line-height: 1.2;
}

.team-text-new {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0 0 2rem 0;
}

.team-features-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.team-feature-icon-new {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-feature-icon-new i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.team-feature-content-new h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.team-feature-content-new p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.legal-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.legal-header-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.legal-icon-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-icon-new i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.legal-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.legal-content-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.legal-label-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--default-color);
  opacity: 0.7;
}

.legal-label-new i {
  color: var(--accent-color);
  font-size: 1rem;
}

.legal-value-new {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-value-new:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(30, 58, 95, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(30, 58, 95, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-header-new {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

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

.contact-subtitle-new {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.contact-info-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 24px;
  padding: 3rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-info-title-new {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.contact-info-text-new {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.contact-info-items-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-info-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-info-icon-new {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon-new i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact-info-content-new h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.contact-info-content-new p {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.contact-info-content-new a {
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-info-content-new a:hover {
  opacity: 0.8;
}

.contact-info-note {
  font-size: 0.875rem;
  opacity: 0.6;
}

.contact-social-new {
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 58, 95, 0.1);
}

.contact-social-new h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

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

.contact-social-link-new {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  opacity: 0.7;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact-social-link-new:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.contact-form-card-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 24px;
  padding: 3rem;
}

.contact-form-header-new {
  margin-bottom: 2.5rem;
}

.contact-form-title-new {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
}

.contact-form-text-new {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

.contact-form-wrapper-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

.form-input-new {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-new:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-input-new::placeholder {
  color: var(--default-color);
  opacity: 0.5;
}

.form-textarea-new {
  resize: vertical;
  min-height: 150px;
}

.form-check-new {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox-new {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.form-check-label-new {
  font-size: 0.875rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
}

.form-check-label-new a {
  color: var(--accent-color);
  text-decoration: none;
}

.form-check-label-new a:hover {
  text-decoration: underline;
}

.form-submit-new {
  margin-top: 1rem;
}

.contact-submit-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.contact-submit-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-section-new {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(30, 58, 95, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.faq-container-new {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.faq-item-new {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item-new:hover {
  border-color: rgba(30, 58, 95, 0.4);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.15);
}

.faq-item-new.faq-active-new {
  border-color: rgba(30, 58, 95, 0.4);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.2);
}

.faq-item-new.faq-active-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 20px 20px 0 0;
}

.faq-header-new {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.faq-icon-wrapper-new {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-wrapper-new i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.faq-question-new {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
}

.faq-toggle-new {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(30, 58, 95, 0.1);
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.faq-item-new.faq-active-new .faq-toggle-new {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.faq-content-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item-new.faq-active-new .faq-content-new {
  max-height: 500px;
  padding: 1.5rem 0 0 0;
}

.faq-content-new p {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
  padding-left: 66px;
}

/* Responsive */
@media (max-width: 1199px) {
  .about-hero-grid,
  .team-grid-new,
  .contact-grid-new {
    grid-template-columns: 1fr;
  }

  .mission-grid-new {
    grid-template-columns: 1fr;
  }

  .values-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-card-new,
  .contact-info-card-new {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-title-heading {
    font-size: 2.5rem;
  }

  .about-hero-title-new,
  .section-title-new,
  .contact-title-new {
    font-size: 2rem;
  }

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

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

  .faq-content-new p {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Completely Redesigned About, Contact, FAQ Pages
--------------------------------------------------------------*/

/* AI Data Flow Animation */
@keyframes ai-data-flow {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

@keyframes ai-pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
}

@keyframes ai-shield-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(30, 58, 95, 0.3), 0 0 40px rgba(245, 198, 203, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(30, 58, 95, 0.5), 0 0 60px rgba(245, 198, 203, 0.4);
  }
}

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

@keyframes ai-icon-spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes ai-gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes ai-shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* About Page Hero */
.about-page-hero {
  position: relative;
  padding: 10rem 0 7rem;
  background: linear-gradient(135deg, #fef7f7 0%, #ffffff 50%, #fef7f7 100%);
  background-size: 200% 200%;
  animation: ai-gradient-shift 8s ease infinite;
  overflow: hidden;
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(30, 58, 95, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(245, 198, 203, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(30, 58, 95, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: ai-pulse-ring 6s ease-in-out infinite;
}

.about-hero-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-badge-wrapper {
  margin-bottom: 2rem;
  animation: ai-card-float 3s ease-in-out infinite;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(45, 74, 107, 0.15));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.about-hero-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
  border-color: rgba(30, 58, 95, 0.5);
}

.about-hero-badge i {
  font-size: 1.35rem;
  animation: ai-shield-glow 2s ease-in-out infinite;
}

.about-hero-main-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 2rem 0;
  line-height: 1.1;
  letter-spacing: -1.5px;
  animation: ai-card-float 4s ease-in-out infinite;
}

.about-gradient-text {
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b, #3d5a7b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ai-gradient-shift 3s ease infinite;
}

.about-hero-description {
  font-size: 1.3rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Story Section */
.about-geschichte-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fef7f7 100%);
}

.about-story-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 40%, rgba(30, 58, 95, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 85% 60%, rgba(245, 198, 203, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-story-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-story-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(45, 74, 107, 0.15));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  width: fit-content;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.about-story-label:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.about-story-label i {
  font-size: 1.35rem;
  animation: ai-icon-spin 4s linear infinite;
}

.about-story-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-story-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-story-text-block p {
  font-size: 1.15rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.95;
  margin: 0;
}

.about-story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 2.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(254, 247, 247, 0.6));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.1), transparent);
  transition: left 0.6s ease;
}

.about-highlight-item:hover::before {
  left: 100%;
}

.about-highlight-item:hover {
  transform: translateX(12px) translateY(-5px);
  border-color: rgba(30, 58, 95, 0.5);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.25), 0 5px 15px rgba(245, 198, 203, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(254, 247, 247, 0.8));
}

.about-highlight-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.35);
  transition: all 0.5s ease;
  position: relative;
}

.about-highlight-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(245, 198, 203, 0.2));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-highlight-item:hover .about-highlight-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.5);
}

.about-highlight-item:hover .about-highlight-icon::after {
  opacity: 1;
}

.about-highlight-icon i {
  font-size: 2.25rem;
  color: #ffffff;
  transition: transform 0.5s ease;
}

.about-highlight-item:hover .about-highlight-icon i {
  transform: scale(1.1);
}

.about-highlight-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
  transition: color 0.3s ease;
}

.about-highlight-item:hover .about-highlight-info h4 {
  color: var(--accent-color);
}

.about-highlight-info p {
  font-size: 1.05rem;
  color: var(--default-color);
  opacity: 0.85;
  margin: 0;
  line-height: 1.75;
}

.about-story-visual {
  position: relative;
}

.about-visual-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.7));
  backdrop-filter: blur(20px);
  border: 3px solid rgba(30, 58, 95, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.2);
  transition: all 0.5s ease;
}

.about-visual-container:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 80px rgba(30, 58, 95, 0.3);
  border-color: rgba(30, 58, 95, 0.4);
}

.about-visual-glow {
  position: absolute;
  inset: -15px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(245, 198, 203, 0.2));
  border-radius: 32px;
  opacity: 0.6;
  filter: blur(40px);
  z-index: -1;
  animation: ai-pulse-ring 4s ease-in-out infinite;
}

.about-visual-icon {
  font-size: 12rem;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  animation: ai-icon-spin 10s linear infinite;
  transition: all 0.5s ease;
}

.about-visual-container:hover .about-visual-icon {
  opacity: 0.7;
  transform: scale(1.1);
}

/* Mission Vision Section */
.about-ziel-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fef7f7 0%, #ffffff 50%, #fef7f7 100%);
}

.about-mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 30%, rgba(30, 58, 95, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(245, 198, 203, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-mv-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.about-mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(45, 74, 107, 0.15));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.about-mv-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.about-mv-badge i {
  font-size: 1.35rem;
  animation: ai-icon-spin 5s linear infinite;
}

.about-mv-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-mv-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.about-mv-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 32px;
  padding: 4.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.about-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b, #3d5a7b);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  animation: ai-gradient-shift 3s ease infinite;
}

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

.about-mv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(245, 198, 203, 0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.about-mv-card:hover::after {
  opacity: 1;
}

.about-mv-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(30, 58, 95, 0.5);
  box-shadow: 0 25px 60px rgba(30, 58, 95, 0.3), 0 10px 25px rgba(245, 198, 203, 0.2);
}

.about-mv-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem;
  margin-bottom: 2.75rem;
}

.about-mv-card-icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(30, 58, 95, 0.4);
  transition: all 0.5s ease;
  position: relative;
}

.about-mv-card-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(245, 198, 203, 0.2));
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-mv-card:hover .about-mv-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 45px rgba(30, 58, 95, 0.5);
}

.about-mv-card:hover .about-mv-card-icon::after {
  opacity: 1;
}

.about-mv-card-icon i {
  font-size: 3.25rem;
  color: #ffffff;
  transition: transform 0.5s ease;
}

.about-mv-card:hover .about-mv-card-icon i {
  transform: scale(1.1);
}

.about-mv-card-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  transition: color 0.3s ease;
}

.about-mv-card:hover .about-mv-card-header h3 {
  color: var(--accent-color);
}

.about-mv-card-body p {
  font-size: 1.15rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.95;
  margin: 0 0 2.75rem 0;
}

.about-mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 1.1rem;
  color: var(--default-color);
  transition: all 0.3s ease;
  padding: 0.75rem;
  border-radius: 12px;
}

.about-mv-list li:hover {
  background: rgba(30, 58, 95, 0.05);
  transform: translateX(5px);
}

.about-mv-list li i {
  color: var(--accent-color);
  font-size: 1.35rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.about-mv-list li:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* Values Section */
.about-werte-section {
  padding: 10rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fef7f7 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-werte-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(30, 58, 95, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(245, 198, 203, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-values-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.about-values-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(45, 74, 107, 0.15));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.about-values-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.about-values-badge i {
  font-size: 1.35rem;
  animation: ai-icon-spin 6s linear infinite;
}

.about-values-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.75rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-values-subtitle {
  font-size: 1.2rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.85;
  margin: 0;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.about-values-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.about-value-card-new {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 28px;
  padding: 3.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.about-value-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b, #3d5a7b);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  animation: ai-gradient-shift 3s ease infinite;
}

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

.about-value-card-new::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(245, 198, 203, 0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.about-value-card-new:hover::after {
  opacity: 1;
}

.about-value-card-new:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(30, 58, 95, 0.5);
  box-shadow: 0 25px 60px rgba(30, 58, 95, 0.3), 0 10px 25px rgba(245, 198, 203, 0.2);
}

.about-value-icon-new {
  width: 110px;
  height: 110px;
  margin: 0 auto 2.25rem;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  box-shadow: 0 12px 35px rgba(30, 58, 95, 0.4);
  position: relative;
}

.about-value-icon-new::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(245, 198, 203, 0.2));
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-value-card-new:hover .about-value-icon-new {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 15px 45px rgba(30, 58, 95, 0.5);
}

.about-value-card-new:hover .about-value-icon-new::after {
  opacity: 1;
}

.about-value-icon-new i {
  font-size: 3.25rem;
  color: #ffffff;
  transition: transform 0.5s ease;
}

.about-value-card-new:hover .about-value-icon-new i {
  transform: scale(1.15);
}

.about-value-card-new h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.75rem 0;
  transition: color 0.3s ease;
}

.about-value-card-new:hover h3 {
  color: var(--accent-color);
}

.about-value-card-new p {
  font-size: 1.05rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.85;
  margin: 0;
}

/* Team Section */
.about-team-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fef7f7 0%, #ffffff 100%);
}

.about-team-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 30%, rgba(30, 58, 95, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 75% 70%, rgba(245, 198, 203, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.about-team-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.about-team-main {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 32px;
  padding: 4.5rem;
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
  transition: all 0.5s ease;
}

.about-team-main:hover {
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.25);
  border-color: rgba(30, 58, 95, 0.3);
}

.about-team-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(45, 74, 107, 0.15));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.about-team-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.about-team-badge i {
  font-size: 1.35rem;
  animation: ai-icon-spin 7s linear infinite;
}

.about-team-title {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 2.25rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-team-text {
  font-size: 1.15rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.95;
  margin: 0 0 3.5rem 0;
}

.about-team-features {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.about-team-feature {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.about-team-feature:hover {
  background: rgba(30, 58, 95, 0.05);
  transform: translateX(8px);
}

.about-team-feature-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.35);
  transition: all 0.5s ease;
  position: relative;
}

.about-team-feature-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(245, 198, 203, 0.2));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-team-feature:hover .about-team-feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.5);
}

.about-team-feature:hover .about-team-feature-icon::after {
  opacity: 1;
}

.about-team-feature-icon i {
  font-size: 2.25rem;
  color: #ffffff;
  transition: transform 0.5s ease;
}

.about-team-feature:hover .about-team-feature-icon i {
  transform: scale(1.1);
}

.about-team-feature-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1rem 0;
  transition: color 0.3s ease;
}

.about-team-feature:hover .about-team-feature-content h4 {
  color: var(--accent-color);
}

.about-team-feature-content p {
  font-size: 1.05rem;
  color: var(--default-color);
  opacity: 0.85;
  margin: 0;
  line-height: 1.75;
}

.about-team-legal {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.about-legal-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
  transition: all 0.5s ease;
}

.about-legal-card:hover {
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.25);
  border-color: rgba(30, 58, 95, 0.3);
  transform: translateY(-5px);
}

.about-legal-header {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 2px solid rgba(30, 58, 95, 0.15);
}

.about-legal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.35);
  transition: all 0.5s ease;
}

.about-legal-card:hover .about-legal-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.5);
}

.about-legal-icon i {
  font-size: 2.25rem;
  color: #ffffff;
}

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

.about-legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.about-legal-row {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-legal-row:hover {
  background: rgba(30, 58, 95, 0.05);
}

.about-legal-label {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.75;
  font-weight: 600;
}

.about-legal-label i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about-legal-row span,
.about-legal-row a {
  font-size: 1.05rem;
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-legal-row a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Contact Page Styles */
.contact-page-hero {
  position: relative;
  padding: 10rem 0 7rem;
  background: linear-gradient(135deg, #fef7f7 0%, #ffffff 50%, #fef7f7 100%);
  background-size: 200% 200%;
  animation: ai-gradient-shift 8s ease infinite;
  overflow: hidden;
}

.contact-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(30, 58, 95, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(245, 198, 203, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: ai-pulse-ring 6s ease-in-out infinite;
}

.contact-hero-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero-badge-wrapper {
  margin-bottom: 2rem;
  animation: ai-card-float 3s ease-in-out infinite;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(45, 74, 107, 0.15));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.contact-hero-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.contact-hero-badge i {
  font-size: 1.35rem;
  animation: ai-shield-glow 2s ease-in-out infinite;
}

.contact-hero-main-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 2rem 0;
  line-height: 1.1;
  letter-spacing: -1.5px;
  animation: ai-card-float 4s ease-in-out infinite;
}

.contact-gradient-text {
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b, #3d5a7b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ai-gradient-shift 3s ease infinite;
}

.contact-hero-description {
  font-size: 1.3rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.kontakt-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fef7f7 100%);
}

.contact-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 40%, rgba(30, 58, 95, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 80% 60%, rgba(245, 198, 203, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.contact-page-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.75rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.contact-page-subtitle {
  font-size: 1.2rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.85;
  max-width: 750px;
  margin: 0 auto;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4.5rem;
  position: relative;
  z-index: 2;
}

.contact-info-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.contact-info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
  transition: all 0.5s ease;
}

.contact-info-card:hover {
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.25);
  border-color: rgba(30, 58, 95, 0.3);
  transform: translateY(-5px);
}

.contact-info-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.25rem 0;
}

.contact-info-intro {
  font-size: 1.05rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.75;
  margin: 0 0 3.5rem 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin-bottom: 3.5rem;
}

.contact-info-entry {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.5rem;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.contact-info-entry:hover {
  background: rgba(30, 58, 95, 0.05);
  transform: translateX(8px);
}

.contact-info-entry-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.35);
  transition: all 0.5s ease;
  position: relative;
}

.contact-info-entry-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(245, 198, 203, 0.2));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-info-entry:hover .contact-info-entry-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.5);
}

.contact-info-entry:hover .contact-info-entry-icon::after {
  opacity: 1;
}

.contact-info-entry-icon i {
  font-size: 1.875rem;
  color: #ffffff;
  transition: transform 0.5s ease;
}

.contact-info-entry:hover .contact-info-entry-icon i {
  transform: scale(1.1);
}

.contact-info-entry-content h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.875rem 0;
  transition: color 0.3s ease;
}

.contact-info-entry:hover .contact-info-entry-content h4 {
  color: var(--accent-color);
}

.contact-info-entry-content p {
  font-size: 1.05rem;
  color: var(--default-color);
  opacity: 0.85;
  margin: 0;
  line-height: 1.75;
}

.contact-info-entry-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-info-entry-content a:hover {
  opacity: 0.8;
  transform: translateX(3px);
}

.contact-info-note {
  font-size: 0.95rem;
  opacity: 0.65;
}

.contact-social-section {
  padding-top: 2.75rem;
  border-top: 2px solid rgba(30, 58, 95, 0.15);
}

.contact-social-section h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.75rem 0;
}

.contact-social-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.contact-social-button {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(254, 247, 247, 0.6));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.25);
  border-radius: 16px;
  color: var(--default-color);
  opacity: 0.85;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.35rem;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.15);
}

.contact-social-button:hover {
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-6px) scale(1.1);
  border-color: rgba(30, 58, 95, 0.5);
  box-shadow: 0 12px 35px rgba(30, 58, 95, 0.4);
}

.contact-form-sidebar {
  position: relative;
}

.contact-form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 32px;
  padding: 4.5rem;
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
  transition: all 0.5s ease;
}

.contact-form-card:hover {
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.25);
  border-color: rgba(30, 58, 95, 0.3);
}

.contact-form-intro {
  margin-bottom: 3.5rem;
}

.contact-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.25rem 0;
}

.contact-form-intro-text {
  font-size: 1.05rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.75;
  margin: 0;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

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

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

.contact-form-input {
  padding: 1.375rem 1.75rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.25);
  border-radius: 16px;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.4s ease;
  outline: none;
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.1);
}

.contact-form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px rgba(30, 58, 95, 0.15), 0 8px 25px rgba(30, 58, 95, 0.2);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.contact-form-input::placeholder {
  color: var(--default-color);
  opacity: 0.5;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 200px;
  font-family: inherit;
}

.contact-form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-form-checkbox {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--accent-color);
  flex-shrink: 0;
}

.contact-form-checkbox-label {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.85;
  line-height: 1.75;
}

.contact-form-checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-form-checkbox-label a:hover {
  text-decoration: underline;
  transform: translateX(2px);
}

.contact-form-submit-wrapper {
  margin-top: 1.25rem;
}

.contact-form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.375rem 3.5rem;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form-submit-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-form-submit-button:hover::before {
  opacity: 1;
}

.contact-form-submit-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 45px rgba(30, 58, 95, 0.5);
}

.contact-form-submit-button:active {
  transform: translateY(-2px) scale(0.98);
}

.contact-form-submit-button i {
  font-size: 1.35rem;
  transition: transform 0.4s ease;
}

.contact-form-submit-button:hover i {
  transform: translateX(5px);
}

/* FAQ Page Styles */
.faq-page-hero {
  position: relative;
  padding: 10rem 0 7rem;
  background: linear-gradient(135deg, #fef7f7 0%, #ffffff 50%, #fef7f7 100%);
  background-size: 200% 200%;
  animation: ai-gradient-shift 8s ease infinite;
  overflow: hidden;
}

.faq-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(30, 58, 95, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(245, 198, 203, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: ai-pulse-ring 6s ease-in-out infinite;
}

.faq-hero-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-badge-wrapper {
  margin-bottom: 2rem;
  animation: ai-card-float 3s ease-in-out infinite;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(45, 74, 107, 0.15));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.faq-hero-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.faq-hero-badge i {
  font-size: 1.35rem;
  animation: ai-shield-glow 2s ease-in-out infinite;
}

.faq-hero-main-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 2rem 0;
  line-height: 1.1;
  letter-spacing: -1.5px;
  animation: ai-card-float 4s ease-in-out infinite;
}

.faq-gradient-text {
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b, #3d5a7b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ai-gradient-shift 3s ease infinite;
}

.faq-hero-description {
  font-size: 1.3rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.9;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fef7f7 100%);
}

.faq-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(30, 58, 95, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 70% 70%, rgba(245, 198, 203, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.faq-container-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.faq-item-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 247, 247, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(30, 58, 95, 0.2);
  border-radius: 28px;
  padding: 3.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.faq-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.1), transparent);
  transition: left 0.6s ease;
}

.faq-item-card:hover::before {
  left: 100%;
}

.faq-item-card:hover {
  border-color: rgba(30, 58, 95, 0.5);
  box-shadow: 0 15px 45px rgba(30, 58, 95, 0.25), 0 5px 15px rgba(245, 198, 203, 0.2);
  transform: translateY(-5px);
}

.faq-item-card.faq-item-active {
  border-color: rgba(30, 58, 95, 0.5);
  box-shadow: 0 20px 55px rgba(30, 58, 95, 0.3), 0 8px 20px rgba(245, 198, 203, 0.25);
  transform: translateY(-8px);
}

.faq-item-card.faq-item-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1e3a5f, #2d4a6b, #3d5a7b);
  background-size: 200% 100%;
  border-radius: 28px 28px 0 0;
  animation: ai-gradient-shift 3s ease infinite;
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.faq-item-icon-box {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.35);
  transition: all 0.5s ease;
  position: relative;
}

.faq-item-icon-box::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(245, 198, 203, 0.2));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.faq-item-card:hover .faq-item-icon-box,
.faq-item-card.faq-item-active .faq-item-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.5);
}

.faq-item-card:hover .faq-item-icon-box::after,
.faq-item-card.faq-item-active .faq-item-icon-box::after {
  opacity: 1;
}

.faq-item-icon-box i {
  font-size: 2.25rem;
  color: #ffffff;
  transition: transform 0.5s ease;
}

.faq-item-card:hover .faq-item-icon-box i,
.faq-item-card.faq-item-active .faq-item-icon-box i {
  transform: scale(1.1);
}

.faq-item-question {
  flex: 1;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item-card:hover .faq-item-question,
.faq-item-card.faq-item-active .faq-item-question {
  color: var(--accent-color);
}

.faq-item-toggle {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(45, 74, 107, 0.15));
  border: 2px solid rgba(30, 58, 95, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.faq-item-card.faq-item-active .faq-item-toggle {
  background: linear-gradient(135deg, #1e3a5f, #2d4a6b);
  color: #ffffff;
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
  border-color: rgba(30, 58, 95, 0.5);
}

.faq-item-toggle i {
  font-size: 1.625rem;
  transition: transform 0.4s ease;
}

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

.faq-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
  padding: 0;
}

.faq-item-card.faq-item-active .faq-item-content {
  max-height: 800px;
  padding: 2.75rem 0 0 0;
}

.faq-item-content p {
  font-size: 1.15rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.95;
  margin: 0;
  padding-left: 104px;
}

/* Responsive */
@media (max-width: 1199px) {
  .about-story-layout,
  .about-team-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .about-mv-cards {
    grid-template-columns: 1fr;
  }

  .about-values-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team-legal,
  .contact-info-sidebar {
    position: static;
  }

  .faq-item-content p {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .about-hero-main-title,
  .contact-hero-main-title,
  .faq-hero-main-title {
    font-size: 2.75rem;
  }

  .about-story-title,
  .about-mv-title,
  .about-values-title,
  .about-team-title,
  .contact-page-title {
    font-size: 2.25rem;
  }

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

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

  .about-mv-card,
  .about-team-main,
  .contact-info-card,
  .contact-form-card {
    padding: 2.75rem;
  }

  .about-highlight-item,
  .about-team-feature {
    flex-direction: column;
    text-align: center;
  }

  .about-highlight-icon,
  .about-team-feature-icon {
    margin: 0 auto;
  }

  .about-visual-icon {
    font-size: 8rem;
  }
}

/*--------------------------------------------------------------
# Modern Redesign Styles
--------------------------------------------------------------*/

/* Header Redesigned */
.header-redesigned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(45, 90, 39, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-redesigned.scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border-bottom-color: rgba(45, 90, 39, 0.15);
}

.header-main {
  padding: 1.25rem 0;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-main.scrolled {
  padding: 0.875rem 0;
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo-redesigned {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.logo-redesigned::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(107, 127, 71, 0.05) 100%);
  opacity: 0;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.logo-redesigned:hover::before {
  opacity: 1;
}

.logo-redesigned:hover {
  transform: translateY(-2px);
}

.logo-image {
  width: 52px;
  height: 52px;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 8px rgba(45, 90, 39, 0.15));
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 2px;
}

.logo-redesigned:hover .logo-image {
  transform: scale(1.05) rotate(1deg);
  filter: drop-shadow(0 4px 16px rgba(45, 90, 39, 0.25));
}


.navmenu-redesigned {
  position: relative;
}

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

.nav-link {
  position: relative;
  padding: 0.75rem 1rem;
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.08) 0%, rgba(107, 127, 71, 0.08) 100%);
  opacity: 0;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link:hover,
.nav-link.active {
  color: #2d5a27;
  transform: translateY(-2px);
}

.nav-text {
  position: relative;
  z-index: 2;
}

.nav-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  border-radius: 2px;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(45, 90, 39, 0.3);
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
  width: 60%;
}

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

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 16px;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 16px rgba(45, 90, 39, 0.25), 0 2px 8px rgba(45, 90, 39, 0.15);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.cta-button-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6b7f47 0%, #2d5a27 100%);
  opacity: 0;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button-primary:hover::before {
  opacity: 1;
}

.cta-button-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(45, 90, 39, 0.35), 0 4px 16px rgba(45, 90, 39, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-text {
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.button-icon {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button-primary:hover .button-icon {
  transform: translateX(3px);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(107, 127, 71, 0.05) 100%);
  border: 1px solid rgba(45, 90, 39, 0.1);
  cursor: pointer;
  border-radius: 14px;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.mobile-nav-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.1) 0%, rgba(107, 127, 71, 0.1) 100%);
  opacity: 0;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-toggle:hover::before {
  opacity: 1;
}

.mobile-nav-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(45, 90, 39, 0.15);
}

.hamburger-line {
  width: 22px;
  height: 2.5px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  margin: 3px 0;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

.mobile-nav-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #374151;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #2d5a27;
}

/* Hero Section Redesigned */
.hero-redesigned {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 50%, #f8f4f0 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.1) 0%, rgba(107, 127, 71, 0.1) 100%);
}

.hero-bg-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}

.hero-bg-shape.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -3%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-bg-shape.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation: float 7s ease-in-out infinite;
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(45, 90, 39, 0.3);
  animation: float 10s ease-in-out infinite;
}

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

.floating-element.elem-2 {
  top: 40%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element.elem-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 90, 39, 0.2);
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d5a27;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  border-radius: 50%;
  color: white;
}

.hero-title-modern {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.title-line-main {
  display: block;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-accent {
  display: block;
  color: #8b5a2b;
  margin-top: 0.5rem;
}

.hero-description-modern {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 90, 39, 0.1);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2d5a27;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.hero-actions-modern {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-button-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 1rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-button-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: #2d5a27;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 1rem;
  border: 2px solid rgba(45, 90, 39, 0.2);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
  background: #2d5a27;
  color: white;
  border-color: #2d5a27;
  transform: translateY(-2px);
}

.hero-trust-indicators {
  margin-top: 2rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.trust-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.trust-logo-placeholder i {
  color: #2d5a27;
  font-size: 1.1rem;
}

.hero-visual-modern {
  position: relative;
  padding: 0 2rem;
}

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

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.hero-main-image {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(45, 90, 39, 0.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(139, 90, 43, 0.05) 100%);
}

.product-showcase {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.product-item {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-item.tomato {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
}

.product-item.basil {
  background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
  color: white;
}

.product-item.olive {
  background: linear-gradient(135deg, #8b5a2b 0%, #6b7f47 100%);
  color: white;
}

.hero-cards-modern {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  right: -2rem;
  display: flex;
  gap: 1rem;
}

.feature-card-modern {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
  backdrop-filter: blur(10px);
  flex: 1;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-icon-wrapper {
  margin-bottom: 1rem;
}

.card-icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.card-content-modern h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.card-content-modern p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.hero-scroll-modern {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator-modern:hover {
  color: #2d5a27;
  transform: translateY(-2px);
}

.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator-modern:hover .scroll-arrow {
  border-color: #2d5a27;
  background: rgba(45, 90, 39, 0.1);
}

.scroll-arrow i {
  font-size: 1rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator-modern:hover .scroll-arrow i {
  transform: translateY(2px);
}

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

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

/* Features Section Redesigned */
.features-redesigned {
  position: relative;
  padding: 100px 0;
  background: white;
  overflow: hidden;
}

.features-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(107, 127, 71, 0.05) 100%);
}

.bg-decoration.deco-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.bg-decoration.deco-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: -3%;
  animation: float 6s ease-in-out infinite reverse;
}

.bg-decoration.deco-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 20%;
  animation: float 7s ease-in-out infinite;
}

.features-header-modern {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.highlight-accent {
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description-modern {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.feature-main-card {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(45, 90, 39, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
}

.main-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.main-card-visual {
  position: relative;
}

.visual-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.2) 0%, transparent 70%);
  border-radius: 1rem;
  animation: pulse 3s ease-in-out infinite;
}

.visual-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.element-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(45, 90, 39, 0.1);
}

.element-circle.circle-1 {
  width: 20px;
  height: 20px;
  top: 20%;
  right: 20%;
  animation: float 4s ease-in-out infinite;
}

.element-circle.circle-2 {
  width: 15px;
  height: 15px;
  top: 60%;
  right: 10%;
  animation: float 5s ease-in-out infinite reverse;
}

.element-circle.circle-3 {
  width: 25px;
  height: 25px;
  bottom: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.main-card-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.main-card-text p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.main-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
}

.feature-list-item i {
  color: #2d5a27;
  font-size: 1.1rem;
}

.features-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card-modern {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.card-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.card-content-modern h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.card-content-modern p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.card-feature-list li i {
  color: #2d5a27;
  font-size: 0.8rem;
}

.features-cta-modern {
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
}

.cta-content-modern {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cta-visual-modern {
  position: relative;
}

.cta-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  position: relative;
}

.cta-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
}

.decoration-line {
  position: absolute;
  background: rgba(45, 90, 39, 0.2);
  border-radius: 2px;
}

.decoration-line.line-1 {
  top: 10px;
  left: 10px;
  width: 30px;
  height: 4px;
  transform: rotate(45deg);
}

.decoration-line.line-2 {
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 4px;
  transform: rotate(-45deg);
}

.cta-text-modern h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-text-modern p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 500px;
}

.cta-buttons-modern {
  display: flex;
  gap: 1rem;
}

.cta-button-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 1rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-button-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-button-outline-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #2d5a27;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 1rem;
  border: 2px solid rgba(45, 90, 39, 0.2);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.cta-button-outline-modern:hover {
  background: #2d5a27;
  color: white;
  border-color: #2d5a27;
  transform: translateY(-2px);
}

/* Testimonials Section Redesigned */
.testimonials-redesigned {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  overflow: hidden;
}

.testimonials-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.bg-pattern-modern {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(139, 90, 43, 0.05) 100%);
}

.bg-pattern-modern.pattern-1 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: -5%;
  animation: float 10s ease-in-out infinite;
}

.bg-pattern-modern.pattern-2 {
  width: 180px;
  height: 180px;
  top: 70%;
  right: -3%;
  animation: float 8s ease-in-out infinite reverse;
}

.bg-pattern-modern.pattern-3 {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 60%;
  animation: float 9s ease-in-out infinite;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(45, 90, 39, 0.1);
}

.shape.circle-shape {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 30%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.shape.square-shape {
  width: 25px;
  height: 25px;
  border-radius: 0.5rem;
  top: 60%;
  left: 5%;
  animation: float 7s ease-in-out infinite reverse;
}

.shape.triangle-shape {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid rgba(45, 90, 39, 0.1);
  bottom: 20%;
  right: 20%;
  animation: float 8s ease-in-out infinite;
}

.testimonials-header-modern {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description-modern {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-main-modern {
  margin-bottom: 4rem;
}

.testimonial-main-card {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(45, 90, 39, 0.1);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  border-radius: 2rem 2rem 0 0;
}

.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0.1;
}

.testimonial-quote-main {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #374151;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-author-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar-modern {
  position: relative;
}

.avatar-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.5rem;
}

.avatar-decoration {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(45, 90, 39, 0.2);
  border-radius: 50%;
}

.author-info-modern h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.author-info-modern p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.author-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.rating-text {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.testimonial-badges-main {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.badge-modern {
  padding: 0.25rem 0.75rem;
  background: rgba(45, 90, 39, 0.1);
  color: #2d5a27;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card-modern {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-header-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-avatar-modern {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.25rem;
}

.card-rating-modern {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.card-rating-modern i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.card-content-modern {
  margin-bottom: 1.5rem;
}

.card-content-modern p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.card-author-modern h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.card-author-modern span {
  font-size: 0.9rem;
  color: #6b7280;
}

.card-footer-modern {
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.testimonial-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.testimonials-trust-modern {
  text-align: center;
}

.trust-stats-modern {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.trust-stat-item {
  text-align: center;
}

.trust-stat-item .stat-number-modern {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d5a27;
  margin-bottom: 0.5rem;
}

.trust-stat-item .stat-label-modern {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* CTA Section Redesigned */
.cta-redesigned {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #2d5a27 0%, #1f2937 100%);
  overflow: hidden;
}

.cta-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.cta-bg-modern .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.bg-shape.shape-primary {
  width: 300px;
  height: 300px;
  top: -10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.bg-shape.shape-secondary {
  width: 200px;
  height: 200px;
  bottom: -10%;
  left: -5%;
  animation: float 6s ease-in-out infinite reverse;
}

.bg-dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bg-dots.dots-1,
.bg-dots.dots-2 {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-dots.dots-1 {
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  animation: float 10s ease-in-out infinite;
}

.bg-dots.dots-2 {
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  animation: float 7s ease-in-out infinite reverse;
}

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

.cta-main-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.cta-visual-modern {
  text-align: center;
}

.cta-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.icon-background {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.icon-rings {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
}

.icon-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 165, 116, 0.3);
}

.icon-rings .ring-1 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: pulse 4s ease-in-out infinite;
}

.icon-rings .ring-2 {
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  animation: pulse 4s ease-in-out infinite reverse;
}

.cta-text-content {
  color: white;
}

.cta-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.cta-title-modern {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e8dcc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description-modern {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-method-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.method-content {
  text-align: center;
}

.method-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.method-link {
  color: #d4a574;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.method-link:hover {
  color: white;
}

.method-note {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

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

.cta-button-primary-extra-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 1rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-button-primary-extra-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button-primary-extra-large:hover::before {
  left: 100%;
}

.cta-button-primary-extra-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.button-icon,
.button-arrow {
  display: flex;
  align-items: center;
}

.cta-secondary-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-link-modern:hover {
  color: #d4a574;
  transform: translateX(5px);
}

.cta-trust-signals {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-signal-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-signal-item i {
  color: #d4a574;
  font-size: 1.1rem;
}

/* Pricing Section Redesigned */
.pricing-redesigned {
  position: relative;
  padding: 100px 0;
  background: white;
  overflow: hidden;
}

.pricing-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.pricing-bg-modern .bg-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(107, 127, 71, 0.05) 100%);
}

.bg-element.elem-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  left: -5%;
  animation: float 8s ease-in-out infinite;
}

.bg-element.elem-2 {
  width: 180px;
  height: 180px;
  top: 60%;
  right: -3%;
  animation: float 6s ease-in-out infinite reverse;
}

.bg-element.elem-3 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 50%;
  animation: float 7s ease-in-out infinite;
}

.pricing-header-modern {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-toggle-modern {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f3f4f6;
  border-radius: 2rem;
  padding: 0.25rem;
  position: relative;
}

.toggle-label {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1.5rem;
}

.toggle-label.active {
  background: white;
  color: #2d5a27;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 30px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  border-radius: 15px;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-cards-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card-modern {
  background: white;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 2px solid #e5e7eb;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
}

.pricing-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: rgba(45, 90, 39, 0.2);
}

.pricing-card-modern.card-popular {
  border-color: #2d5a27;
  transform: scale(1.05);
}

.popular-badge-modern {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header-modern {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-icon-modern {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.plan-name-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.plan-price-modern {
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2d5a27;
  display: block;
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6b7280;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.plan-description-modern {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.card-features-modern {
  margin-bottom: 2rem;
}

.feature-item-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #374151;
}

.feature-item-modern i {
  color: #2d5a27;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item-modern.disabled {
  color: #9ca3af;
}

.feature-item-modern.disabled i {
  color: #d1d5db;
}

.card-footer-modern {
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.pricing-button-modern {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-button-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.pricing-button-modern.primary {
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
}

.pricing-button-modern.outline {
  background: transparent;
  color: #2d5a27;
  border: 2px solid #2d5a27;
}

.pricing-button-modern.outline:hover {
  background: #2d5a27;
  color: white;
}

.plan-popularity {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.75rem;
  font-weight: 500;
}

.pricing-guarantee-modern {
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  border-radius: 2rem;
  padding: 4rem;
  text-align: center;
}

.guarantee-content-modern {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-visual {
  position: relative;
}

.guarantee-icon-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  position: relative;
}

.icon-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: rgba(45, 90, 39, 0.2);
  animation: pulse 3s ease-in-out infinite;
}

.guarantee-text-modern h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.guarantee-text-modern p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.guarantee-features-modern {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.guarantee-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.guarantee-feature i {
  color: #2d5a27;
}

/* Success Stories Section Redesigned */
.success-stories-redesigned {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #2d5a27 0%, #1f2937 100%);
  color: white;
  overflow: hidden;
}

.stories-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.stories-bg-modern .bg-wave {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.bg-wave.wave-1 {
  width: 300px;
  height: 300px;
  top: -10%;
  right: -5%;
  animation: float 10s ease-in-out infinite;
}

.bg-wave.wave-2 {
  width: 200px;
  height: 200px;
  bottom: -10%;
  left: -5%;
  animation: float 8s ease-in-out infinite reverse;
}

.stories-header-modern {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.stories-showcase-modern {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.featured-story-modern {
  margin-bottom: 4rem;
}

.featured-story-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.story-visual-modern {
  position: relative;
}

.story-icon-large {
  width: 120px;
  height: 120px;
  border-radius: 2rem;
  background: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.story-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.metric-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #d4a574;
  margin-bottom: 0.25rem;
}

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

.story-text-modern {
  color: white;
}

.story-text-modern .story-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 165, 116, 0.2);
  color: #d4a574;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.story-text-modern h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.story-text-modern blockquote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.story-author-modern {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.author-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.author-stats {
  display: flex;
  gap: 0.75rem;
}

.stat-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(212, 165, 116, 0.2);
  color: #d4a574;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.stories-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.story-card-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.story-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-type-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  font-size: 1.25rem;
}

.result-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4a574;
}

.result-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.story-body-modern {
  margin-bottom: 1.5rem;
}

.story-body-modern h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.story-body-modern p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.story-details {
  display: flex;
  gap: 1rem;
}

.detail-item {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.success-cta-modern {
  text-align: center;
}

.cta-content-modern {
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 3rem;
  max-width: 800px;
}

.cta-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.cta-text-modern h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cta-text-modern p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-actions-modern {
  display: flex;
  gap: 1rem;
}

/* Footer Redesigned */
.footer-redesigned {
  position: relative;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  overflow: hidden;
}

.footer-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.footer-bg-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 90, 39, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(107, 127, 71, 0.08) 0%, transparent 50%);
}

.footer-bg-modern .bg-shape-footer {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(45, 90, 39, 0.08) 100%);
  filter: blur(1px);
}

.bg-shape-footer.shape-1 {
  width: 350px;
  height: 350px;
  top: -15%;
  right: -8%;
  animation: float 10s ease-in-out infinite;
}

.bg-shape-footer.shape-2 {
  width: 250px;
  height: 250px;
  bottom: -12%;
  left: -8%;
  animation: float 8s ease-in-out infinite reverse;
}

.bg-shape-footer.shape-3 {
  width: 180px;
  height: 180px;
  top: 45%;
  left: 45%;
  animation: float 9s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.footer-main-modern {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3rem;
}

.footer-content-modern {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-modern {
  padding-right: 2rem;
}

.footer-logo-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-modern:hover {
  transform: translateY(-2px);
}

.footer-logo-modern .logo-image {
  width: 54px;
  height: 54px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.2));
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4a574;
  font-family: 'Josefin Slab', serif;
  letter-spacing: -0.02em;
}

.brand-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.stat-item-modern {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-modern .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4a574;
  margin-bottom: 0.25rem;
}

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

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

.footer-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #d4a574;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%);
  border-radius: 1px;
}

.footer-links-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-modern a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links-modern a:hover {
  color: #d4a574;
  transform: translateX(5px);
}

.footer-contact-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-item-modern .method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-info .contact-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-info .contact-link {
  color: #d4a574;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info .contact-link:hover {
  color: white;
}

.contact-info .contact-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

.social-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.social-links-modern {
  display: flex;
  gap: 1rem;
}

.social-link-modern {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link-modern:hover {
  background: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(212, 165, 116, 0.3);
}

.footer-bottom-modern {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

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

.copyright-modern {
  flex: 1;
}

.copyright-modern p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-certifications {
  display: flex;
  gap: 1.5rem;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.certification-badge i {
  color: #d4a574;
  font-size: 0.9rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.language-selector:hover {
  color: #d4a574;
}

.language-selector i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content-modern {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand-modern {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand-modern {
    grid-column: span 1;
    text-align: center;
  }

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

  .footer-certifications {
    justify-content: center;
  }

  .brand-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .footer-certifications {
    flex-direction: column;
    gap: 1rem;
  }
}

/* About Page Styles */
.about-hero-redesigned {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 50%, #f8f4f0 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.about-hero-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.about-hero-bg-modern .bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(107, 127, 71, 0.05) 100%);
}

.bg-decoration.deco-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation: float 8s ease-in-out infinite;
}

.bg-decoration.deco-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -3%;
  animation: float 6s ease-in-out infinite reverse;
}

.bg-decoration.deco-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 60%;
  animation: float 7s ease-in-out infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-elements .floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(45, 90, 39, 0.3);
  animation: float 10s ease-in-out infinite;
}

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

.floating-element.elem-2 {
  top: 50%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element.elem-3 {
  bottom: 25%;
  left: 20%;
  animation-delay: 4s;
}

.about-hero-content-modern {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 90, 39, 0.2);
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d5a27;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  border-radius: 50%;
  color: white;
}

.about-hero-title-modern {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.title-line-main {
  display: block;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-accent {
  display: block;
  color: #8b5a2b;
  margin-top: 0.5rem;
}

.about-hero-description-modern {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 90, 39, 0.1);
}

.about-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.about-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.about-hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 1;
}

.hero-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.hero-main-visual {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(45, 90, 39, 0.1);
}

.timeline-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.timeline-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 90, 39, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-point .point-content {
  text-align: left;
}

.point-content .year {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d5a27;
  margin-bottom: 0.25rem;
}

.point-content .event {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

/* About Values Section */
.about-values-redesigned {
  padding: 100px 0;
  background: white;
}

.values-bg-modern {
  position: relative;
  overflow: hidden;
}

.values-bg-modern .bg-pattern {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.03) 0%, rgba(139, 90, 43, 0.03) 100%);
}

.bg-pattern.pattern-1 {
  width: 250px;
  height: 250px;
  top: 20%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.bg-pattern.pattern-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: -3%;
  animation: float 6s ease-in-out infinite reverse;
}

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

.value-card-modern {
  background: white;
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
}

.value-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.value-card-visual {
  text-align: center;
  margin-bottom: 2rem;
}

.value-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1rem;
  position: relative;
}

.icon-decoration {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 1.5rem;
  background: rgba(45, 90, 39, 0.1);
  animation: pulse 3s ease-in-out infinite;
}

.value-card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1rem;
}

.value-card-content p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.5rem;
}

.value-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #374151;
}

.value-features li i {
  color: #2d5a27;
  font-size: 1rem;
  flex-shrink: 0;
}

.values-cta-modern {
  text-align: center;
}

.values-cta-modern .cta-content {
  display: inline-block;
  padding: 3rem 4rem;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  border-radius: 2rem;
  border: 2px solid rgba(45, 90, 39, 0.1);
}

.cta-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.cta-content p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* About Team Section */
.about-team-redesigned {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d5a27 0%, #1f2937 100%);
  color: white;
}

.team-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.team-bg-modern .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.bg-shape.team-shape-1 {
  width: 300px;
  height: 300px;
  top: -10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.bg-shape.team-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -10%;
  left: -5%;
  animation: float 6s ease-in-out infinite reverse;
}

.bg-shape.team-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  animation: float 7s ease-in-out infinite;
}

.team-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.team-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.expertise-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.expertise-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
}

.team-stats-modern {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.team-stat-item {
  text-align: center;
  flex: 1;
}

.team-stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #d4a574;
  margin-bottom: 0.5rem;
}

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

.team-visual-modern {
  position: relative;
  z-index: 2;
}

.team-cards-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.team-member-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.member-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.member-info span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.member-expertise {
  margin-top: 1rem;
}

.expertise-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 165, 116, 0.2);
  color: #d4a574;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.team-contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}

.contact-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-card-header i {
  font-size: 2rem;
  color: #d4a574;
  margin-bottom: 1rem;
  display: block;
}

.contact-card-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-card-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail i {
  font-size: 1.25rem;
  color: #d4a574;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-detail .detail-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-detail .detail-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* About Mission & Vision */
.about-mission-redesigned {
  padding: 100px 0;
  background: white;
}

.mission-bg-modern {
  position: relative;
  overflow: hidden;
}

.mission-bg-modern .bg-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.03) 0%, rgba(107, 127, 71, 0.03) 100%);
}

.bg-element.mv-elem-1 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: -5%;
  animation: float 8s ease-in-out infinite;
}

.bg-element.mv-elem-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  right: -3%;
  animation: float 6s ease-in-out infinite reverse;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.mission-card-modern,
.vision-card-modern {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-card-modern::before,
.vision-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
}

.card-visual-mission,
.card-visual-vision {
  text-align: center;
  margin-bottom: 2rem;
}

.mission-icon-container,
.vision-icon-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  position: relative;
}

.icon-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: rgba(45, 90, 39, 0.1);
  animation: pulse 3s ease-in-out infinite;
}

.card-decoration {
  position: absolute;
  background: rgba(45, 90, 39, 0.05);
  border-radius: 50%;
}

.deco-mission {
  width: 200px;
  height: 200px;
  top: -20%;
  right: -20%;
}

.deco-vision {
  width: 150px;
  height: 150px;
  bottom: -15%;
  left: -15%;
}

.card-content-mission h3,
.card-content-vision h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1rem;
}

.card-content-mission p,
.card-content-vision p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
}

.mission-points,
.vision-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(45, 90, 39, 0.05);
  border-radius: 0.75rem;
  border-left: 3px solid #2d5a27;
}

.point-item i {
  color: #2d5a27;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.point-item span {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

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

.summary-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.summary-content p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.summary-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.summary-stat {
  text-align: center;
  flex: 1;
}

.summary-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2d5a27;
  margin-bottom: 0.5rem;
}

.summary-stat .stat-unit {
  font-size: 1rem;
  color: #6b7280;
}

.summary-stat .stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

/* About Story Section */
.about-story-redesigned {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  overflow: hidden;
}

.story-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.story-bg-modern .bg-wave {
  position: absolute;
  background: rgba(45, 90, 39, 0.05);
  border-radius: 50%;
}

.bg-wave.story-wave-1 {
  width: 300px;
  height: 300px;
  top: -10%;
  right: -5%;
  animation: float 10s ease-in-out infinite;
}

.bg-wave.story-wave-2 {
  width: 200px;
  height: 200px;
  bottom: -10%;
  left: -5%;
  animation: float 8s ease-in-out infinite reverse;
}

.story-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-story {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(45, 90, 39, 0.3);
  animation: float 10s ease-in-out infinite;
}

.floating-story.elem-1 {
  top: 30%;
  left: 10%;
  animation-delay: 0s;
}

.floating-story.elem-2 {
  bottom: 30%;
  right: 15%;
  animation-delay: 2s;
}

.story-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.story-narrative {
  margin-bottom: 3rem;
}

.story-paragraph {
  margin-bottom: 2rem;
}

.story-paragraph p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.story-milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.milestone-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 90, 39, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.milestone-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.milestone-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d5a27;
  margin-bottom: 0.25rem;
}

.milestone-content p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.story-visual-modern {
  position: relative;
  z-index: 2;
}

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

.visual-glow-modern {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.story-main-visual {
  position: relative;
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(45, 90, 39, 0.1);
}

.visual-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.story-stat-circle {
  text-align: center;
  margin-bottom: 2rem;
}

.circle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-big {
  font-size: 4rem;
  font-weight: 700;
  color: #2d5a27;
  line-height: 1;
}

.stat-unit {
  font-size: 1.5rem;
  color: #6b7280;
  font-weight: 500;
}

.circle-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 0.5rem;
}

.story-feature-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-mini-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 90, 39, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-mini-card i {
  color: #2d5a27;
  font-size: 1.1rem;
}

.feature-mini-card span {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

.story-quote-card {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(45, 90, 39, 0.1);
  max-width: 300px;
  text-align: center;
}

.quote-icon {
  font-size: 2rem;
  color: #d4a574;
  margin-bottom: 1rem;
}

.story-quote-card blockquote {
  font-size: 1rem;
  color: #374151;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.story-quote-card cite {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
}

/* Contact Page Styles */
.contact-hero-redesigned {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 50%, #f8f4f0 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.contact-hero-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.contact-hero-bg-modern .bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(107, 127, 71, 0.05) 100%);
}

.contact-hero-content-modern {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.contact-hero-title-modern {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.contact-hero-description-modern {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-hero-visual {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 1;
}

.support-features {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.support-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 90, 39, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-feature .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.support-feature span {
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
}

.contact-main-redesigned {
  padding: 100px 0;
  background: white;
}

.contact-bg-modern {
  position: relative;
  overflow: hidden;
}

.contact-bg-modern .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.03) 0%, rgba(107, 127, 71, 0.03) 100%);
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info-modern {
  position: relative;
  z-index: 2;
}

.info-card-modern {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
}

.card-header-modern {
  text-align: center;
  margin-bottom: 2rem;
}

.card-header-modern .card-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.card-header-modern h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.card-header-modern p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
}

.contact-methods-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method-modern {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(45, 90, 39, 0.05);
  border-radius: 1rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-modern:hover {
  background: rgba(45, 90, 39, 0.1);
  transform: translateY(-2px);
}

.method-icon-modern {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.method-content-modern h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.method-link-modern {
  color: #2d5a27;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.method-link-modern:hover {
  color: #6b7f47;
}

.method-note {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.contact-additional-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #6b7280;
}

.info-item-modern i {
  color: #2d5a27;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-modern {
  position: relative;
  z-index: 2;
}

.form-card-modern {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
}

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

.form-icon-modern {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.form-header-modern h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.form-header-modern p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

.contact-form-modern-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-field-modern {
  display: flex;
  flex-direction: column;
}

.form-label-modern {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input-modern {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  color: #374151;
  background: white;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input-modern:focus {
  outline: none;
  border-color: #2d5a27;
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-textarea-modern {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

.form-checkbox-modern {
  width: 18px;
  height: 18px;
  accent-color: #2d5a27;
  margin-top: 0.125rem;
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.checkbox-link {
  color: #2d5a27;
  text-decoration: none;
  font-weight: 500;
}

.checkbox-link:hover {
  text-decoration: underline;
}

.form-actions-modern {
  margin-top: 1rem;
}

.form-submit-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-submit-modern:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.form-submit-modern:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-text {
  font-weight: 600;
}

.form-note {
  margin-top: 1rem;
  padding: 1rem;
  background: #f0f9ff;
  border-radius: 0.5rem;
  border-left: 4px solid #2d5a27;
  font-size: 0.9rem;
  color: #374151;
}

.contact-options-modern {
  text-align: center;
}

.options-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.options-header p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

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

.option-card-modern {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(45, 90, 39, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.option-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.option-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.option-card-modern h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.option-card-modern p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.option-link {
  color: #2d5a27;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.option-link:hover {
  color: #6b7f47;
}

.option-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* FAQ Page Styles */
.faq-hero-redesigned {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 50%, #f8f4f0 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.faq-hero-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.faq-hero-content-modern {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.faq-hero-title-modern {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.faq-hero-description-modern {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.faq-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 1;
}

.help-categories {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.help-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 90, 39, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.help-category i {
  color: #2d5a27;
  font-size: 1.5rem;
}

.help-category span {
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
}

.faq-redesigned {
  padding: 100px 0;
  background: white;
}

.faq-bg-modern {
  position: relative;
  overflow: hidden;
}

.faq-bg-modern .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.03) 0%, rgba(107, 127, 71, 0.03) 100%);
}

.faq-categories-modern {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  color: white;
  border-color: #2d5a27;
}

.category-tab:hover {
  border-color: #2d5a27;
  color: #2d5a27;
}

.faq-accordion-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-modern {
  background: white;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-modern:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item-modern.faq-active {
  border-color: #2d5a27;
  box-shadow: 0 4px 6px rgba(45, 90, 39, 0.1);
}

.faq-item-header-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-modern.faq-active .faq-item-header-modern {
  background: rgba(45, 90, 39, 0.05);
}

.faq-icon-modern {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a27 0%, #6b7f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.faq-item-header-modern h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
  margin-left: 1rem;
}

.faq-toggle-modern {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item-modern.faq-active .faq-toggle-modern {
  background: #2d5a27;
  color: white;
  transform: rotate(180deg);
}

.faq-content-modern {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  background: #f9fafb;
}

.faq-item-modern.faq-active .faq-content-modern {
  max-height: 500px;
  padding: 1.5rem;
}

.faq-content-modern p {
  margin: 0;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

.faq-cta-modern {
  margin-top: 4rem;
  text-align: center;
}

.faq-cta-modern .cta-content-modern {
  display: inline-block;
  padding: 3rem 4rem;
  background: linear-gradient(135deg, #f8f4f0 0%, #e8dcc0 100%);
  border-radius: 2rem;
  border: 2px solid rgba(45, 90, 39, 0.1);
}

.cta-content-modern h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.cta-content-modern p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Responsive Design for Pages */
@media (max-width: 1200px) {
  .story-content-wrapper,
  .mission-vision-grid,
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .team-content-modern {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-visual-modern,
  .team-visual-modern {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-hero-redesigned,
  .contact-hero-redesigned,
  .faq-hero-redesigned {
    padding: 100px 0 60px;
  }

  .about-hero-title-modern,
  .contact-hero-title-modern,
  .faq-hero-title-modern {
    font-size: 2.5rem;
  }

  .hero-visual-container,
  .faq-hero-visual {
    position: static;
    margin-top: 3rem;
    width: 300px;
    height: 300px;
  }

  .about-hero-visual,
  .contact-hero-visual {
    position: static;
    margin-top: 3rem;
    width: 350px;
    height: 350px;
  }

  .hero-badge-modern {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .values-grid-modern,
  .faq-accordion-modern {
    gap: 1rem;
  }

  .story-milestones {
    grid-template-columns: 1fr;
  }

  .team-expertise-grid {
    grid-template-columns: 1fr;
  }

  .team-cards-showcase {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 576px) {
  .about-hero-title-modern,
  .contact-hero-title-modern,
  .faq-hero-title-modern {
    font-size: 2rem;
  }

  .hero-badge-modern {
    font-size: 0.75rem;
  }

  .about-hero-stats,
  .contact-hero-stats,
  .faq-hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-hero-actions,
  .contact-hero-actions,
  .faq-hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .value-card-modern,
  .faq-item-modern {
    padding: 2rem 1.5rem;
  }

  .info-card-modern,
  .form-card-modern {
    padding: 2rem;
  }

  .contact-methods-modern {
    gap: 1rem;
  }

  .options-grid {
    gap: 1.5rem;
  }
}

/* Responsive Design for Redesigned Sections */
@media (max-width: 1200px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-main-content {
    order: 2;
  }

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

  .features-grid-modern {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-main-card {
    text-align: center;
  }

  .main-card-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-cards-modern {
    grid-template-columns: 1fr;
  }

  .pricing-card-modern.card-popular {
    transform: none;
  }
}

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

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

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

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .hero-cards-modern {
    position: static;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .features-redesigned,
  .testimonials-redesigned,
  .cta-redesigned,
  .pricing-redesigned,
  .success-stories-redesigned {
    padding: 60px 0;
  }

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

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

  .features-cards-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid-modern {
    grid-template-columns: 1fr;
  }

  .pricing-toggle-modern {
    margin-bottom: 3rem;
  }

  .toggle-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .featured-story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .stories-grid-modern {
    grid-template-columns: 1fr;
  }

  .cta-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .cta-actions-modern {
    flex-direction: column;
  }

  .guarantee-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title-modern {
    font-size: 2rem;
  }

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

  .hero-cards-modern {
    grid-template-columns: 1fr;
  }

  .section-title-modern {
    font-size: 2rem;
  }

  .main-card-text h3 {
    font-size: 1.75rem;
  }

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

  .price-amount {
    font-size: 2.5rem;
  }

  .toggle-label {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .featured-story-content {
    gap: 1.5rem;
  }

  .story-metrics {
    grid-template-columns: 1fr;
  }

  .cta-content-wrapper {
    padding: 2rem 1rem;
  }

  .cta-title-modern {
    font-size: 2.25rem;
  }

  .guarantee-text-modern h3 {
    font-size: 2rem;
  }
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

/* Page Header Modern */
.page-header-modern {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--dalcampo-primary) 0%, var(--dalcampo-secondary) 100%);
  color: white;
  overflow: hidden;
}

.page-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.page-header-badge i {
  font-size: 1rem;
}

.page-header-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-header-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.page-header-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.meta-item i {
  font-size: 1rem;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.bg-pattern-1,
.bg-pattern-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.bg-pattern-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.bg-pattern-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

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

.content-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-nav {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.08);
  border: 1px solid rgba(45, 90, 39, 0.1);
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-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.9rem;
  font-weight: 500;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: var(--accent-color);
  color: white;
  transform: translateX(4px);
}

.sidebar-cta {
  margin-top: 2rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--dalcampo-primary) 0%, var(--dalcampo-secondary) 100%);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45, 90, 39, 0.2);
}

.cta-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.cta-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.cta-button-small {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button-small:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cta-button-small span {
  font-size: 0.9rem;
}

.content-main {
  min-height: 600px;
}

.privacy-content,
.cookie-content,
.terms-content {
  max-width: 100%;
}

.content-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

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

.section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dalcampo-primary) 0%, var(--dalcampo-secondary) 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.section-content {
  color: var(--default-color);
  line-height: 1.7;
}

.section-content p {
  margin-bottom: 1.5rem;
}

.section-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-content li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background: rgba(45, 90, 39, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-weight: 500;
}

.alert {
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  border: none;
}

.alert-info {
  background: rgba(78, 205, 196, 0.1);
  border-left: 4px solid var(--accent-color);
  color: var(--default-color);
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  color: var(--default-color);
}

.alert h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

/* ============================================
   SUCCESS/THANKS PAGE STYLES
   ============================================ */

/* Success Header Modern */
.success-header-modern {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--dalcampo-primary) 0%, var(--dalcampo-secondary) 100%);
  color: white;
  overflow: hidden;
  text-align: center;
}

.success-content-modern {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
}

.success-badge i {
  font-size: 1.5rem;
  color: #10b981;
}

.success-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.success-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.success-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.success-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  opacity: 1;
}

.success-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.success-bg .bg-shape-1,
.success-bg .bg-shape-2,
.success-bg .bg-shape-3 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.success-bg .bg-shape-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
}

.success-bg .bg-shape-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: -75px;
}

.success-bg .bg-shape-3 {
  width: 100px;
  height: 100px;
  bottom: -50px;
  left: 50%;
}

/* Next Steps Modern */
.next-steps-modern {
  padding: 80px 0;
  background: var(--background-color);
}

.next-steps-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

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

.step-card-modern {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.08);
  border: 1px solid rgba(45, 90, 39, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 90, 39, 0.15);
}

.step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dalcampo-primary) 0%, var(--dalcampo-secondary) 100%);
  color: white;
  border-radius: 50%;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

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

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

/* Why Choose Modern */
.why-choose-modern {
  padding: 80px 0;
  background: var(--surface-color);
}

.why-choose-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

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

.feature-card-modern {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.08);
  border: 1px solid rgba(45, 90, 39, 0.1);
  transition: all 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45, 90, 39, 0.12);
  border-color: var(--accent-color);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--dalcampo-primary) 0%, var(--dalcampo-secondary) 100%);
  color: white;
  border-radius: 50%;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.feature-card-modern h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

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

/* Final CTA Modern */
.final-cta-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dalcampo-primary) 0%, var(--dalcampo-secondary) 100%);
  color: white;
  text-align: center;
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.cta-button-primary,
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button-primary {
  background: white;
  color: var(--dalcampo-primary);
}

.cta-button-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

.cta-button-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ============================================
   RESPONSIVE DESIGN FOR LEGAL PAGES
   ============================================ */

@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 250px 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .page-header-modern,
  .success-header-modern {
    padding: 100px 0 60px;
  }

  .page-header-title,
  .success-title {
    font-size: 2.5rem;
  }

  .page-header-description,
  .success-description {
    font-size: 1.1rem;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-sidebar {
    position: static;
    order: 2;
  }

  .sidebar-nav {
    padding: 1.5rem;
  }

  .sidebar-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

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

  .step-card-modern,
  .feature-card-modern {
    padding: 2rem 1.5rem;
  }

  .step-icon,
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

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

  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .page-header-modern,
  .success-header-modern {
    padding: 80px 0 40px;
  }

  .page-header-title,
  .success-title {
    font-size: 2rem;
  }

  .page-header-meta,
  .success-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .section-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .content-section-modern,
  .next-steps-modern,
  .why-choose-modern,
  .final-cta-modern {
    padding: 60px 0;
  }

  .sidebar-menu {
    grid-template-columns: 1fr;
  }

  .step-card-modern,
  .feature-card-modern {
    padding: 1.5rem 1rem;
  }

  .final-cta-content h2 {
    font-size: 2rem;
  }
}
