/* ═══════════════════════════════════════════════════════════
   ALFANUGERAH RENOVATION — Complete Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Google Font ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:       #112240;
  --navy-dark:  #0b1628;
  --orange:     #c27516;
  --orange-light: #e8a84c;
  --gold:       #d4a84b;
  --cream:      #f8f5f0;
  --off-white:  #fafaf8;
  --white:      #ffffff;
  --slate:      #5a6577;
  --text:       #374151;
  --text-light: #6b7280;
  --border:     #e5e7eb;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 2px 12px rgba(0,0,0,.06);
  --shadow-lg:  0 8px 30px rgba(0,0,0,.1);
  --transition: all .25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4, h5, h6 { color: var(--navy); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pt-section { padding-top: 4rem; }
.pb-section { padding-bottom: 4rem; }
.text-center { text-align: center; }
.center { max-width: 700px; margin-left: auto; margin-right: auto; }
.bg-cream { background: var(--cream); }
.bg-off-white { background: var(--off-white); }

/* ── Section Labels / Titles ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-title {
  margin-bottom: 1rem;
  color: var(--navy);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.accent { color: var(--orange); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17,34,64,.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg {
  padding: .9rem 2rem;
  font-size: 1rem;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: var(--shadow);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 110px;
  gap: 1rem;
  position: relative;
}
.logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.logo-img { width: 150px; height: 150px; object-fit: contain; border-radius: 4px; }
.logo-white { filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  padding: .5rem .9rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: .9rem;
  color: var(--slate);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: var(--cream);
}
.nav-cta {
  font-size: .85rem !important;
  padding: .6rem 1.2rem !important;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}
.btn-nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1000;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Language Switcher ─────────────────────────────────────── */
.lang-switcher {
  position: relative;
  margin-left: .5rem;
}
.lang-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem;
  background: var(--white);
  border: 2px solid var(--slate);
  border-radius: 999px;
  color: var(--slate);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.lang-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(194,117,22,.35);
}
.lang-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(194,117,22,.35);
}
.lang-btn svg {
  flex-shrink: 0;
  width: 14px; height: 14px;
  stroke: currentColor;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  padding: .5rem;
  min-width: 180px;
  display: none;
  z-index: 1000;
  border: 1px solid rgba(0,0,0,.05);
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: block; width: 100%; text-align: left;
  padding: .7rem 1rem;
  border: none; background: transparent;
  border-radius: 8px;
  color: var(--slate);
  font-size: .9rem; font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
}
.lang-option:hover,
.lang-option.selected { background: var(--cream); color: var(--orange); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 6rem 0 4rem;
  min-height: 550px;
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero p { color: rgba(255,255,255,.85); max-width: 640px; }
.hero.has-bg {
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,34,64,.85) 0%, rgba(17,34,64,.5) 50%, rgba(17,34,64,.3) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 640px; }
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: nowrap;
}
.hero-stat { text-align: center; }
.hero-stat-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: .3rem;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About hero / Services hero / Contact hero */
.about-hero, .services-hero, .contact-hero {
  position: relative;
  padding: 8rem 0 4rem;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}
.about-hero.has-bg, .services-hero.has-bg, .contact-hero.has-bg {
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.about-hero.has-bg::before, .services-hero.has-bg::before, .contact-hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,34,64,.9) 0%, rgba(17,34,64,.4) 60%, transparent 100%);
}
.about-hero .container, .services-hero .container, .contact-hero .container {
  position: relative; z-index: 1;
}
.about-hero h1, .services-hero h1, .contact-hero h1 { color: var(--white); }

/* ── Why Grid ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.icon-circle {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--orange);
}
.icon {
  width: 24px; height: 24px;
}
.why-item h4 { margin-bottom: .3rem; }
.why-item p { font-size: .9rem; color: var(--text-light); }

/* ── Services Grid (home page cards) ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 12px;
  color: var(--orange);
  margin-bottom: 1rem;
}
.card-icon .icon { width: 28px; height: 28px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .9rem; color: var(--text-light); flex: 1; }
.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--orange);
}
.card-link:hover { color: var(--navy); }

/* ── Process Steps ─────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--orange);
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.process-step h3 { margin-bottom: .5rem; color: var(--orange); }
.process-step p { font-size: .88rem; color: var(--text-light); }

/* ── Service Detail Sections (services page) ───────────────── */
.service-detail {
  padding: 3rem 0;
}
.service-detail .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-detail .container > .image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.service-detail .features {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem 1.5rem;
}
.service-detail .features li {
  position: relative;
  padding-left: 1.3rem;
  font-size: .9rem;
  color: var(--text);
}
.service-detail .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.service-detail img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 450px;
}
.service-detail.reverse .container > .image-text-block {
  direction: rtl;
}
.service-detail.reverse .container > .image-text-block > * {
  direction: ltr;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  overflow: hidden;
}
.cta-banner.has-bg {
  background-image: var(--cta-img);
  background-size: cover;
  background-position: center;
}
.cta-banner.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,34,64,.88);
}
.cta-banner h2, .cta-banner p, .cta-banner .btn { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ── Full-bleed Image Break ────────────────────────────────── */
.full-bleed-img {
  margin: 2.5rem auto;
  max-width: 96%;
}
.full-bleed-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,.12);
}

/* ── Two-column Image + Text ───────────────────────────────── */
.image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}
.image-text-block.reverse {
  direction: rtl;
}
.image-text-block.reverse > * {
  direction: ltr;
}
.image-text-block .image-side img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,.12);
  object-fit: cover;
  max-height: 450px;
}

/* ── About Page ────────────────────────────────────────────── */
.about-content { padding: 4rem 0; }
.about-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-grid-2 img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(194,117,22,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-info-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.contact-info-card h4 { margin-bottom: .75rem; }
.contact-info-card p { font-size: .9rem; margin-bottom: .4rem; }
.contact-info-card a { color: var(--orange); font-weight: 600; }
.contact-info-card a:hover { color: var(--navy); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}
.faq-item h4 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item h4::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--orange);
  transition: var(--transition);
}
.faq-item.open h4::after { content: '−'; }
.faq-item p {
  display: none;
  margin-top: .75rem;
  font-size: .9rem;
  color: var(--text-light);
}
.faq-item.open p { display: block; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: .75rem; }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: .5rem; }
.footer ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer ul a:hover { color: var(--orange); }
.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .5rem;
}
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--orange); }

.footer-newsletter h4 { color: var(--white); margin-bottom: .5rem; }
.footer-newsletter p { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: .75rem; }
.footer-newsletter-form {
  display: flex;
  gap: .5rem;
}
.footer-newsletter-form input {
  flex: 1;
  padding: .6rem .8rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .85rem;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-form button {
  padding: .6rem 1.2rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
}
.footer-newsletter-form button:hover {
  background: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  color: rgba(255,255,255,.5);
  font-weight: 600;
  font-size: .8rem;
  transition: var(--transition);
}
.footer-socials a:hover { color: var(--orange); }

/* ── Service Areas (contact page) ──────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.area-card h4 { margin-bottom: .5rem; color: var(--navy); }
.area-card p { font-size: .9rem; color: var(--text-light); }

/* ── WhatsApp Float ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 2000;
  display: flex; flex-direction: column; align-items: flex-end; gap: .5rem;
}
.wa-float-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  cursor: pointer;
  border: none;
  transition: transform .2s ease;
}
.wa-float-btn:hover { transform: scale(1.08); }
.wa-float-btn svg { width: 34px; height: 34px; }
.wa-float-menu {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  padding: .6rem;
  display: none;
  min-width: 220px;
}
.wa-float-menu.open { display: flex; flex-direction: column; gap: .25rem; }
.wa-float-menu a {
  display: block;
  padding: .7rem 1rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.wa-float-menu a:hover { background: var(--cream); }
.wa-region {
  display: block;
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Fade In Animation ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
/* ── About Page Stats Row (redesigned) ─────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}
.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-item .stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--orange);
}
.stat-item .stat-icon svg { width: 28px; height: 28px; }
.stat-item h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4rem;
}
.stat-item p {
  font-size: .88rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ── Vision / Mission Cards ────────────────────────────────── */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vision-card, .mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--orange);
  transition: var(--transition);
}
.vision-card:hover, .mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.vision-card h3, .mission-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.vision-card p, .mission-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── FAQ (contact page) ────────────────────────────────────── */
.faq-question {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  user-select: none;
  transition: color .2s;
}
.faq-question:hover { color: var(--orange); }
.faq-question .arrow {
  font-size: .8rem;
  color: var(--orange);
  transition: transform .3s;
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: .75rem;
}

/* ── Contact Form extras ───────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-error {
  display: none;
  font-size: .8rem;
  color: #dc2626;
  margin-top: .3rem;
}
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #dc2626;
}
.form-group.error .form-error { display: block; }
.form-success {
  display: none;
  background: #059669;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}
.btn-block { width: 100%; }

/* ── Business Hours (contact page) ─────────────────────────── */
.business-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ── Service Areas Tags ────────────────────────────────────── */
.area-tag {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 999px;
  padding: .8rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--orange);
  transition: var(--transition);
}
.area-tag:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Services/About/Contact Hero padding ───────────────────── */
.services-hero, .about-hero, .contact-hero {
  padding-top: 10rem;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand, .footer-newsletter { grid-column: span 3; }
  .service-detail .container > .image-text-block { gap: 2rem; }
}

/* ── Mobile (≤768px) ──────────────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar */
  .navbar .container { height: 80px; }
  .logo-img { width: 100px; height: 100px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-right { margin-left: auto; gap: .5rem; }
  .lang-switcher { display: flex; align-items: center; position: static; }
  .lang-btn { padding: .35rem .55rem; }
  .lang-current { font-size: .7rem; }
  .lang-dropdown { right: 0; left: auto; min-width: 140px; position: absolute; top: calc(100% + 6px); }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 90px;
    gap: .25rem;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 950;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.05rem;
    padding: .85rem 1.5rem;
    border-radius: 0;
  }

  /* Hero */
  .hero { padding: 3.5rem 0 2.5rem; min-height: auto; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: .92rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .hero-stat { flex: 1 1 45%; min-width: 140px; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-label { font-size: .65rem; }

  /* Secondary heroes */
  .services-hero, .about-hero, .contact-hero { padding-top: 7rem; min-height: auto; }
  .services-hero h1, .about-hero h1, .contact-hero h1 { font-size: 1.6rem; }

  /* Grids → single column */
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .about-grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .business-hours { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Image blocks */
  .image-text-block { grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
  .image-text-block.reverse { direction: ltr; }
  .image-text-block .image-side img { max-height: 250px; width: 100%; }
  .full-bleed-img { margin: 1.5rem auto; max-width: 96%; }
  .full-bleed-img img { max-height: 220px; }

  /* Service detail */
  .service-detail { padding: 2rem 0; }
  .service-detail .container > .image-text-block { gap: 1.5rem; grid-template-columns: 1fr; }
  .service-detail.reverse .container > .image-text-block { direction: ltr; }
  .service-detail img { max-height: 280px; }
  .service-detail .features { grid-template-columns: 1fr; gap: .3rem; }
  .service-detail .features li { font-size: .85rem; }

  /* CTA banner */
  .cta-banner { padding: 2.5rem 1.2rem; border-radius: var(--radius); }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: .9rem; }

  /* Contact form */
  .contact-form { padding: 1.5rem; }
  .form-group input, .form-group textarea, .form-group select { font-size: 16px; /* prevents iOS zoom */ }

  /* FAQ */
  .faq-question { font-size: .92rem; }

  /* Footer */
  .footer { padding: 3rem 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand, .footer-newsletter { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form input { width: 100%; }

  /* WhatsApp float */
  .wa-float { bottom: 16px; right: 16px; }
  .wa-float-btn { width: 52px; height: 52px; }
  .wa-float-btn svg { width: 28px; height: 28px; }
  .wa-float-menu { min-width: 200px; }

  /* Process steps */
  .process-step { padding: 1.5rem 1.2rem; }

  /* About page */
  .about-content { padding: 2rem 0; }
  .stat-item { padding: 1.5rem 1rem; }
  .stat-item h3 { font-size: 1.1rem; }
  .vision-card, .mission-card { padding: 1.5rem; }
}

/* ── Small phone (≤480px) ─────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  .section-label { font-size: .7rem; }
  .hero { padding: 3rem 0 2rem; }
  .hero h1 { font-size: 1.5rem; }
  .hero-stats { flex-direction: column; gap: .75rem; }
  .hero-stat { flex: 1 1 100%; min-width: auto; }
  .hero-stat-num { font-size: 1.2rem; }
  .btn { padding: .65rem 1.2rem; font-size: .88rem; }
  .btn-lg { padding: .7rem 1.4rem; font-size: .9rem; }
  .why-item { padding: 1.2rem; }
  .card { padding: 1.5rem 1.2rem; }
  .process-step { padding: 1.2rem 1rem; }
  .cta-banner { padding: 2rem 1rem; }
  .cta-banner h2 { font-size: 1.25rem; }
  .image-text-block .image-side img { max-height: 200px; }
  .full-bleed-img img { max-height: 180px; }
  .services-hero, .about-hero, .contact-hero { padding-top: 6rem; }
}

/* ── iPhone safe areas ────────────────────────────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
  .wa-float { bottom: calc(16px + env(safe-area-inset-bottom)); }
  .footer { padding-bottom: env(safe-area-inset-bottom); }
}