/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --black: #0b0b0b;
  --black-soft: #141414;
  --black-card: #1b1b1b;
  --gray-line: #2b2b2b;
  --gold: #f0b92d;
  --gold-dark: #c9971d;
  --gold-soft: #f5cc5c;
  --text-main: #f2f2f0;
  --text-muted: #b3b0a8;
  --text-dim: #7d7a72;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.45);
  --container: 1180px;
  --ff-heading: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

body {
  background: var(--black);
  color: var(--text-main);
  font-family: var(--ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--ff-heading); font-weight: 700; line-height: 1.2; }

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
  color: #fff;
}
.section-title span { color: var(--gold); }

.section-desc {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 1.02rem;
}

.section-head {
  margin-bottom: 52px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .section-tag::before { display: none; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

section { position: relative; padding: 100px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-dark));
  color: #171400;
  box-shadow: 0 10px 30px rgba(240, 185, 45, 0.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(240, 185, 45, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-block { width: 100%; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #f7f6f2;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.brand-badge img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.35); }
.brand-name {
  font-family: var(--ff-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.brand-name small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta { padding: 12px 24px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  position: relative;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle span:nth-child(3) { top: 33px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu { display: none; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 900px 500px at 85% 10%, rgba(240, 185, 45, 0.12), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 90%, rgba(240, 185, 45, 0.06), transparent 60%),
    var(--black);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 185, 45, 0.15);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; right: 120px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 185, 45, 0.1);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 185, 45, 0.08);
  border: 1px solid rgba(240, 185, 45, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 26px;
}
.hero-eyebrow svg { width: 15px; height: 15px; }

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.hero-trust-item strong { color: #fff; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(240,185,45,0.15), rgba(240,185,45,0.02));
  border: 1px solid rgba(240, 185, 45, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 185, 45, 0.3);
}
.hero-photo-glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(240,185,45,0.4), transparent 70%);
  z-index: 0;
}

.hero-ring-photo {
  position: relative;
  z-index: 1;
  width: 84%;
  aspect-ratio: 3 / 2;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 32%;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: -3%;
  left: -12%;
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}
.hero-badge svg { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
.hero-badge strong { display: block; font-size: 1.1rem; color: #fff; }
.hero-badge span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== Differentials ===== */
.differentials { background: var(--black-soft); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.diff-card:hover { transform: translateY(-6px); border-color: rgba(240,185,45,0.4); }
.diff-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(240, 185, 45, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.diff-icon svg { width: 26px; height: 26px; color: var(--gold); }
.diff-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 10px; }
.diff-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== About ===== */
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-visual { position: relative; display: flex; justify-content: center; }
.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1d1a0d, var(--black-card));
  border: 1px solid var(--gray-line);
  padding: 26px 26px 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-photo-wrap img {
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transform: scale(1.12);
  transform-origin: center bottom;
}

.about-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 60px 26px 24px;
  background: linear-gradient(180deg, transparent, rgba(11,11,11,0.75) 55%, rgba(11,11,11,0.92));
  text-align: center;
}
.about-photo-caption strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  color: #fff;
}
.about-photo-caption span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.about-photo-glow {
  position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(240,185,45,0.35), transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.about-photo-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(11,11,11,0.6);
  border: 1px solid rgba(240,185,45,0.3);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-soft);
  z-index: 2;
  letter-spacing: 0.03em;
}

.about-name {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px;
}
.about-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 22px;
  display: block;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gray-line);
  background: var(--black-card);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-main);
}
.about-badge svg { width: 15px; height: 15px; color: var(--gold); }

/* ===== Services ===== */
.services { background: var(--black-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 185, 45, 0.45);
  background: linear-gradient(160deg, #201c0e, var(--black-card));
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(240,185,45,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 27px; height: 27px; color: var(--gold); }
.service-card h3 { font-size: 1.12rem; color: #fff; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  grid-column: span 1;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45));
  pointer-events: none;
}

.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
  background: linear-gradient(150deg, var(--gold-soft), var(--gold-dark));
  color: #171400;
  transition: transform 0.3s ease;
}
.gallery-cta:hover { transform: translateY(-4px); }
.gallery-cta svg { width: 26px; height: 26px; margin-bottom: 4px; }
.gallery-cta strong { font-family: var(--ff-heading); font-size: 1rem; }
.gallery-cta span { font-size: 0.82rem; opacity: 0.8; }

/* ===== Reviews / Social Proof ===== */
.reviews {
  background: linear-gradient(180deg, var(--black), #141005 120%);
  text-align: center;
}
.review-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: var(--shadow-soft);
}
.review-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.review-stars svg { width: 26px; height: 26px; color: var(--gold); }
.review-score {
  font-family: var(--ff-heading);
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}
.review-score span { font-size: 1.3rem; color: var(--text-muted); font-weight: 500; }
.review-sub { color: var(--text-muted); margin-bottom: 30px; }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--gray-line);
  padding-top: 24px;
}
.review-source strong { color: var(--gold); }

/* ===== Location ===== */
.location .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.location-info {
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.location-item { display: flex; gap: 16px; align-items: flex-start; }
.location-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(240,185,45,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-icon svg { width: 22px; height: 22px; color: var(--gold); }
.location-item h4 { font-size: 0.98rem; color: #fff; margin-bottom: 4px; }
.location-item p, .location-item a { font-size: 0.9rem; color: var(--text-muted); }
.location-item a:hover { color: var(--gold); }
.location-info .btn { margin-top: 8px; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.3) contrast(1.05) invert(0.92) hue-rotate(180deg); }

/* ===== Final CTA ===== */
.cta-final {
  background: linear-gradient(135deg, #1c1706, var(--black) 70%);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,185,45,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: #fff;
  margin-bottom: 18px;
}
.cta-final h2 span { color: var(--gold); }
.cta-final p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}
.cta-final .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--gray-line);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--gray-line);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-col h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-desc { color: var(--text-dim); font-size: 0.9rem; max-width: 280px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul li { display: flex; gap: 10px; align-items: flex-start; }
.footer-col ul li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.footer-social a svg { width: 18px; height: 18px; color: var(--text-muted); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { color: #171400; }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 999;
  animation: pulse-wa 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 10px 30px rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 10px 30px rgba(37,211,102,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(37,211,102,0.4); }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about .container, .location .container { grid-template-columns: 1fr; }
  .about-visual { margin-bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .hero-ring { max-width: 280px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 1050;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a { font-family: var(--ff-heading); font-size: 1.3rem; font-weight: 600; color: #fff; }
  .mobile-menu .btn { margin-top: 10px; }
}

@media (max-width: 640px) {
  section { padding: 70px 0; }
  .diff-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .review-card { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
