/* =============================================
   MIKES CONSTRUCTIONS GROUP LTD
   Main Stylesheet
   ============================================= */

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

:root {
  --primary: #1a2332;
  --accent: #d3b36d;
  --accent-dark: #b8964d;
  --white: #ffffff;
  --light: #f8f6f2;
  --grey: #6b7280;
  --border: #e5e0d8;
  --text: #2d3748;
  --hero-overlay: rgba(15, 23, 36, 0.62);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--primary); }

.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: #2a3a52; transform: translateY(-1px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}
.navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar.page-nav {
  background: var(--primary);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 6px rgba(211,179,109,0.18));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 2px 12px rgba(211,179,109,0.40));
  transform: scale(1.03);
}
/* Keep logo-mark for any fallback but hidden when logo image is present */
.logo-mark {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
  padding-bottom: 88px; /* clears the 88px badge bar */
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a2332 0%, #2d4a6e 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,23,36,0.85) 50%, rgba(15,23,36,0.4));
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 640px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 18px; font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── HERO BADGES — DESKTOP ── */
.hero-badges {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  background: rgba(10, 17, 28, 0.90);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(200,169,110,0.2);
}
.hero-badges-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  height: 88px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 0 28px;
  cursor: default;
  transition: background 0.3s;
}
.badge-item:hover {
  background: rgba(200,169,110,0.05);
}
.badge-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  margin: 18px 0;
  flex-shrink: 0;
}
.badge-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--accent);
  transition: background 0.3s, border-color 0.3s;
}
.badge-item:hover .badge-icon {
  background: rgba(200,169,110,0.22);
  border-color: var(--accent);
}
.badge-text { display: flex; flex-direction: column; gap: 2px; }
.badge-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.badge-text span {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  line-height: 1.2;
}
/* hide mobile-only elements on desktop */
.badge-label { display: none; }

/* ── SECTION BASICS ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-light { background: var(--light); }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--accent); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: inherit;
}
.section-title em { color: var(--accent); font-style: normal; }

.section-sub {
  color: var(--grey); max-width: 560px;
  font-size: 16px; line-height: 1.75;
  margin-bottom: 48px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ── TRUST STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.stat-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent); }
.stat-label { color: var(--grey); font-size: 13px; font-weight: 500; letter-spacing: 0.5px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 85%;
  object-fit: cover;
  border-radius: 4px;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 52%;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--white);
}
.about-experience {
  position: absolute;
  bottom: 48px; left: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
}
.about-experience strong { display: block; font-size: 36px; font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1; }
.about-experience span { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.about-list { list-style: none; margin: 28px 0 36px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '✓';
  color: var(--accent); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.service-img {
  height: 220px; overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 28px; }
.service-icon {
  width: 44px; height: 44px;
  background: rgba(200,169,110,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 20px;
  margin-bottom: 16px;
}
.service-body h3 { font-size: 19px; margin-bottom: 10px; }
.service-body p { color: var(--grey); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: gap 0.2s;
}
.service-link:hover { gap: 14px; }

/* ── WHY CHOOSE ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-card {
  display: flex; gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover {
  border-color: rgba(200,169,110,0.4);
  background: rgba(200,169,110,0.05);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: rgba(200,169,110,0.2);
  line-height: 1; flex-shrink: 0;
}
.why-card h3 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ── PROJECTS ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  position: relative; overflow: hidden;
  border-radius: 4px;
  height: 320px;
  cursor: pointer;
}
.project-card.featured {
  grid-column: span 2;
  height: 420px;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,36,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  margin-bottom: 10px;
  width: fit-content;
}
.project-overlay h3 { color: var(--white); font-size: 20px; margin-bottom: 4px; }
.project-overlay p { color: rgba(255,255,255,0.65); font-size: 13px; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 72px; line-height: 1;
  color: rgba(200,169,110,0.15);
}
.stars { color: var(--accent); font-size: 15px; margin-bottom: 14px; }
.review-text { color: var(--grey); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-location { color: var(--grey); font-size: 12px; }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; padding: 0 20px; }
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--accent);
  position: relative; z-index: 1;
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--grey); font-size: 13px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 20px;
}
.faq-question h3 { font-size: 17px; font-family: 'Raleway', sans-serif; font-weight: 600; }
.faq-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent);
  transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 16px; }
.faq-answer p { color: var(--grey); font-size: 15px; line-height: 1.75; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #2a3d5c 100%);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(200,169,110,0.07);
}
.cta-banner h2 { color: var(--white); font-size: clamp(28px,4vw,44px); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex; gap: 16px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(200,169,110,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 20px;
}
.contact-info-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-item span { color: var(--grey); font-size: 14px; }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 2px;
  font-family: 'Raleway', sans-serif; font-size: 15px;
  color: var(--text); background: var(--light);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 16px; font-size: 14px; }

/* ── FOOTER ── */
.footer { background: #0d1520; color: var(--white); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo-img {
  height: 60px;
  max-width: 180px;
  filter: drop-shadow(0 2px 8px rgba(211,179,109,0.25));
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px; margin: 16px 0 24px;
  line-height: 1.75; max-width: 300px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--accent); color: var(--primary); }

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.5; }

.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--primary);
  padding: 140px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.page-hero h1 { color: var(--white); font-size: clamp(32px,5vw,52px); margin-bottom: 12px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.5); font-size: 13px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden; border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; height: 100%; }
.gallery-caption {
  position: absolute; inset: 0;
  background: rgba(15,23,36,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  color: var(--white); font-size: 13px; font-weight: 600;
  text-align: center; padding: 20px;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── LOCATIONS ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.location-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.location-icon { font-size: 32px; margin-bottom: 14px; }
.location-card h3 { font-size: 18px; margin-bottom: 8px; }
.location-card p { color: var(--grey); font-size: 14px; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 28px; }
.blog-meta { display: flex; gap: 12px; margin-bottom: 12px; }
.blog-tag {
  background: rgba(200,169,110,0.12);
  color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
}
.blog-date { color: var(--grey); font-size: 12px; }
.blog-body h3 { font-size: 18px; margin-bottom: 10px; }
.blog-body p { color: var(--grey); font-size: 14px; margin-bottom: 18px; }
.blog-read { color: var(--accent); font-size: 13px; font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.featured { grid-column: span 2; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {

  /* ── Fullscreen mobile nav overlay ── */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: var(--primary);
    padding: 100px 32px 60px;
    gap: 0;
    overflow-y: auto;
  }
  .nav-links.open li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open li:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open a {
    display: block;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
  }
  .nav-links.open a:hover,
  .nav-links.open a.active { color: var(--accent); }
  .nav-links.open a::after { display: none; }
  .nav-links.open .nav-cta {
    display: inline-block;
    margin-top: 4px;
    padding: 20px 0;
    background: transparent;
    color: var(--accent) !important;
    border-radius: 0;
    font-size: 20px !important;
    font-weight: 600 !important;
    letter-spacing: 2px;
  }
  .mobile-social {
    display: flex !important;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
  }
  .mobile-social .social-link {
    width: 44px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255,255,255,0.7) !important;
    flex-shrink: 0;
    padding: 0 !important;
  }
  .mobile-social .social-link svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    flex-shrink: 0;
    margin: 0 !important;
  }
  .mobile-social .social-link:hover {
    background: var(--accent) !important;
    color: var(--primary) !important;
  }

  /* Hamburger → X animation */
  .hamburger {
    display: flex;
    position: relative;
    z-index: 999;
  }
  .hamburger span { transition: all 0.3s ease; }
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0; transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.menu-open { overflow: hidden; }

  /* ── Hero — mobile ── */
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 90px;
    padding-bottom: 0; /* badges sit below naturally */
    overflow: visible; /* allow badge bar to flow out */
    display: block; /* exit flex so badges can sit below content */
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0 24px 40px;
  }

  /* ── Hero badges — horizontal scroll strip ── */
  .hero-badges {
    position: relative;
    bottom: auto; left: auto; right: auto; top: auto;
    transform: none;
    background: rgba(10, 17, 28, 0.95);
    border-top: 1px solid rgba(200,169,110,0.2);
    z-index: 5;
  }
  .hero-badges-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 72px;
    padding: 0;
    margin: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-badges-inner::-webkit-scrollbar { display: none; }

  .badge-divider {
    display: block;
    width: 1px;
    background: rgba(255,255,255,0.08);
    margin: 14px 0;
    flex-shrink: 0;
  }

  .badge-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    cursor: default;
    border-radius: 0;
    background: transparent;
    transition: background 0.3s;
    white-space: nowrap;
  }
  .badge-item:hover { background: rgba(200,169,110,0.05); }

  .badge-icon {
    width: 32px; height: 32px;
    font-size: 13px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(200,169,110,0.12);
    border: 1px solid rgba(200,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    order: 0;
  }

  .badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: visible;
    opacity: 1;
    padding: 0;
    background: transparent;
    border: none;
    white-space: nowrap;
    max-width: none;
  }
  .badge-text strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
  }
  .badge-text span {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    line-height: 1.3;
  }

  /* ── Grids ── */
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-social { flex-wrap: wrap; }
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ── SUCCESS MSG ── */
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 18px 20px;
  border-radius: 4px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}