@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --primary: #a7bf2f;
  --primary-dark: #8fa328;
  --secondary: #333333;
  --accent: #f1b201;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --container: 1200px;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 6px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.10), 0 4px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.12), 0 8px 10px rgba(0,0,0,0.06);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.20);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--secondary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: #1a1a1a;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.announcement-bar .sep { margin: 0 14px; opacity: 0.35; }
.announcement-bar a { color: var(--primary); font-weight: 700; transition: color 0.2s; }
.announcement-bar a:hover { color: var(--white); }

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 40px;
  left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 70px; width: auto; object-fit: contain; cursor: pointer; }
.nav.scrolled .nav-logo img { filter: none; }
.nav-logo img { filter: brightness(1.1) drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--secondary); text-shadow: none; }
.nav-links a:hover { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--secondary);
  padding: 12px 24px;
  font-size: 15px;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  padding: 12px 24px;
  font-size: 15px;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.22); }
.btn-outline-dark {
  background: transparent;
  color: var(--secondary);
  border-color: var(--gray-300);
  padding: 10px 22px;
  font-size: 14px;
}
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 16px 36px; font-size: 17px; height: 56px; }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--secondary); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(51,51,51,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--secondary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&q=85&w=2400');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.87) 0%, rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(167,191,47,0.18);
  color: var(--primary);
  border: 1px solid rgba(167,191,47,0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 32px;
}
.hero h1 span { color: var(--primary); }
.hero-subtitle {
  font-size: 20px;
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 600px;
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  animation: bounce 2s infinite;
  cursor: pointer;
}
.hero-scroll svg { width: 32px; height: 32px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Social Proof Bar ──────────────────────────────────────── */
.proof-bar {
  background: var(--white);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 20;
  padding: 36px 0;
}
.proof-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
}
.proof-item {
  padding: 8px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proof-item + .proof-item { border-left: 1px solid var(--gray-100); }
.proof-icon { color: var(--primary); opacity: 0.85; margin-bottom: 12px; }
.proof-icon svg { width: 32px; height: 32px; }
.proof-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

/* ─── Section Shared ────────────────────────────────────────── */
section { padding: 96px 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title-light { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}
.section-header-center { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.accent-line { width: 64px; height: 4px; background: var(--primary); margin-bottom: 24px; }

/* ─── Services ──────────────────────────────────────────────── */
.services { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}
.service-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.service-icon svg { width: 30px; height: 30px; color: var(--primary); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}
.service-card p { color: var(--gray-500); line-height: 1.7; flex: 1; }
.service-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  margin-top: 28px;
  transition: gap 0.2s;
}
.service-card:hover .service-learn { gap: 12px; }
.service-learn svg { width: 16px; height: 16px; }

/* ─── How It Works ──────────────────────────────────────────── */
.process {
  background: var(--secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(167,191,47,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  z-index: 10;
}
.process-connecting-line {
  position: absolute;
  top: 48px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(167,191,47,0.5), transparent);
  z-index: 1;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-num-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--secondary);
  border: 4px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.process-num-circle span {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.process-step p { color: #9ca3af; line-height: 1.7; max-width: 300px; }

/* ─── Why Us ────────────────────────────────────────────────── */
.why-us { background: var(--white); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-us-image-wrap {
  position: relative;
}
.why-us-image-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: rgba(167,191,47,0.1);
  border-radius: 40px;
  transform: rotate(3deg);
  z-index: -1;
}
.why-us-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.why-us-features { display: flex; flex-direction: column; gap: 32px; margin-top: 20px; }
.why-feature { display: flex; gap: 20px; }
.why-check {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.why-feature:hover .why-check { transform: scale(1.1); }
.why-check svg { width: 18px; height: 18px; color: var(--secondary); }
.why-feature h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}
.why-feature p { color: var(--gray-500); line-height: 1.6; }

/* ─── Gallery ───────────────────────────────────────────────── */
.gallery { background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.gallery-item:hover { box-shadow: var(--shadow-xl); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(167,191,47,0.9) 0%, rgba(167,191,47,0.4) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--secondary);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--white);
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transform: translateY(8px);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials {
  background: var(--secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(167,191,47,0.08) 0%, transparent 60%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 10;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); }
.big-quote {
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.2;
  user-select: none;
  pointer-events: none;
}
.stars { display: flex; gap: 4px; margin-bottom: 28px; position: relative; z-index: 1; }
.stars svg { width: 20px; height: 20px; fill: var(--primary); color: var(--primary); }
.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d5db;
  font-style: italic;
  flex: 1;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(167,191,47,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.author-name { font-weight: 700; color: var(--white); font-size: 15px; }
.author-loc { font-size: 13px; color: var(--gray-400); margin-top: 2px; }

/* ─── Contact ───────────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-card {
  background: var(--secondary);
  color: var(--white);
  border-radius: 40px;
  padding: 64px;
  box-shadow: var(--shadow-xl);
  border-left: 6px solid var(--primary);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '"';
  position: absolute;
  top: -40px; right: 40px;
  font-size: 400px;
  font-family: var(--font-display);
  color: var(--white);
  opacity: 0.03;
  line-height: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.contact-info > p {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; align-items: center; gap: 20px; }
.contact-detail-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon.phone { background: var(--primary); }
.contact-detail-icon.location { background: rgba(255,255,255,0.1); }
.contact-detail-icon svg { width: 26px; height: 26px; }
.contact-detail-icon.phone svg { color: var(--secondary); }
.contact-detail-icon.location svg { color: var(--white); }
.detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.detail-value { font-size: 34px; font-weight: 800; }
.detail-value a { color: var(--white); transition: color 0.2s; }
.detail-value a:hover { color: var(--primary); }
.detail-value-sm { font-size: 20px; font-weight: 500; color: var(--white); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  color: var(--secondary);
  padding: 44px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--primary);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  color: var(--secondary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(167,191,47,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input { height: 48px; }
.form-group select { height: 48px; }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--secondary);
  color: #9ca3af;
  padding: 64px 0 0;
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand img { height: 64px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-tagline { color: var(--primary); font-style: italic; font-size: 17px; margin-bottom: 20px; }
.footer-desc { font-size: 15px; line-height: 1.7; max-width: 380px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 14px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(167,191,47,0.5);
}
.social-btn svg { width: 20px; height: 20px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a {
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 2px; }
.footer-contact-value { font-size: 14px; }
.footer-contact-value a { color: #9ca3af; }
.footer-contact-value a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ─── Float Call Button (mobile) ───────────────────────────── */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(167,191,47,0.5);
  z-index: 900;
  transition: transform 0.2s;
  text-decoration: none;
}
.float-call:hover { transform: scale(1.1); }
.float-call svg { width: 26px; height: 26px; }

/* ─── Scroll Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-image-wrap img { height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .announcement-bar { display: none; }
  .nav { top: 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav.scrolled .nav-hamburger span { background: var(--secondary); }
  .proof-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item + .proof-item { border-left: none; }
  .proof-item:nth-child(n+3) { border-top: 1px solid var(--gray-100); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-connecting-line { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item.tall { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .float-call { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}
