/* ============================================================
   SAVINGS - Premium Business Website Stylesheet
   Ultra Luxury | Emerald Green + Gold + Matte Black
   ============================================================ */

:root {
  --primary: #0d5c36;
  --primary-dark: #083d24;
  --primary-light: #1a7a4a;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --gold-dark: #a07c2a;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-light: #f1f3f5;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --text: #2d2d2d;
  --text-light: #555555;
  --border: rgba(201,168,76,0.2);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 10px 40px rgba(201,168,76,0.2);
  --shadow-green: 0 10px 40px rgba(13,92,54,0.25);
  --gradient: linear-gradient(135deg, #071a0f 0%, #0d5c36 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e4c76b 50%, #a07c2a 100%);
  --gradient-card: linear-gradient(145deg, rgba(13,92,54,0.08) 0%, rgba(201,168,76,0.05) 100%);
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

body.dark-mode {
  --white: #111111;
  --off-white: #1a1a1a;
  --gray-light: #222222;
  --text: #e8e8e8;
  --text-light: #aaaaaa;
  --border: rgba(201,168,76,0.15);
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-title .gold { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease;
}
#preloader.fade-out { opacity: 0; pointer-events: none; }

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 10px;
  animation: loading 2s ease-in-out infinite;
}

@keyframes loading { 0%{width:0} 50%{width:70%} 100%{width:100%} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,92,54,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: var(--transition-slow);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar.scrolled .navbar-inner { padding: 14px 40px; }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-img { height: 48px; width: auto; object-fit: contain; }

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.brand-tagline {
  font-size: 0.65rem;
  color: rgba(17,17,17,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  color: rgba(10,10,10,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover, .nav-link.active { color: var(--gold); }

.navbar.scrolled .brand-tagline {
  color: rgba(255,255,255,0.5);
}

.navbar.scrolled .nav-link {
  color: rgba(255,255,255,0.85);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gradient-gold);
  color: var(--black) !important;
  font-weight: 600;
  padding: 10px 22px !important;
  border-radius: 8px;
  margin-left: 8px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--black) !important; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(15,25,18,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  padding-left: 22px;
}

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-toggle.active .toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active .toggle-bar:nth-child(2) { opacity: 0; width: 0; }
.navbar-toggle.active .toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,20,12,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 14px 40px;
  border-radius: 12px;
  transition: var(--transition);
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.mobile-nav-link:hover { background: rgba(201,168,76,0.1); color: var(--gold); }

/* ============ HERO SLIDER ============ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.swiper-hero {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: var(--gradient);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,26,15,0.92) 0%, rgba(13,92,54,0.7) 60%, rgba(7,26,15,0.85) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13,92,54,0.15) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 80px;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 560px;
}

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201,168,76,0.45);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-green {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(13,92,54,0.4); color: var(--white); }

.btn-dark {
  background: var(--dark-2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); color: var(--white); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-icon { padding: 12px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }

/* ============ HERO STATS ============ */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0;
}
.hero-stat-item {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 24px 20px;
  background: rgba(7,26,15,0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-right: 1px solid rgba(201,168,76,0.1);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Swiper navigation */
.swiper-button-next, .swiper-button-prev {
  color: var(--gold) !important;
  background: rgba(0,0,0,0.4);
  width: 52px !important;
  height: 52px !important;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 700;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 24px !important; border-radius: 4px; }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(13,92,54,0.2);
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.dark-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  color: var(--white);
}

/* ============ ABOUT INTRO ============ */
.about-intro { background: var(--off-white); }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-green);
}
.about-main-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-main-image:hover img { transform: scale(1.05); }

.about-badge-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--gold);
  min-width: 200px;
}
.badge-icon {
  width: 50px; height: 50px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  flex-shrink: 0;
}
.badge-info .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.badge-info .label { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }

.about-content { padding: 20px 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--gradient-card);
  border: 1px solid rgba(13,92,54,0.08);
  transition: var(--transition);
}
.about-feature:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-text h4 { font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.feature-text p { font-size: 0.8rem; color: var(--text-light); }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  group: true;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(13,92,54,0.15);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,92,54,0.05) 0%, transparent 70%);
  transition: var(--transition);
}
.service-card:hover::after { transform: scale(2); }

.service-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: var(--gradient-card);
  border: 1px solid rgba(13,92,54,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--gradient);
  color: var(--gold);
  border-color: transparent;
  transform: rotate(-5deg) scale(1.05);
}

.service-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: 10px; }
.service-link i { transition: var(--transition); }

/* ============ STATS COUNTER ============ */
.stats-section {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item {
  text-align: center;
  padding: 50px 20px;
  background: transparent;
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.stat-item:hover::before { background: rgba(255,255,255,0.06); }

.stat-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0.8;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-number .suffix { font-size: 2rem; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); letter-spacing: 1.5px; text-transform: uppercase; }

/* ============ SAVINGS PLANS ============ */
.plans-section { background: var(--off-white); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 2px solid rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(13,92,54,0.2);
}
.plan-card.featured {
  background: var(--gradient);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.plan-badge {
  position: absolute;
  top: 20px; right: -30px;
  background: var(--gradient-gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 44px;
  transform: rotate(35deg);
  text-transform: uppercase;
}

.plan-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.plan-card.featured .plan-type { color: rgba(255,255,255,0.7); }

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.plan-card.featured .plan-name { color: var(--white); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.plan-currency { font-size: 1.2rem; color: var(--gold); font-weight: 600; }
.plan-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.plan-card.featured .plan-amount { color: var(--white); }
.plan-period { font-size: 0.85rem; color: var(--gray); align-self: flex-end; margin-bottom: 4px; }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.6); }

.plan-returns {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13,92,54,0.08);
  border: 1px solid rgba(13,92,54,0.15);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}
.plan-card.featured .plan-returns {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.plan-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 20px 0;
}
.plan-card.featured .plan-divider { background: rgba(255,255,255,0.15); }

.plan-features { flex: 1; margin-bottom: 28px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 7px 0;
}
.plan-card.featured .plan-feature { color: rgba(255,255,255,0.8); }
.plan-feature i { color: var(--primary); font-size: 0.9rem; }
.plan-card.featured .plan-feature i { color: var(--gold); }

.plan-btn {
  width: 100%;
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--gradient-gold);
  color: var(--black);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.plan-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.plan-card.featured .plan-btn {
  background: var(--white);
  color: var(--primary);
}

/* ============ WHY CHOOSE US ============ */
.why-section { background: var(--dark); position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,92,54,0.15) 0%, transparent 70%);
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-items { display: grid; gap: 20px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,168,76,0.2);
  transform: translateX(8px);
}
.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gradient);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.why-text h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 6px; }
.why-text p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

.why-image-block { position: relative; }
.why-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.why-image-wrap img { width: 100%; height: 500px; object-fit: cover; }

.why-experience-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-gold);
}
.exp-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--black); line-height: 1; }
.exp-text { font-size: 0.85rem; color: rgba(0,0,0,0.7); font-weight: 600; margin-top: 4px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--off-white); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
  margin: 10px;
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: rgba(201,168,76,0.2); }

.testimonial-quote {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 4rem;
  color: rgba(13,92,54,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.author-avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.author-name { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.author-info { font-size: 0.8rem; color: var(--gray); }

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--gradient);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content h2 span { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.1rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,15,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 50px; height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { transform: translate(-50%, -50%) scale(1); }
.gallery-caption { color: var(--white); font-size: 0.9rem; font-weight: 500; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.blog-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-category-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient-gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.blog-body { padding: 28px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.blog-meta i { color: var(--primary); }
.blog-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: var(--transition);
}
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.blog-read-more:hover { color: var(--gold); gap: 10px; }

/* ============ FAQ ============ */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: rgba(13,92,54,0.3); box-shadow: 0 4px 20px rgba(13,92,54,0.08); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item.active .faq-question { color: var(--primary); background: rgba(13,92,54,0.03); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(13,92,54,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--primary); color: var(--gold); transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  background: var(--white);
}

/* ============ CONTACT FORM ============ */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--off-white);
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13,92,54,0.08);
}
.form-control::placeholder { color: rgba(0,0,0,0.35); }
textarea.form-control { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============ CONTACT INFO ============ */
.contact-info-cards { display: grid; gap: 20px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateX(8px);
  border-color: rgba(13,92,54,0.2);
  box-shadow: var(--shadow-green);
}
.contact-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card-text h4 { font-size: 0.9rem; color: var(--gray); font-weight: 500; margin-bottom: 4px; font-family: var(--font-body); }
.contact-card-text p { font-size: 1rem; color: var(--dark); font-weight: 600; }
.contact-card-text a { color: var(--primary); font-weight: 600; }
.contact-card-text a:hover { color: var(--gold); }

/* ============ MAP ============ */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ============ FOOTER ============ */
footer {
  background: #050f08;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
footer::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,92,54,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand .brand-name { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.footer-brand .brand-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; }
.footer-desc {
  margin: 20px 0 24px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-link::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-link:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; width: 14px; }

.footer-hours {
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-top: 6px;
}

/* Newsletter */
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.88rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { outline: none; border-color: var(--gold); }
.newsletter-btn {
  padding: 12px 20px;
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  border-radius: 50px;
  padding: 14px 20px 14px 14px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  color: var(--white);
}
.whatsapp-float i { font-size: 1.6rem; }
.whatsapp-text { white-space: nowrap; }

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

/* ============ THEME TOGGLE ============ */
.theme-toggle {
  position: fixed;
  bottom: 100px; right: 30px;
  z-index: 9997;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.theme-toggle:hover { transform: scale(1.1); background: var(--gold); color: var(--black); }

/* ============ COOKIE CONSENT ============ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9996;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: var(--transition-slow);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.cookie-text a { color: var(--gold); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--gradient-gold); color: var(--black); padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; border: none; cursor: pointer; transition: var(--transition); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); padding: 10px 16px; border-radius: 8px; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: var(--transition); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 160px; right: 30px;
  z-index: 9995;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(13,92,54,0.4); }

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--gradient);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 span { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 24px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.7rem; }

/* ============ TEAM CARDS ============ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.team-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-image img { transform: scale(1.08); }
.team-image-placeholder {
  width: 100%; aspect-ratio: 1;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,15,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 10px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
}
.team-social-btn:hover { background: var(--gold); color: var(--black); }

.team-info { padding: 24px; }
.team-name { font-family: var(--font-heading); font-size: 1.15rem; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; letter-spacing: 0.5px; }

/* ============ TIMELINE ============ */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--gold) 100%);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.timeline-content:hover { border-color: rgba(13,92,54,0.2); transform: translateY(-4px); }
.timeline-dot {
  position: absolute;
  left: 50%; top: 20px;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  z-index: 1;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.timeline-spacer { flex: 1; }
.timeline-year { color: var(--gold); font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.timeline-content h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ============ ALERTS ============ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: rgba(13,92,54,0.1); border: 1px solid rgba(13,92,54,0.2); color: var(--primary); }
.alert-danger { background: rgba(220,53,69,0.1); border: 1px solid rgba(220,53,69,0.2); color: #dc3545; }
.alert-info { background: rgba(13,110,253,0.08); border: 1px solid rgba(13,110,253,0.2); color: #0d6efd; }

/* ============ BADGES ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-green { background: rgba(13,92,54,0.1); color: var(--primary); border: 1px solid rgba(13,92,54,0.2); }
.badge-gold { background: rgba(201,168,76,0.1); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.2); }
.badge-dark { background: var(--dark-2); color: rgba(255,255,255,0.7); }

/* ============ TABS ============ */
.tab-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--white);
  color: var(--gray-dark);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gradient);
  color: var(--gold);
  border-color: transparent;
}

/* ============ UTILITY ============ */
.text-primary { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-gray { color: var(--gray) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.flex-wrap { flex-wrap: wrap; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }
.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.hidden { display: none; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.shadow { box-shadow: var(--shadow); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.bg-dark { background: var(--dark); }
.bg-off-white { background: var(--off-white); }
.bg-gradient { background: var(--gradient); }
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .container { padding: 0 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  section { padding: 80px 0; }
  .navbar-nav { display: none; }
  .navbar-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .hero-content { padding: 0 40px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-dot { left: 20px; }
  .timeline-spacer { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-item { padding: 18px 12px; }
  .hero-stats { display: none; }
  .navbar-inner { padding: 18px 24px; }
  .navbar.scrolled .navbar-inner { padding: 12px 24px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  .hero-content { padding: 0 24px; }
  .hero-buttons { gap: 12px; }
  .about-badge-card { left: 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: scale(1); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .contact-form-wrap { padding: 30px 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .whatsapp-float .whatsapp-text { display: none; }
  .whatsapp-float { border-radius: 50%; padding: 14px; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .stat-number { font-size: 2.5rem; }
  .testimonial-card { padding: 24px; }
  .about-features { grid-template-columns: 1fr; }
}
