/* ============================================================
   Glaze Plumbing — Main Stylesheet
   Brand: Navy #1B2A4A | Gold #C8A876 | Sand #E8D5B0
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1B2A4A;
  --navy-dark: #111D33;
  --navy-mid:  #243659;
  --gold:      #C8A876;
  --gold-dark: #A88950;
  --gold-light:#DCC49A;
  --sand:      #E8D5B0;
  --cream:     #F7F3EC;
  --white:     #FFFFFF;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-400:  #9CA3AF;
  --gray-600:  #4B5563;
  --gray-800:  #1F2937;
  --text:      #1F2937;
  --text-light:#6B7280;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.16);

  --max-w: 1200px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
}

.section-subtitle.light { color: rgba(255,255,255,.75); }

/* ── Layout Helpers ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,168,118,.40);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }

/* ── Header / Nav ─────────────────────────────────────────── */
#header,
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.20);
  transition: background var(--transition);
}

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

.logo-link img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* nav-list / nav-link aliases (used by inner pages) */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--white); }
.logo-img { height: 38px; width: auto; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--gold-light); }
.phone-link svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .85rem 0;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { display: block; text-align: center; margin-top: 1rem; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1E3560 100%);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Decorative drop watermark */
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  aspect-ratio: 38/54;
  background: url('../images/logo-icon.svg') center/contain no-repeat;
  opacity: .04;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(200,168,118,.15);
  border: 1px solid rgba(200,168,118,.3);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Emergency Banner ─────────────────────────────────────── */
.emergency-banner {
  background: var(--gold);
  padding: .85rem 0;
}
.emergency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.emergency-banner p {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
}
.emergency-banner a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-stat {
  text-align: center;
  color: var(--white);
}
.trust-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}
.trust-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* ── Services Grid ────────────────────────────────────────── */
.services-section { background: var(--gray-50); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,168,118,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; }

/* ── Why Choose ───────────────────────────────────────────── */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/logo-icon.svg') center/50% no-repeat;
  opacity: .15;
}
.why-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
}

.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-point-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(200,168,118,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.why-point-icon svg { width: 20px; height: 20px; }
.why-point h4 { font-size: .95rem; color: var(--navy); margin-bottom: .25rem; }
.why-point p  { font-size: .875rem; color: var(--text-light); }

/* ── Areas ────────────────────────────────────────────────── */
.areas-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.area-chip {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.area-chip:hover {
  background: rgba(200,168,118,.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.area-chip svg { width: 18px; height: 18px; color: var(--gold); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--cream); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: .75rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-light);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.author-loc  { font-size: .78rem; color: var(--text-light); }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--gold);
  padding: 4rem 0;
}
.cta-section .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.cta-section h2 { color: var(--navy); font-size: clamp(1.5rem, 2.5vw, 2rem); }
.cta-section p  { color: rgba(27,42,74,.75); margin-top: .4rem; }
.cta-buttons    { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 34px; margin-bottom: 1rem; }
.footer-brand p   { font-size: .875rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-col h4    { color: var(--white); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .04em; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: .6rem;
  margin-bottom: .6rem;
  font-size: .875rem;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero p  { color: rgba(255,255,255,.7); margin-top: .75rem; font-size: 1.05rem; }
.breadcrumb   { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: .75rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Services Page ────────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-detail-visual svg { width: 80px; height: 80px; color: rgba(200,168,118,.5); }
.service-detail h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--navy); margin-bottom: 1rem; }
.service-detail p  { color: var(--text-light); margin-bottom: 1rem; font-size: .95rem; }
.service-includes  { margin: 1.25rem 0; }
.service-includes li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  margin-bottom: .5rem;
  color: var(--text);
}
.service-includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,168,118,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-text strong { display: block; font-size: .8rem; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-info-text span  { font-size: .9rem; color: rgba(255,255,255,.8); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact-form-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,118,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius);
  padding: 1rem;
  color: #065F46;
  font-size: .9rem;
  margin-top: 1rem;
}

/* ── About Page ───────────────────────────────────────────── */
.about-intro { background: var(--white); }
.about-intro .grid-2 { gap: 4rem; align-items: center; }
.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/logo-icon.svg') center/50% no-repeat;
  opacity: .12;
}

.values-section { background: var(--cream); }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.value-card h3 { font-size: 1rem; color: var(--navy); margin: 1rem 0 .5rem; }
.value-card p  { font-size: .875rem; color: var(--text-light); }
.value-icon    { color: var(--gold); }
.value-icon svg { width: 28px; height: 28px; }

.team-section { background: var(--white); }

/* ── Scroll to top ────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
  border: none;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links, .nav-list, .header-cta .btn { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 75vh; }
  .hero::before { opacity: .03; width: 100%; right: 0; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid, .contact-layout, .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }

  .cta-section .container { grid-template-columns: 1fr; }

  .trust-bar .container { gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 1rem; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */

/* Grid layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Intro text */
.contact-form-wrap h2 { color: var(--navy); margin-bottom: .5rem; }
.contact-intro { color: var(--text-muted); margin-bottom: 2rem; }

/* ── Contact Form ──────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group label span[aria-hidden] { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #d8dde8;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.1);
}
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #c0392b;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B2A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.field-error {
  font-size: .78rem;
  color: #c0392b;
  min-height: 1.1em;
}

/* Checkbox */
.form-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  font-size: .875rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--navy);
}

/* Submit button states */
.btn-full { width: 100%; justify-content: center; }
.btn-loading { display: flex; align-items: center; gap: .6rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin .8s linear infinite; }

/* Success message */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f0faf5;
  border: 1.5px solid #27ae60;
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--text);
}
.form-success svg { color: #27ae60; flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; color: var(--navy); margin-bottom: .3rem; }
.form-success p { font-size: .9rem; margin: 0; }

/* ── Info Sidebar ──────────────────────────────────────── */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.info-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 1.5rem; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--cream);
}
.info-item:last-of-type { border-bottom: none; }

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(27,42,74,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.info-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.info-value {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}
a.info-value {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
a.info-value:hover { color: var(--gold); }

/* Sidebar area list */
.area-list-sidebar {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .5rem;
}
.area-list-sidebar li {
  font-size: .875rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.area-list-sidebar li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* Trust mini card */
.trust-mini { display: flex; flex-direction: column; gap: .75rem; }
.trust-mini-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── FAQ Section ───────────────────────────────────────── */
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}
.faq-q {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.faq-a {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   SCROLL-TO-TOP (fix hidden attr behaviour)
═══════════════════════════════════════════════════════ */
.scroll-top[hidden] { display: none !important; }

/* ═══════════════════════════════════════════════════════
   FADE-UP ANIMATION (Intersection Observer)
═══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid children */
.service-card:nth-child(2).fade-up  { transition-delay: .07s; }
.service-card:nth-child(3).fade-up  { transition-delay: .14s; }
.service-card:nth-child(4).fade-up  { transition-delay: .21s; }
.service-card:nth-child(5).fade-up  { transition-delay: .28s; }
.service-card:nth-child(6).fade-up  { transition-delay: .35s; }

.faq-item:nth-child(2).fade-up { transition-delay: .08s; }
.faq-item:nth-child(3).fade-up { transition-delay: .16s; }
.faq-item:nth-child(4).fade-up { transition-delay: .24s; }
.faq-item:nth-child(5).fade-up { transition-delay: .32s; }
.faq-item:nth-child(6).fade-up { transition-delay: .40s; }

/* ── Footer disclaimer ────────────────────────────────────── */
.footer-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  margin-top: .35rem;
  font-style: italic;
}
