/* ===== CSS VARIABLES ===== */
:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3d;
  --green-light: #4a8c5c;
  --green-pale: #a8c5a0;
  --brown-dark: #3d2b1f;
  --brown-mid: #7a4f35;
  --brown-light: #b5845a;
  --cream: #f5ede0;
  --cream-dark: #e8d5b8;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #fdfaf6;
  --text-dark: #1e1a14;
  --text-mid: #4a3f30;
  --text-light: #8a7a65;
  --shadow-sm: 0 2px 12px rgba(30,26,20,0.08);
  --shadow-md: 0 8px 32px rgba(30,26,20,0.14);
  --shadow-lg: 0 20px 60px rgba(30,26,20,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --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: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-bamboo {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.loader-bamboo span {
  width: 8px;
  border-radius: 4px;
  background: var(--gold);
  animation: loaderGrow 1s ease-in-out infinite alternate;
}
.loader-bamboo span:nth-child(1) { height: 40px; animation-delay: 0s; }
.loader-bamboo span:nth-child(2) { height: 60px; animation-delay: 0.1s; }
.loader-bamboo span:nth-child(3) { height: 80px; animation-delay: 0.2s; }
.loader-bamboo span:nth-child(4) { height: 60px; animation-delay: 0.3s; }
.loader-bamboo span:nth-child(5) { height: 40px; animation-delay: 0.4s; }
@keyframes loaderGrow {
  from { transform: scaleY(0.5); opacity: 0.4; }
  to { transform: scaleY(1); opacity: 1; }
}
.loader-text {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  color: rgba(253,250,246,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(201,168,76,0.15);
}
.nav-link.active { color: var(--gold-light); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,42,0.88) 0%,
    rgba(26,58,42,0.65) 50%,
    rgba(61,43,31,0.75) 100%
  );
}

/* Bamboo stalks decoration */
.bamboo-stalks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.stalk {
  position: absolute;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(201,168,76,0.3), transparent);
  animation: stalkSway 4s ease-in-out infinite alternate;
}
.stalk::before {
  content: '';
  position: absolute;
  left: -8px;
  width: 20px;
  height: 2px;
  background: rgba(201,168,76,0.2);
  border-radius: 2px;
}
.s1 { left: 5%; height: 70%; animation-delay: 0s; }
.s2 { left: 8%; height: 85%; animation-delay: 0.5s; }
.s3 { right: 6%; height: 75%; animation-delay: 1s; }
.s4 { right: 10%; height: 90%; animation-delay: 1.5s; }
.s5 { right: 3%; height: 60%; animation-delay: 0.8s; }
.stalk::before { top: 30%; }
@keyframes stalkSway {
  from { transform: rotate(-2deg); transform-origin: bottom; }
  to { transform: rotate(2deg); transform-origin: bottom; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 24px 80px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .title-line { display: block; }
.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(253,250,246,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(253,250,246,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.7rem;
  color: rgba(253,250,246,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(253,250,246,0.4);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(253,250,246,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--green-dark);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-track .dot { color: var(--gold); font-size: 0.7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  background: rgba(74,140,92,0.12);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(74,140,92,0.25);
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.3);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--brown-dark);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  text-align: center;
}
.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-leaf {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 4rem;
  opacity: 0.15;
  transform: rotate(20deg);
}
.about-content { padding-bottom: 40px; }
.about-text {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(74,140,92,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(74,140,92,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  animation-delay: var(--delay);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.service-img img {
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.5), transparent);
}
.service-body {
  padding: 24px;
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--gold); gap: 8px; }
.service-card--more {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-more-inner {
  padding: 32px 24px;
  text-align: center;
}
.more-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card--more h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card--more p {
  font-size: 0.85rem;
  color: rgba(253,250,246,0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  position: relative;
  cursor: pointer;
}
.gallery-item.gi-large {
  grid-column: span 2;
  height: 340px;
}
.gallery-item img {
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 20px 16px 14px;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
}
.why-bg img { object-fit: cover; }
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,42,0.93), rgba(61,43,31,0.88));
}
.why-content { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.why-item {
  padding: 32px 24px;
  background: rgba(253,250,246,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.why-item:hover {
  background: rgba(253,250,246,0.1);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 0.85rem;
  color: rgba(253,250,246,0.65);
  line-height: 1.6;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  padding: 100px 0;
  background: var(--cream);
}
.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.social-card.insta {
  background: linear-gradient(135deg, #f9f0ff, #fff0f5);
  border-color: rgba(225,48,108,0.15);
}
.social-card.insta:hover { border-color: rgba(225,48,108,0.4); }
.social-card.youtube {
  background: linear-gradient(135deg, #fff5f5, #fff0e8);
  border-color: rgba(255,0,0,0.1);
}
.social-card.youtube:hover { border-color: rgba(255,0,0,0.3); }
.social-card.gmail {
  background: linear-gradient(135deg, #f0f7ff, #f5fff0);
  border-color: rgba(66,133,244,0.15);
}
.social-card.gmail:hover { border-color: rgba(66,133,244,0.35); }
.social-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-icon svg { width: 28px; height: 28px; }
.insta .social-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.youtube .social-icon { background: #ff0000; color: white; }
.gmail .social-icon { background: #4285f4; color: white; }
.social-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.social-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
  word-break: break-all;
}
.social-follow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: gap var(--transition);
}
.social-card:hover .social-follow { color: var(--gold); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-item a {
  font-size: 0.9rem;
  color: var(--white);
  transition: color var(--transition);
  word-break: break-all;
}
.contact-item a:hover { color: var(--gold-light); }
.contact-item p {
  font-size: 0.8rem;
  color: rgba(253,250,246,0.5);
  margin-top: 2px;
}
.whatsapp-btn-wrap { text-align: center; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
}
.whatsapp-btn svg { width: 22px; height: 22px; }
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(74,140,92,0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74,140,92,0.1);
}
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(74,140,92,0.1);
  border: 1px solid rgba(74,140,92,0.3);
  border-radius: var(--radius-sm);
  color: var(--green-mid);
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: var(--gold-light); }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(253,250,246,0.6);
  line-height: 1.7;
  margin: 20px 0 28px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(253,250,246,0.08);
  border: 1px solid rgba(253,250,246,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,250,246,0.7);
  transition: all var(--transition);
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
}
.footer-links-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: 0.9rem;
  color: rgba(253,250,246,0.6);
  transition: color var(--transition);
}
.footer-links-col ul li a:hover { color: var(--gold-light); }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-list li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(253,250,246,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(253,250,246,0.4);
}

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all var(--transition);
  animation: floatPulse 2s ease-in-out infinite;
}
.float-whatsapp svg { width: 30px; height: 30px; }
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .img-secondary { right: 0; bottom: -30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .social-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; padding: 12px 0; width: 100%; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 24px 60px; margin-left: 0; }
  .hero-title { font-size: 2.5rem; }
  .hero-scroll { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gi-large { grid-column: span 1; height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 40px; }
  .img-secondary { display: none; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .contact-card { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
  .float-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .float-whatsapp svg { width: 26px; height: 26px; }
}