/* ==================================================
   Sarwary Elite Services — stylesheet
   ================================================== */

:root {
  --navy: #0F2744;
  --navy-dark: #0b1e36;
  --navy-tint-1: #16324f;
  --navy-tint-2: #1a3757;
  --gold: #D4A64A;
  --gold-hover: #c6963a;
  --soft-gray: #F5F7FA;
  --white: #ffffff;

  --text-body: #4a5768;
  --text-body-2: #5a6777;
  --text-muted: #6b7787;
  --text-muted-2: #8a95a3;
  --text-muted-3: #9aa6b5;
  --text-on-navy: #c3ccd8;
  --text-on-navy-2: #e6ebf1;

  --border-1: #eaeef3;
  --border-2: #e9edf3;
  --border-3: #dfe4ea;
  --border-4: #d9e0e8;
  --border-5: #f2f4f7;

  --error: #b4433a;

  --max-width: 1200px;
  --gutter: 24px;
  --section-pad: 96px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; margin: 0; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--navy); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(212,166,74,0.35);
}
.btn-gold:hover { background: var(--gold-hover); }
.btn-lg {
  font-weight: 800;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(212,166,74,0.4);
}
.btn-lg:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  padding: 16px 26px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ==================================================
   Header / Nav
   ================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,39,68,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; }
.site-logo { height: 44px; width: auto; display: block; }
.site-logo-footer { height: 68px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 14px; font-weight: 600; color: var(--text-on-navy); transition: color 0.2s ease; }
.nav-link:hover { color: var(--gold); }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.nav-phone-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: var(--gold);
  color: var(--navy);
  border: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

.mobile-panel {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--navy);
}
.mobile-panel[hidden] { display: none; }
.mobile-link { padding: 12px 4px; font-weight: 600; color: var(--text-on-navy-2); border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-cta { margin-top: 10px; background: var(--gold); color: var(--navy); font-weight: 700; text-align: center; padding: 14px; border-radius: 10px; }
.mobile-call { margin-top: 8px; text-align: center; font-weight: 700; color: #fff; }

/* ==================================================
   Hero
   ================================================== */
.hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,166,74,0.16), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 84px;
  position: relative;
}
.hero-content { animation: seFade 0.7s ease both; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,166,74,0.14);
  border: 1px solid rgba(212,166,74,0.35);
  color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  padding: 8px 14px; border-radius: 99px; text-transform: uppercase;
}
.hero-title {
  font-size: 52px; line-height: 1.08; font-weight: 800;
  letter-spacing: -1px; margin: 22px 0 0;
  text-wrap: balance;
}
.hero-subtitle { margin: 22px 0 0; font-size: 18px; line-height: 1.6; color: var(--text-on-navy); max-width: 540px; }
.benefit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 24px; margin: 30px 0 0; max-width: 520px;
}
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-on-navy-2); }
.check { color: var(--gold); font-weight: 800; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }
.hero-reassurance { margin: 16px 0 0; font-size: 13px; font-weight: 600; color: var(--text-on-navy); }

.hero-media { position: relative; animation: seFade 0.9s ease both; }
.hero-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.hero-badge {
  position: relative;
  margin-top: -70px; margin-left: 18px;
  max-width: max-content;
  background: #fff; color: var(--navy);
  padding: 16px 20px; border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .stars { font-size: 26px; color: var(--gold); }
.hero-badge-title { font-weight: 800; font-size: 15px; }
.hero-badge-sub { font-size: 12px; color: var(--text-muted); }

@keyframes seFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes seFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==================================================
   Trust Strip
   ================================================== */
.trust-strip { background: var(--navy-dark); }
.trust-row {
  padding: 20px var(--gutter);
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  align-items: center; justify-content: center;
  color: var(--text-on-navy); font-size: 14px; font-weight: 600;
}
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-sep { opacity: 0.25; }

/* ==================================================
   About
   ================================================== */
.about { padding: var(--section-pad) 24px; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-media { border-radius: 20px; box-shadow: 0 20px 40px rgba(15,39,68,0.08); aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; display: inline-block; }
.section-title { font-size: 38px; font-weight: 800; letter-spacing: -0.5px; margin: 14px 0 0; line-height: 1.15; }
.section-title-light { color: #fff; }
.body-text { margin: 20px 0 0; font-size: 17px; line-height: 1.7; color: var(--text-body); }
.body-text-light { color: var(--text-on-navy); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0 0; }
.value-pill { background: var(--soft-gray); padding: 16px 18px; border-radius: 12px; border-left: 3px solid var(--gold); font-weight: 700; font-size: 15px; }
.value-pill-wide { grid-column: span 2; }

/* ==================================================
   Services
   ================================================== */
.services { background: var(--soft-gray); padding: var(--section-pad) 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-header .section-title { margin-top: 14px; }
.section-header .body-text { margin-top: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 52px 0 0; }
.service-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  border: 1px solid var(--border-2);
  box-shadow: 0 4px 14px rgba(15,39,68,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(15,39,68,0.12); }
.service-top { display: flex; align-items: center; justify-content: space-between; min-height: 22px; }
.service-num { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-weight: 800; font-size: 22px; color: var(--gold); }
.service-badge { background: var(--navy); color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 1px; padding: 6px 10px; border-radius: 99px; text-transform: uppercase; }
.service-title { font-size: 21px; font-weight: 700; margin: 20px 0 0; color: var(--navy); }
.service-desc { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--text-body-2); }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 700; color: var(--navy); transition: color 0.2s ease; }
.service-link:hover { color: var(--gold); }

/* ==================================================
   Why Choose Us
   ================================================== */
.why { padding: var(--section-pad) 24px; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 52px 0 0; }
.why-cell {
  background: var(--soft-gray); border-radius: 14px; padding: 26px 22px; text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.why-cell:hover { background: var(--navy); color: #fff; }
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-size: 20px; font-weight: 800;
}
.why-title { font-size: 16px; font-weight: 700; margin: 16px 0 0; }

/* ==================================================
   Service Area
   ================================================== */
.areas { background: var(--navy); color: #fff; padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.areas-glow {
  position: absolute; bottom: -140px; left: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,166,74,0.12), transparent 70%);
}
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; }
.chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); padding: 10px 16px; border-radius: 99px; font-size: 14px; font-weight: 600; }
.map-embed {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 24px 44px rgba(0,0,0,0.3);
  background: var(--navy-tint-1);
}
.map-embed iframe { width: 100%; height: 100%; display: block; }

/* ==================================================
   Testimonials
   ================================================== */
.testimonials { max-width: 1000px; padding: var(--section-pad) 24px; text-align: center; }
.testimonials .section-title { margin-bottom: 0; }
.testimonial-card {
  margin: 44px auto 0; max-width: 760px;
  background: var(--soft-gray); border-radius: 22px; padding: 48px 44px;
  position: relative;
  box-shadow: 0 10px 30px rgba(15,39,68,0.06);
}
.testimonial-card .stars { font-size: 26px; color: var(--gold); letter-spacing: 3px; }
.quote { font-size: 24px; line-height: 1.5; font-weight: 600; color: var(--navy); margin: 22px 0 0; letter-spacing: -0.3px; text-wrap: balance; }
.testimonial-author { margin: 26px 0 0; display: flex; align-items: center; justify-content: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.author-info { text-align: left; }
.author-name { font-weight: 700; color: var(--navy); }
.author-role { font-size: 13px; color: var(--text-muted); }

.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 26px 0 0; }
.ctrl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border-4);
  background: #fff; color: var(--navy); font-size: 18px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ctrl-btn:hover { border-color: var(--gold); color: var(--gold); }
.dots { display: flex; gap: 9px; }
.dot {
  height: 9px; border-radius: 99px; border: none;
  background: #d3dae2;
  width: 9px;
  transition: all 0.25s ease;
}
.dot[aria-current="true"] { background: var(--gold); width: 26px; }

/* ==================================================
   FAQ
   ================================================== */
.faq { padding: var(--section-pad) 24px; }
.faq-list { max-width: 820px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 4px; }
.faq-item { padding: 26px 0; border-bottom: 1px solid var(--border-1); }
.faq-item:first-child { border-top: 1px solid var(--border-1); }
.faq-question { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0; }
.faq-answer { margin: 12px 0 0; font-size: 15px; line-height: 1.7; color: var(--text-body-2); }
.faq-answer a { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 2px; }

/* ==================================================
   Free Estimate
   ================================================== */
.estimate { background: var(--soft-gray); padding: var(--section-pad) 0; }
.estimate-grid { max-width: 1080px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-rows { margin: 32px 0 0; display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}
.contact-label { font-size: 13px; color: var(--text-muted); }
.contact-value { font-weight: 800; font-size: 18px; color: var(--navy); }
.contact-value-static { font-weight: 700; font-size: 16px; color: var(--navy); }

.estimate-form-card {
  background: #fff; border-radius: 20px; padding: 36px;
  box-shadow: 0 20px 44px rgba(15,39,68,0.1);
  border: 1px solid var(--border-2);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--navy); }
.form-field-wide { grid-column: span 2; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border-3);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  color: var(--navy);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.form-field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-error { margin: 14px 0 0; color: var(--error); font-size: 14px; font-weight: 600; }
.form-error[hidden] { display: none; }
.btn-submit { margin-top: 20px; width: 100%; justify-content: center; font-size: 16px; padding: 16px; border-radius: 12px; box-shadow: 0 10px 24px rgba(212,166,74,0.35); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-privacy { margin: 12px 0 0; text-align: center; font-size: 12px; color: var(--text-muted-2); }

.success-state { text-align: center; padding: 40px 10px; }
.success-state[hidden] { display: none; }
.success-icon {
  display: inline-flex; width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  align-items: center; justify-content: center; font-size: 30px;
}
.success-title { font-size: 24px; margin: 20px 0 0; }
.success-text { margin: 12px 0 0; color: var(--text-body-2); line-height: 1.6; }

/* ==================================================
   Contact
   ================================================== */
.contact { padding: var(--section-pad) 24px; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 48px 0 0; }
.contact-card {
  background: var(--soft-gray); border-radius: 16px; padding: 32px 28px;
  transition: transform 0.2s ease;
}
.contact-card-navy { background: var(--navy); color: #fff; display: block; }
.contact-card-navy:hover { transform: translateY(-4px); }
.contact-card-icon {
  display: inline-flex; width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); color: var(--gold);
  align-items: center; justify-content: center; font-size: 20px;
}
.contact-card-navy .contact-card-icon { background: rgba(212,166,74,0.16); }
.contact-card-title { font-size: 18px; margin: 18px 0 0; color: var(--navy); }
.contact-card-navy .contact-card-title { color: #fff; }
.contact-card-phone { margin: 8px 0 0; font-size: 20px; font-weight: 800; color: var(--gold); }
.contact-card-value { margin: 8px 0 0; font-size: 16px; font-weight: 700; color: var(--navy); }
.contact-card-sub { margin: 6px 0 0; font-size: 13px; color: var(--text-body-2); }
.contact-card-navy .contact-card-sub { color: var(--text-on-navy); }

.map-strip { margin: 22px 0 0; border-radius: 16px; overflow: hidden; height: 220px; background: #eef1f6; }
.map-strip iframe { width: 100%; height: 100%; display: block; }

/* ==================================================
   Footer
   ================================================== */
.site-footer { background: var(--navy-dark); color: var(--text-on-navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-tagline { margin: 18px 0 0; font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-heading { color: #fff; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-phone { font-size: 22px; font-weight: 800; color: var(--gold); }
.footer-hours { margin: 10px 0 0; font-size: 14px; }
.footer-cta { display: inline-block; margin-top: 18px; font-size: 14px; padding: 13px 22px; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px; padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 13px;
}

/* ==================================================
   Floating buttons
   ================================================== */
.floating-call {
  position: fixed; bottom: 24px; left: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  box-shadow: 0 12px 26px rgba(15,39,68,0.4);
  animation: seFloat 3s ease-in-out infinite;
  transition: background 0.2s ease;
}
.floating-call:hover { background: var(--navy-tint-1); }
.floating-estimate {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 15px; padding: 16px 22px; border-radius: 99px;
  box-shadow: 0 12px 26px rgba(212,166,74,0.45);
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.floating-estimate:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* ==================================================
   Responsive
   ================================================== */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid, .about-grid, .areas-grid, .estimate-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .hero-media { max-width: 420px; }
  .services-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero-title { font-size: 40px; }
  .section-title { font-size: 32px; }
}

@media (max-width: 560px) {
  .services-grid, .contact-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 33px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .value-pill-wide { grid-column: span 1; }
  .benefit-grid { grid-template-columns: 1fr; }
  .hero-badge { flex-direction: row; margin-left: 12px; padding: 12px 16px; }
  .floating-estimate span { display: none; }
}
