@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:      #0a1628;
  --navy-mid:  #142035;
  --navy-soft: #1e3252;
  --emerald:   #0d9b6c;
  --emerald-lt:#11b97e;
  --gold:      #c8a951;
  --gold-lt:   #e5c97a;
  --cream:     #f7f3ee;
  --slate:     #4b5568;
  --muted:     #7a8699;
  --white:     #ffffff;
  --border:    rgba(255,255,255,0.08);
  --card-bg:   #ffffff;
  --section-bg:#f4f7fb;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.07);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.16);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: 88px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

p { color: var(--slate); }

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

img { max-width: 100%; display: block; }

/* ─── UTILITY ────────────────────────────────────────────────── */
.text-emerald  { color: var(--emerald) !important; }
.text-gold     { color: var(--gold) !important; }
.bg-navy       { background: var(--navy) !important; }
.bg-cream      { background: var(--cream) !important; }
.section-pad   { padding: 100px 0; }
.section-pad-sm{ padding: 70px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,22,40,0.06);
  padding: 0 !important;
  height: 88px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  box-shadow: 0 2px 24px rgba(10,22,40,0.06);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(10,22,40,0.12);
}

.navbar-brand img { height: 46px; }

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-nav { gap: 2px; }

.nav-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  color: var(--navy) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--emerald) !important; }
.nav-link:hover::after { transform: scaleX(1); }

.btn-nav-lang {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--section-bg);
  border: none;
  border-radius: 50px;
  padding: 7px 16px;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-nav-lang:hover { background: #e2e8f0; }

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald);
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 50px;
  padding: 10px 24px;
  border: 2px solid var(--emerald);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-book:hover {
  background: transparent;
  color: var(--emerald) !important;
  transform: translateY(-2px);
}

/* Mobile Nav */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 20px;
    box-shadow: 0 20px 40px rgba(10,22,40,0.15);
    border-top: 1px solid rgba(10,22,40,0.06);
    z-index: 1049;
  }
  .navbar-nav { flex-direction: column; gap: 4px; }
  .nav-link::after { display: none; }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--emerald);
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary-custom:hover {
  background: transparent;
  color: var(--emerald);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(13,155,108,0.25);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(10,22,40,0.2);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-custom:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  transform: translateY(-3px);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald);
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid var(--emerald);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-login:hover {
  background: transparent;
  color: var(--emerald) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,155,108,0.2);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(13,155,108,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(200,169,81,0.08) 0%, transparent 50%),
    url("images/about.png") center/cover no-repeat;
  opacity: 0.18;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,22,40,0.97) 0%,
    rgba(10,22,40,0.88) 50%,
    rgba(10,22,40,0.65) 100%
  );
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,155,108,0.15);
  border: 1px solid rgba(13,155,108,0.3);
  color: #5ce8b4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #5ce8b4;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title .accent { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-actions .btn-primary-custom {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  padding: 15px 36px;
  font-size: 0.95rem;
}
.hero-actions .btn-primary-custom:hover {
  background: transparent;
  color: var(--emerald);
}
.hero-actions .btn-outline-custom {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  padding: 15px 36px;
  font-size: 0.95rem;
}
.hero-actions .btn-outline-custom:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  height: 40px;
  align-self: center;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.2s both;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.hero-image-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.hero-card-float.card-1 { bottom: 32px; left: -30px; animation: floatCard1 6s ease-in-out infinite; }
.hero-card-float.card-2 { top: 40px; right: -24px; animation: floatCard2 7s ease-in-out infinite; }

.hero-card-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.icon-green { background: rgba(13,155,108,0.12); }
.icon-gold  { background: rgba(200,169,81,0.12); }

.hero-card-float .card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1px;
}
.hero-card-float .card-sub {
  font-size: 0.74rem;
  color: var(--muted);
}

/* ─── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--emerald);
  transition: height var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,155,108,0.15);
}
.service-card:hover::before { height: 100%; }

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(13,155,108,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(13,155,108,0.15);
}

.service-card h5 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p { font-size: 0.88rem; line-height: 1.65; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.84rem;
  margin-top: 18px;
  letter-spacing: 0.02em;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; color: var(--emerald); }

/* ─── MISSION / VALUE CARDS ──────────────────────────────────── */
.mission-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,22,40,0.05);
  height: 100%;
  transition: all var(--transition);
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mission-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

/* ─── WHY US ─────────────────────────────────────────────────── */
.why-icon {
  width: 64px; height: 64px;
  background: rgba(13,155,108,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,22,40,0.05);
  height: 100%;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-card .why-icon { margin: 0 auto 18px; }

/* ─── CONTACT CARDS ──────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,22,40,0.05);
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.contact-icon { font-size: 2.2rem; margin-bottom: 16px; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-section { padding: 100px 0; background: var(--section-bg); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,22,40,0.05);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }

.quote-icon { font-size: 2.8rem; color: var(--emerald); margin-bottom: 12px; }

.testimonial-grid .card {
  border: 1px solid rgba(10,22,40,0.06) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--white);
}
.testimonial-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial-grid img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(13,155,108,0.2);
}

/* ─── CAROUSEL ───────────────────────────────────────────────── */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 32px; height: 32px;
}
.carousel-control-prev,
.carousel-control-next { width: 48px; }

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(120deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.85) 100%),
              url("images/about.png") center/cover no-repeat;
  padding: 130px 0 100px;
  color: var(--white);
  position: relative;
}
.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.about-image:hover { transform: scale(1.02); }

/* ─── PAGE HEROES (generic) ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 110px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,155,108,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── SECTION DIVIDERS ───────────────────────────────────────── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 50%, #0d2e1e 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,155,108,0.1) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,0.65); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid var(--white);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-cta:hover {
  background: transparent;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.72);
  padding-top: 80px;
}

.footer-brand img { height: 44px; }

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-link:hover { color: var(--emerald); padding-left: 4px; }

.footer-divider {
  border-color: rgba(255,255,255,0.07) !important;
  margin: 48px 0 24px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  transform: translateY(-3px);
}

/* Newsletter Input */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--emerald); }
.newsletter-form button {
  background: var(--emerald);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--emerald-lt); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────── */
.whatsapp-button {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 1060;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
  color: var(--white);
}

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid rgba(10,22,40,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(13,155,108,0.1);
  outline: none;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

/* ─── CARDS (generic) ────────────────────────────────────────── */
.card {
  border: 1px solid rgba(10,22,40,0.06) !important;
  border-radius: var(--radius-md) !important;
}

/* ─── BADGES & TAGS ──────────────────────────────────────────── */
.tag-pill {
  display: inline-block;
  background: rgba(13,155,108,0.1);
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ─── ACCENT LINE ─────────────────────────────────────────────── */
.accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: 2px;
  margin: 14px 0 22px;
}
.accent-line.center { margin: 14px auto 22px; }

/* ─── EVENT CARDS ────────────────────────────────────────────── */
.event-card {
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(10,22,40,0.06) !important;
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg) !important;
}
.event-card img {
  height: 220px;
  object-fit: cover;
}
.event-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  body { padding-top: 80px; }
  .section-pad { padding: 70px 0; }
  .hero-image-frame img { height: 360px; }
  .hero-card-float.card-1 { left: 10px; bottom: 20px; min-width: 160px; }
  .hero-card-float.card-2 { right: 10px; top: 20px; min-width: 160px; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  .cta-section { padding: 64px 0; }
}

@media (max-width: 576px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-card-float { display: none; }
}
