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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #0F5A2E;
  --green-deeper: #0A3D1F;
  --green-emerald: #046A38;
  --green-footer: #051910;
  --gold: #D4AF37;
  --gold-light: #FFF5D1;
  --beige: #F5F0E6;
  --white: #ffffff;
  --text-dark: #0a2e18;
  --text-muted: #5a7a64;
  --border-light: rgba(212,175,55,0.2);
  --shadow-gold: 0 4px 20px -2px rgba(212,175,55,0.25);
  --shadow-gold-hover: 0 10px 40px -5px rgba(212,175,55,0.45);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 1.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--beige);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── STICKY HEADER BLOCK ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

/* Top Bar */
.top-bar {
  display: none;
  background: var(--green-deeper);
  color: var(--gold);
  padding: 6px 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.5rem; }
.top-bar a, .top-bar-loc {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold); transition: color 0.2s;
}
.top-bar a:hover { color: var(--white); }
.top-bar-icons { display: flex; align-items: center; gap: 0.75rem; }
.top-bar-icons a { display: flex; align-items: center; color: var(--gold); transition: color 0.2s; }
.top-bar-icons a:hover { color: var(--white); }

/* Navbar */
.navbar {
  width: 100%;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(15,90,46,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  cursor: pointer; flex-shrink: 0;
}
.nav-logo svg { color: var(--gold); flex-shrink: 0; }
.nav-brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Desktop Nav Menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-menu-btn:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.nav-menu-btn svg { transition: transform 0.3s; }
.nav-item:hover .nav-menu-btn svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scaleY(0.95);
  transform-origin: top;
  width: 240px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.22);
  border: 1px solid rgba(212,175,55,0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 200;
}
.nav-item { position: relative; }
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) scaleY(1);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8375rem;
  color: var(--green-dark);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--beige); color: var(--gold); }

/* Nav CTA */
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.btn-wa-nav {
  display: none;
  align-items: center; gap: 6px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.btn-wa-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.5); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  border-radius: 8px; padding: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block; height: 2px; background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* Marquee Strip */
.marquee-strip {
  background: var(--green-emerald);
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.marquee-sep { margin: 0 1.25rem; color: rgba(212,175,55,0.4); font-size: 0.7rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green-dark);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-header span {
  font-family: var(--font-serif); font-size: 1.5rem;
  font-weight: 700; color: var(--gold);
}
.mobile-close {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--white);
}
.mobile-nav-links { padding: 1rem 1.5rem; }
.mobile-nav-links a, .mobile-nav-links button {
  display: block; width: 100%;
  text-align: left;
  padding: 14px 0;
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.mobile-nav-links a:hover, .mobile-nav-links button:hover { color: var(--gold); }
.mobile-cta-btns { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--green-dark);
  padding: 1rem; border-radius: 14px; font-weight: 700; font-size: 1rem;
}
.mobile-btn-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem; border-radius: 14px; font-weight: 700; font-size: 1rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: calc(100vh - 148px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,25,10,0.72) 0%, rgba(5,25,10,0.87) 60%, rgba(5,25,10,0.96) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.83-25.12 25.122-1.66-1.66L54.626 0zM3.46 0L0 3.46l25.12 25.12 3.46-3.46L3.46 0zM0 56.54l3.46 3.46 25.12-25.12-3.46-3.46L0 56.54zM56.54 60l3.46-3.46-25.12-25.12-3.46 3.46L56.54 60z' fill='%23D4AF37' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: rotateSlow 60s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); filter: blur(2px); opacity: 0.3;
  animation: floatP 8s ease-in-out infinite;
}
@keyframes floatP {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-22px) rotate(6deg); opacity: 0.6; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.1);
  backdrop-filter: blur(8px);
  padding: 8px 24px; border-radius: 50px;
  color: var(--gold); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeInDown 1s ease both;
}
.hero-label svg { color: var(--gold); }
.hero-h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.05; margin-bottom: 1.25rem;
  animation: fadeInUp 1s 0.2s ease both;
}
.hero-h1 .gold { 
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 680px; line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeInUp 1s 0.4s ease both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 3rem;
  animation: fadeInUp 1s 0.6s ease both;
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--green-dark);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(212,175,55,0.6); }
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.btn-call:hover { background: rgba(212,175,55,0.12); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; align-items: center;
  animation: fadeIn 1s 1s ease both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(212,175,55,0.85); font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}
.trust-dot { width: 5px; height: 5px; background: rgba(212,175,55,0.4); border-radius: 50%; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
  animation: fadeIn 1.5s 1.5s ease both;
}
.hero-scroll span {
  color: rgba(212,175,55,0.6); font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(212,175,55,0.5), transparent); }

@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 fadeIn { from { opacity:0; } to { opacity:1; } }

/* ─── SERVICES ─── */
.services-section {
  padding: 6rem 0;
  background: var(--beige);
  position: relative;
}
.services-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2h2v4h20v2H22v2.5h-2zM0 20h2v20H0V20zm38 0h2v20h-2V20z' fill='%230F5A2E' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.02;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
.section-eyebrow {
  font-family: var(--font-display);
  color: var(--gold); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 0.8rem; margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--green-dark); font-weight: 700;
  line-height: 1.2; margin-bottom: 1rem;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative; z-index: 1;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold-hover);
}
.service-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: rgba(15,90,46,0.18);
  transition: background 0.4s;
}
.service-card:hover .service-card-img-overlay { background: transparent; }
.service-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(0,0,0,0.42); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gold); font-size: 0.65rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.service-card-body { padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; flex: 1; }
.service-card-title {
  font-size: 1.45rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 0.6rem; transition: color 0.3s;
}
.service-card:hover .service-card-title { color: var(--gold); }
.service-card-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.service-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.05);
  color: var(--green-dark); font-weight: 700; font-size: 0.9rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.service-card-btn:hover {
  background: var(--gold); color: var(--green-dark); border-color: var(--gold);
}

/* WhatsApp Banner */
.wa-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-emerald) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.wa-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/images/roohani.png') center/cover;
  opacity: 0.08; mix-blend-mode: overlay;
}
.wa-banner h3 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1;
}
.wa-banner p { color: var(--gold); font-size: 1.05rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.wa-banner .btn-wa { position: relative; z-index: 1; }

/* ─── ABOUT ─── */
.about-section { padding: 6rem 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-frame {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 8px solid var(--beige);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  position: relative;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-frame-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,90,46,0.75) 0%, transparent 50%);
}
.about-float-card {
  position: absolute; background: var(--white);
  border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-gold-hover); border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; gap: 12px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
.about-float-card.card1 { bottom: -2rem; left: -2rem; }
.about-float-card.card2 {
  top: 25%; right: -2rem;
  background: var(--green-dark);
  animation-delay: 2s;
}
.float-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.float-num { font-size: 1.75rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.float-label { font-size: 0.8rem; color: var(--text-muted); }
.float-text { color: var(--white); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; }

.about-eyebrow { font-family: var(--font-display); color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.about-title { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--green-dark); font-weight: 700; line-height: 1.2; margin-bottom: 1.25rem; }
.about-text { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.about-list { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; }
.about-list li svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.about-list li span { color: var(--green-dark); font-weight: 500; }
.btn-wa-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-dark); color: var(--gold);
  padding: 14px 28px; border-radius: 12px;
  font-weight: 700; transition: background 0.3s, box-shadow 0.3s;
}
.btn-wa-dark:hover { background: var(--green-emerald); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ─── FEATURES ─── */
.features-section {
  padding: 6rem 0;
  background: var(--beige);
  border-top: 1px solid rgba(212,175,55,0.1);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 3rem 2.5rem; text-align: center;
  border: 1px solid rgba(212,175,55,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: box-shadow 0.4s;
}
.feature-card:hover { box-shadow: var(--shadow-gold-hover); }
.feature-icon {
  width: 80px; height: 80px; margin: 0 auto 1.5rem;
  background: rgba(212,175,55,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-card h4 { font-size: 1.25rem; color: var(--green-dark); margin-bottom: 0.75rem; font-weight: 700; }
.feature-card p { color: var(--text-muted); line-height: 1.75; }

/* ─── CONTACT/CTA ─── */
.contact-section {
  padding: 6rem 0;
  background: var(--green-dark);
  text-align: center;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.83-25.12 25.122-1.66-1.66L54.626 0zM3.46 0L0 3.46l25.12 25.12 3.46-3.46L3.46 0zM0 56.54l3.46 3.46 25.12-25.12-3.46-3.46L0 56.54zM56.54 60l3.46-3.46-25.12-25.12-3.46 3.46L56.54 60z' fill='%23D4AF37' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.05;
}
.contact-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1;
}
.contact-section > .container > p { color: var(--gold); font-size: 1.1rem; margin-bottom: 3rem; font-weight: 300; position: relative; z-index: 1; }
.contact-info-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-bottom: 3rem; position: relative; z-index: 1;
}
.contact-info-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 20px; border-radius: 12px;
}
.contact-info-item svg { color: var(--gold); }
.contact-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; position: relative; z-index: 1;
}
.btn-call-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--gold); color: var(--gold);
  padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1.05rem;
  transition: background 0.3s;
}
.btn-call-outline:hover { background: rgba(212,175,55,0.12); }

/* ─── FOOTER ─── */
.footer {
  background: var(--green-footer);
  border-top: 3px solid var(--gold);
  padding: 5rem 0 2.5rem;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo svg { color: var(--gold); }
.footer-logo-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--white); }
.footer-about { line-height: 1.8; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover { background: var(--gold); color: var(--green-dark); }
.footer-col-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a, .footer-links button {
  color: rgba(255,255,255,0.65); transition: color 0.2s;
  font-size: 0.9rem;
  text-align: left;
}
.footer-links a:hover, .footer-links button:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.footer-contact-item svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem; text-align: center; font-size: 0.85rem;
}

/* ─── MOBILE STICKY BAR ─── */
.mobile-sticky-bar {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
}
.mobile-sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; font-weight: 700; font-size: 0.95rem;
}
.mobile-sticky-wa { background: #25D366; color: var(--white); }
.mobile-sticky-call { background: var(--gold); color: var(--green-dark); }
.mobile-bar-spacer { height: 60px; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-float-card.card1 { left: -3rem; bottom: -2.5rem; }
}

@media (min-width: 1024px) {
  .top-bar { display: flex; }
  .nav-menu { display: flex; }
  .btn-wa-nav { display: flex; }
  .hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .mobile-sticky-bar { display: none; }
  .mobile-bar-spacer { display: none; }
  .hero { min-height: calc(100vh - 148px); }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-wa, .btn-call { width: 100%; justify-content: center; }
  .hero-trust { gap: 0.75rem; }
  .trust-dot { display: none; }
  .contact-btns { flex-direction: column; width: 100%; padding: 0 1rem; }
  .btn-wa, .btn-call-outline { width: 100%; justify-content: center; }
  .about-float-card.card1 { left: 0; bottom: -1rem; }
  .about-float-card.card2 { right: 0; }
}
