/* =========================================
   Devoted Notary — Main Stylesheet
   Brand: Navy #0B1F3A | Gold #D4AF37 | White #FFFFFF
   ========================================= */

:root {
  --navy:       #0B1F3A;
  --navy-light: #1a3a6b;
  --navy-dark:  #06121f;
  --gold:       #D4AF37;
  --gold-dark:  #b8941f;
  --white:      #FFFFFF;
  --light-bg:   #F5F7FA;
  --text-dark:  #1a1a2e;
  --text-gray:  #5a6475;
  --border:     #e2e6ed;
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.08);
  --shadow-md:  0 4px 20px rgba(11,31,58,0.12);
  --shadow-lg:  0 8px 40px rgba(11,31,58,0.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all 0.3s ease;
  --max-width:  1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--white);
}

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

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text-gray); }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }

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

.section         { padding: 88px 24px; }
.services-overview { padding: 90px 24px; }
.section-alt     { background: var(--light-bg); }
.section-dark    { background: var(--navy); color: var(--white); }
.section-dark p  { color: rgba(255,255,255,0.72); }

.section-header  { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-weight: 800; }
.section-header p {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.06rem;
  line-height: 1.78;
}
.section-dark .section-header h2 { color: var(--white); }
.services-overview .section-header { margin-bottom: 34px; }

/* Gold divider under section heading */
.heading-rule {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  margin: 16px auto 0;
  display: block;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  min-height: 50px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
  -webkit-tap-highlight-color: transparent;
}
.btn:active {
  transform: translateY(1px) scale(0.98) !important;
  box-shadow: none !important;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(212,175,55,0.28);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.38);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-lg { padding: 16px 36px; font-size: 1.05rem; min-height: 56px; }

/* ── Hero action buttons: pixel-perfect equal sizing ── */
/* Grid forces both columns to exactly the same width regardless of text length */
.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: fit-content;
}
.hero-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 17px 36px;
  min-height: 58px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.hero-actions .btn-outline {
  background: rgba(11,31,58,0.48);
  border-color: rgba(255,255,255,0.68);
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

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

.nav-logo {
  text-decoration: none;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 78px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: 0.3px;
}
.nav-logo-tagline {
  font-size: 0.64rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  margin-left: 14px;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

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

/* ── Hero (split layout) ── */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Two-column split: text left, photo right */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* Left panel — content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 68px 56px 52px 52px;
  position: relative;
  z-index: 1;
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 50%, #122d52 100%);
}
/* Subtle gold glow behind text */
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at -10% 65%, rgba(212,175,55,0.1) 0%, transparent 60%);
  pointer-events: none;
}
/* Gold accent bar on far left edge */
.hero-content::after {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 4px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
  border-radius: 0 2px 2px 0;
}

/* Right panel — photo */
.hero-visual {
  position: relative;
  overflow: hidden;
}
/* Left-to-right gradient overlay: solid navy → transparent */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #122d52 0%,
    rgba(11,31,58,0.78) 18%,
    rgba(11,31,58,0.35) 48%,
    rgba(11,31,58,0.12) 75%,
    rgba(11,31,58,0.08) 100%
  );
  z-index: 1;
}
/* Dark vignette on all other edges */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,31,58,0.35) 0%, transparent 20%),
    linear-gradient(to top,    rgba(11,31,58,0.4)  0%, transparent 20%);
  z-index: 1;
  pointer-events: none;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  filter: brightness(0.86) contrast(1.06) saturate(0.88);
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.30);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.18;
  max-width: 460px;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.76);
  margin-bottom: 14px;
  line-height: 1.82;
  max-width: 500px;
}

.hero-wosb {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.72);
  margin-bottom: 14px;
}

.hero-credline {
  margin-top: 14px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.hero-tagline {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-tagline span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
}
.hero-tagline span::before {
  content: '•';
  font-size: 0.9rem;
  opacity: 0.7;
}



/* Trust stats bar */
.hero-trust-bar {
  background: var(--navy-dark);
  border-top: 1px solid rgba(212,175,55,0.22);
  padding: 32px 24px;
}
.hero-trust {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}
.trust-item {
  flex: 1;
  min-width: 160px;
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 40px;
}
.trust-item:last-child {
  border-right: none;
  margin-right: 0;
}
.trust-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: -0.5px;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  margin-top: 8px;
  display: block;
  line-height: 1.45;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: 0 2px 12px rgba(11,31,58,0.09);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(11,31,58,0.15);
  border-color: rgba(212,175,55,0.28);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.08) 100%);
  border: 1.5px solid rgba(212,175,55,0.52);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 26px;
  flex-shrink: 0;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  display: block;
}
.service-card h3 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.1px;
}
.service-card p {
  font-size: 0.93rem;
  line-height: 1.74;
  margin-bottom: 24px;
  flex: 1;
}
.service-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
  margin-top: auto;
}
.service-link:hover { gap: 10px; color: var(--gold-dark); }

/* Services section CTA */
.services-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── Why Choose Us ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.feature-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-item:hover { background: rgba(255,255,255,0.04); }
.feature-icon {
  width: 74px;
  height: 74px;
  background: rgba(212,175,55,0.1);
  border: 2px solid rgba(212,175,55,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 22px;
}
.section-dark .feature-item h3 { color: var(--white); margin-bottom: 10px; }

/* ── Areas Grid (homepage) ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
}
.area-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.area-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 5px; }
.area-card p  { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ── CTA Banner ── */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #c9a022 50%, var(--gold-dark) 100%);
  padding: 88px 24px;
  text-align: center;
}
.cta-section h2 { color: var(--navy); margin-bottom: 14px; }
.cta-section p  { color: rgba(11,31,58,0.7); font-size: 1.1rem; margin: 0 auto 36px; max-width: 520px; }
.cta-section .btn-navy:hover { background: var(--navy-light); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto 56px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.footer-logo-img {
  height: 78px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-text { display: flex; flex-direction: column; }
.footer-brand .footer-logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand .footer-logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.91rem;
  margin: 18px 0 24px;
  line-height: 1.75;
}
.footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  list-style: none;
}
.footer-contact .fi {
  width: 28px;
  height: 28px;
  background: rgba(212,175,55,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 24px 72px;
  text-align: center;
  color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header .lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.12rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  list-style: none;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; color: rgba(255,255,255,0.3); }

/* ── Services Page: Detail Layout ── */
.services-detail-wrap { max-width: var(--max-width); margin: 0 auto; }

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-row:last-child { border-bottom: none; }
.service-detail-row.flip { }
.service-detail-row.flip .service-detail-visual { order: -1; }

.service-detail-icon-lg {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  background: rgba(11,31,58,0.05);
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11,31,58,0.08);
}
.service-detail-text h2 { color: var(--navy); margin-bottom: 16px; }
.service-detail-text .service-id { color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.service-detail-text p { margin-bottom: 18px; font-size: 0.97rem; }
.service-detail-text ul { list-style: none; margin-bottom: 28px; }
.service-detail-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.93rem;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border);
}
.service-detail-text ul li:last-child { border-bottom: none; }
.service-detail-text ul li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.service-detail-visual {
  background: linear-gradient(145deg, var(--light-bg) 0%, #dde3ed 100%);
  border-radius: var(--radius-lg);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-detail-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  border-radius: var(--radius-lg);
  height: 480px;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(212,175,55,0.25);
  box-shadow: 0 12px 48px rgba(11,31,58,0.22);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: calc(var(--radius-lg) - 3px);
}
.about-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  z-index: 1;
}

/* ── Homepage about-teaser layout ── */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-teaser-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  border: 3px solid rgba(212,175,55,0.25);
  box-shadow: 0 10px 40px rgba(11,31,58,0.2);
}
.about-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: calc(var(--radius-lg) - 3px);
}
.about-content .section-label { margin-bottom: 10px; }
.about-content h2 { color: var(--navy); margin-bottom: 8px; }
.about-content .subtitle { color: var(--gold); font-weight: 600; font-size: 1rem; margin-bottom: 24px; display: block; }
.about-content p { margin-bottom: 18px; }

.cred-list { list-style: none; margin: 24px 0 32px; }
.cred-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border);
}
.cred-list li:last-child { border-bottom: none; }
.cred-list li .badge {
  width: 28px;
  height: 28px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .vi { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.value-card h4 { color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; }

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card h2 { color: var(--navy); margin-bottom: 6px; }
.contact-form-card .form-lead { margin-bottom: 32px; font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.87rem;
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  font-family: inherit;
  background: #fafbfc;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-aside { display: flex; flex-direction: column; gap: 22px; }

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.info-card h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.05rem; }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.info-row:last-child { margin-bottom: 0; }
.info-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.info-row h4 { color: var(--navy); font-size: 0.82rem; margin-bottom: 3px; }
.info-row p, .info-row a { color: var(--text-gray); font-size: 0.88rem; }
.info-row a:hover { color: var(--gold); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 4px 0; }
.hours-row .day { color: var(--navy); font-weight: 600; }
.hours-row .time { color: var(--text-gray); }

/* ── Service Areas Page ── */
.areas-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.area-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.area-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.area-detail-card .area-emoji { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.area-detail-card h3 { color: var(--navy); margin-bottom: 12px; }
.area-detail-card p { font-size: 0.93rem; margin-bottom: 20px; }
.city-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.city-tag {
  background: var(--light-bg);
  color: var(--text-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.coverage-note {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 48px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.coverage-note h3 { color: var(--white); margin-bottom: 12px; }
.coverage-note p { color: rgba(255,255,255,0.72); margin-bottom: 28px; }

/* ── FAQ (details/summary) ── */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 0;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  gap: 16px;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.faq-item summary:hover { background: var(--light-bg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item[open] summary { background: var(--light-bg); }
.faq-item .faq-body {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq-item .faq-body p { padding-top: 16px; margin: 0; }
.faq-item .faq-body a { color: var(--gold); }
.faq-item .faq-body a:hover { color: var(--navy); }

/* ── Contact form submit ── */
.form-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  /* Hero on tablets: tighten padding, reduce image area */
  .hero-split { min-height: 580px; }
  .hero-content { padding: 60px 40px 48px 40px; }
  .trust-item { padding-right: 20px; margin-right: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-photo { height: 360px; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser-photo { height: 340px; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-row { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-row.flip .service-detail-visual { order: unset; }
}

@media (max-width: 768px) {
  /* Logo */
  .nav-logo-img  { height: 50px; }
  .footer-logo-img { height: 60px; }
  .nav-logo-name { font-size: 1.2rem; }
  .nav-logo-tagline { display: none; }
  .nav-inner { height: 76px; padding: 0 20px; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; border-radius: var(--radius); font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; min-height: 50px; }

  /* Layout */
  .section { padding: 56px 20px; }
  .section-header { margin-bottom: 40px; }

  /* Hero — collapse to single column, image below */
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-content {
    padding: 56px 28px 48px;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  }
  .hero-content::after { top: 12%; bottom: 12%; }
  .hero-visual { height: 280px; }
  .hero-visual::before {
    background: linear-gradient(to bottom, rgba(11,31,58,0.55) 0%, transparent 40%, rgba(11,31,58,0.3) 100%);
  }
  .hero-trust-bar { padding: 24px 20px; }
  .hero-trust { gap: 0; }
  .trust-item { min-width: 140px; padding: 0 20px 0 0; margin-right: 20px; }
  .trust-number { font-size: 1.75rem; }
  .hero-badge { font-size: 0.72rem; padding: 7px 14px; }
  .hero-wosb { font-size: 0.72rem; margin-bottom: 22px; }
  .hero-credline { font-size: 0.7rem; margin-top: 14px; }

  /* About teaser */
  .about-teaser-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-teaser-photo { height: 300px; }
  .about-photo { height: 300px; }

  /* Form */
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Hero buttons — stay in 2-column grid, shrink slightly */
  .hero-actions { gap: 12px; width: auto; }
  .cta-actions  { gap: 12px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  /* Nav */
  .nav-inner { padding: 0 16px; height: 66px; }
  .nav-logo-img { height: 44px; }
  .nav-logo { gap: 10px; }
  /* Fix dropdown gap: must match nav-inner height exactly */
  .nav-links { top: 66px; }
  /* Footer logo */
  .footer-logo-img { height: 50px; }

  /* Hero */
  .hero-content { padding: 48px 20px 40px; }
  .hero-content::after { display: none; }
  .hero-visual { height: 240px; }
  /* Buttons: single column, full width on phones */
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn { width: 100%; }
  .hero-tagline  { flex-direction: column; gap: 10px; }
  .hero-trust    { flex-wrap: wrap; gap: 16px 0; }
  .trust-item    { min-width: 50%; border-right: none; margin-right: 0; padding-right: 16px; }

  /* Sections */
  .section { padding: 48px 16px; }

  /* CTA section buttons */
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }

  /* About */
  .about-teaser-photo { height: 260px; }
  .about-photo { height: 260px; }

  /* Services detail page */
  .service-detail-visual { height: 180px; font-size: 4rem; }
}
