/* â”€â”€ SHARED / BASE STYLES â”€â”€ */

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

/* CSS VARIABLES â€” Premium Emerald & Gold Theme */
:root {
  /* Brand Colors */
  --forest-dark:   #0a2218;
  --forest-mid:    #1a4a32;
  --forest:        #1d6b44;
  --sage:          #3a9d6a;
  --earth:         #0f1d17;
  --earth-light:   #1c3326;
  --cream:         #f9f6f0;
  --cream-dark:    #ede8de;
  --gold:          #c9a227;
  --gold-light:    #e5c04a;
  --white:         #ffffff;

  /* Text */
  --text-dark:     #0a1a10;
  --text-mid:      #2e5c3e;
  --text-light:    #6b8f78;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-brand:    'Cinzel', serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Effects */
  --shadow:        0 4px 24px rgba(10,34,24,0.12);
  --shadow-lg:     0 16px 56px rgba(10,34,24,0.22);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container:     1200px;
  --nav-h:         72px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* CONTAINER */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTION */
.section { padding: 108px 0; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }

/* TAG */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0;
  position: relative;
  margin-bottom: 16px;
}
.tag::before {
  content: '';
  position: absolute; left: -18px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* SECTION TITLE */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }

/* DIVIDER */
.divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 20px;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* SECTION SUBTITLE */
.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.9;
}
.section-header.center .section-subtitle { margin: 0 auto; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(29,107,68,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29,107,68,0.45);
}
.btn-green {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-green:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--forest-dark);
  border-color: rgba(10,34,24,0.25);
}
.btn-outline:hover {
  background: var(--forest-dark);
  color: var(--white);
  border-color: var(--forest-dark);
  transform: translateY(-2px);
}

/* â”€â”€ NAVBAR â”€â”€ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  z-index: 9999;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  width: 100%;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 32px rgba(10,34,24,0.1);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(10,34,24,0.1);
  transition: transform 0.3s ease;
  border: 2px solid var(--gold);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}
.nav-logo-text strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: all 0.35s ease;
}
.navbar.scrolled .nav-logo-text strong {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}
.nav-logo-text span {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-dark);
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-dark);
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.45);
  color: var(--forest-dark);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 28px;
  z-index: 9998;
  gap: 4px;
  transform: translateY(-115%);
  transition: transform 0.35s ease;
  box-shadow: 0 20px 60px rgba(10,34,24,0.15);
  border-bottom: 3px solid var(--gold);
  height: auto;
  min-height: 200px;
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu a {
  color: var(--forest-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,34,24,0.07);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-menu a:hover { color: var(--forest); padding-left: 8px; }
.mobile-menu .nav-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-dark);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  border: none;
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}

/* PAGE HERO (inner pages) */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,34,24,0.82) 0%, rgba(29,107,68,0.55) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding-bottom: 58px;
}
.page-hero-content .tag { color: var(--gold-light); padding-left: 0; }
.page-hero-content .tag::before { background: var(--gold-light); }
.page-hero-content .section-title { color: var(--white); margin-bottom: 16px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }

/* â”€â”€ FOOTER â”€â”€ */
footer {
  background: linear-gradient(180deg, var(--forest-dark) 0%, var(--earth) 100%);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s, padding-left 0.25s;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-dark);
  transform: translateY(-2px);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9997;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.65);
}
.whatsapp-float svg {
  width: 30px; height: 30px;
  fill: var(--white);
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* COUNTER */
.counter-num { display: inline; }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; }
  .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-btns {
    justify-content: center;
    gap: 12px;
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.85rem;
  }
  .nav-logo-text strong {
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transform: translateY(8px);
  }
  .nav-logo-text {
    transform: translateY(4px);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 2rem; }
  .nav-logo-text strong { font-size: 1.1rem; }
}

