/* ============================================================
   Samsung Appliance Repair Center UAE — shared stylesheet
   ============================================================ */

:root {
  /* colors */
  --blue-700: #0d2e8c;
  --blue-600: #1330a6;
  --blue-500: #1a3fc4;
  --navy-900: #0a1a3c;
  --navy-800: #0e2249;
  --bg-light: #eef3fb;
  --bg-soft: #f6f9fd;
  --white: #ffffff;
  --text-dark: #16213e;
  --text-muted: #5b6b8c;
  --text-on-dark: #c7d2ea;
  --border-soft: #e1e8f5;
  --gold: #f5a623;

  /* type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* layout */
  --max-width: 1180px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-card: 0 10px 30px rgba(10, 26, 60, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.eyebrow {
  color: var(--blue-600);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

h1, h2, h3, h4 { font-family: var(--font-body); color: var(--text-dark); margin: 0; }

.section-heading {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--blue-600); color: var(--white); }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}

.brand-mark {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue-600);
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.25;
  border-left: 1px solid var(--border-soft);
  padding-left: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 500;
  font-size: 0.96rem;
}

.nav-links > li > a {
  color: var(--text-dark);
  padding: 10px 0;
  position: relative;
}

.nav-links > li > a.active,
.nav-links > li > a:hover {
  color: var(--blue-600);
}

.nav-links > li > a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
}

/* dropdown */
.nav-item-dropdown { position: relative; }

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
  color: var(--text-dark);
  padding: 10px 0;
}
.dropdown-toggle:hover { color: var(--blue-600); }

.dropdown-toggle .chev {
  width: 9px; height: 9px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  margin-top: -3px;
}

.nav-item-dropdown.open .dropdown-toggle .chev,
.nav-item-dropdown:hover .dropdown-toggle .chev {
  transform: rotate(225deg);
  margin-top: 3px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 50;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--blue-600); }
.dropdown-menu .dd-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.dropdown-menu .dd-icon svg { width: 16px; height: 16px; stroke: var(--blue-600); }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-cta {
  background: var(--blue-600);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-700); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-900) 38%, #123a86 62%, #2455c2 100%);
  overflow: hidden;
  padding: 78px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: #a9c2ff;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero p {
  color: #d7e0f7;
  font-size: 1.05rem;
  max-width: 470px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-call {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.hero-call .ring {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.hero-call .ring svg { width: 17px; height: 17px; stroke: var(--white); }
.hero-call .call-label { font-size: 0.78rem; color: #b9c7ea; }
.hero-call .call-number { font-weight: 700; font-size: 1rem; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 6 / 5;
}

.hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-badge {
  position: absolute;
  top: 6%;
  right: 4%;
  background: var(--blue-600);
  color: var(--white);
  width: 118px; height: 118px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 12px 30px rgba(19, 48, 166, 0.45);
  border: 3px solid rgba(255,255,255,0.25);
}
.hero-badge svg { width: 20px; height: 20px; stroke: var(--white); margin-bottom: 6px; }

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
  position: relative;
  z-index: 2;
}
.hero-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.hero-dots span.active { background: var(--white); width: 20px; border-radius: 4px; }

/* ============ SERVICES GRID ============ */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 18px 24px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.service-icon {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 27px; height: 27px; stroke: var(--blue-600); }

.service-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card .card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.3px solid var(--border-soft);
  color: var(--blue-600);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.service-card:hover .card-arrow { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }
.service-card .card-arrow svg { width: 13px; height: 13px; }

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 26px;
}

.why-item { display: flex; gap: 14px; align-items: flex-start; }

.why-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.why-icon svg { width: 19px; height: 19px; stroke: var(--white); }

.why-item h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.why-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 13 / 12;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-photo .caption {
  position: absolute;
  bottom: 22px;
  right: 24px;
  color: var(--navy-900);
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: right;
  line-height: 1.15;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px;
}
.stat-box .stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue-600);
  margin-bottom: 4px;
}
.stat-box .stat-label { font-size: 0.85rem; color: var(--text-muted); }

.about-art { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 60 / 53; }
.about-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-body p { color: var(--text-muted); margin: 0 0 16px; max-width: 540px; }

/* ============ HOW IT WORKS ============ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
}
.step-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--bg-light);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--navy-900);
  padding: 0;
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 40px;
}
.cta-art { padding: 40px 0; }
.cta-art .img-frame { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 24 / 19; }
.cta-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-text { padding: 60px 24px 60px 0; }
.cta-text .eyebrow { color: #8fa9ec; }
.cta-text h2 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 700; margin-bottom: 14px; }
.cta-text p { color: #b9c7ea; max-width: 460px; margin-bottom: 26px; }

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.testi-card p.quote {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin: 0 0 20px;
}
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex: none;
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-loc { font-size: 0.78rem; color: var(--text-muted); }
.testi-stars { color: var(--gold); font-size: 0.78rem; margin-top: 2px; letter-spacing: 1px; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 22px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  font-size: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-dark);
}
.faq-q .plus {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.3px solid var(--border-soft);
  flex: none;
  position: relative;
  transition: transform 0.2s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--blue-600);
  top: 50%; left: 50%;
}
.faq-q .plus::before { width: 10px; height: 1.6px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 1.6px; height: 10px; transform: translate(-50%,-50%); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { color: var(--text-muted); font-size: 0.92rem; margin: 14px 0 0; max-width: 640px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-900);
  color: var(--text-on-dark);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark { color: var(--white); font-size: 1.3rem; }
.footer-brand p { color: #93a3c9; font-size: 0.88rem; margin: 10px 0 0; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 14px; height: 14px; stroke: var(--white); }
.footer-social a:hover { background: var(--blue-600); border-color: var(--blue-600); }

.footer h5 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 12px; font-size: 0.88rem; }
.footer-links a { color: #a9b7d9; }
.footer-links a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.86rem;
  color: #a9b7d9;
  margin-bottom: 16px;
}
.footer-contact svg { width: 16px; height: 16px; stroke: #8fa9ec; flex: none; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: #7d8bb0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #7d8bb0; margin-left: 18px; }
.footer-bottom a:hover { color: var(--white); }

/* ============ SERVICE (dynamic) PAGE ============ */
.service-hero {
  background: linear-gradient(120deg, var(--navy-900), #16368c);
  padding: 56px 0 46px;
}
.breadcrumb {
  color: #9db2ec;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.breadcrumb a { color: #9db2ec; }
.breadcrumb a:hover { color: var(--white); }
.service-hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.service-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }
.service-hero p { color: #cfd9f4; max-width: 520px; }
.service-hero-icon {
  width: 92px; height: 92px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.service-hero-icon svg { width: 42px; height: 42px; stroke: var(--white); }

.service-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.service-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 10 / 7;
  margin-bottom: 26px;
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-features { display: grid; gap: 14px; margin: 26px 0 32px; }
.service-feature {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}
.service-feature .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-600);
  flex: none;
  display: flex; align-items: center; justify-content: center;
}
.service-feature .check svg { width: 11px; height: 11px; stroke: var(--white); }

.service-price-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.service-price-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-price-card .price { font-size: 1.9rem; font-weight: 800; color: var(--blue-600); margin: 10px 0 4px; }
.service-price-card .price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.service-price-card ul { margin: 18px 0 24px; display: grid; gap: 10px; }
.service-price-card ul li { font-size: 0.86rem; color: var(--text-muted); display: flex; gap: 8px; }
.service-price-card .btn { width: 100%; justify-content: center; }

.other-services { margin-top: 12px; }
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.other-services-grid a {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.other-services-grid a:hover { border-color: var(--blue-600); color: var(--blue-600); transform: translateY(-3px); }
.other-services-grid a.current { border-color: var(--blue-600); color: var(--blue-600); background: var(--bg-light); }
.other-services-grid .mini-icon { width: 30px; height: 30px; margin: 0 auto 10px; }
.other-services-grid .mini-icon svg { width: 100%; height: 100%; stroke: var(--blue-600); }

/* ============ CONTACT PAGE ============ */
.contact-hero { background: linear-gradient(120deg, var(--navy-900), #16368c); padding: 56px 0 46px; text-align: center; }
.contact-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 800; margin-bottom: 10px; }
.contact-hero p { color: #cfd9f4; max-width: 560px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info-list { display: grid; gap: 18px; margin-bottom: 30px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 18px;
}
.contact-info-item .why-icon { width: 40px; height: 40px; }
.contact-info-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1.3px solid var(--border-soft);
  border-radius: 9px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text-dark);
  background: var(--bg-soft);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.contact-form-panel { position: relative; }

.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 52px 36px;
}
.contact-success.visible { display: flex; }

.success-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: #e7f6ec;
  color: #1f9d4c;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.success-icon svg { width: 30px; height: 30px; }

.contact-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.contact-success p { color: var(--text-muted); font-size: 0.92rem; max-width: 360px; margin: 0 0 26px; }

.map-block { border-radius: var(--radius-lg); overflow: hidden; margin-top: 40px; aspect-ratio: 24 / 13; }
.map-block img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner, .why-grid, .about-grid, .cta-inner, .contact-grid, .service-body { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-list { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .other-services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-price-card { position: static; }
  .hero-badge { position: static; margin: 20px auto 0; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .hero-call, .brand-sub { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom div a:first-child { margin-left: 0; }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
}

/* mobile nav panel */
.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 22px;
  border-top: 1px solid var(--border-soft);
}
.mobile-panel.open { display: flex; }
.mobile-panel a, .mobile-panel button.dropdown-toggle {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
  width: 100%;
  justify-content: space-between;
  text-align: left;
}
.mobile-panel .dropdown-menu {
  position: static;
  box-shadow: none;
  border: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: none;
  padding-left: 10px;
}
.mobile-panel .nav-item-dropdown.open .dropdown-menu { display: block; }
.mobile-panel .nav-item-dropdown.open .dropdown-toggle .chev { transform: rotate(225deg); margin-top: 3px;}
.mobile-panel .nav-cta { display: inline-flex; margin-top: 14px; }
