/* ============================================================
   MOUNTAINSIDE HOME WATCH — Premium Redesign
   Stylesheet
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --navy:       #1B3558;
  --navy-dark:  #122540;
  --navy-mid:   #254978;
  --gold:       #C9A96E;
  --gold-light: #DEC08C;
  --off-white:  #F8F7F4;
  --white:      #FFFFFF;
  --text-dark:  #1A2332;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --border:     rgba(27,53,88,0.12);

  --shadow-sm:  0 2px 12px rgba(27,53,88,0.08);
  --shadow-md:  0 8px 32px rgba(27,53,88,0.12);
  --shadow-lg:  0 20px 60px rgba(27,53,88,0.18);
  --shadow-xl:  0 30px 80px rgba(27,53,88,0.22);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.2s cubic-bezier(0.4,0,0.2,1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --section-pad: 100px;
}

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

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

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

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

/* ---------- Typography ---------- */
.serif { font-family: var(--font-serif); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

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

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

section { position: relative; }

.section-pad { padding: var(--section-pad) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

#navbar.transparent {
  background: transparent;
}

#navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 30px rgba(18,37,64,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 40px;
  max-width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: 3px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

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

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

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
  padding-left: 26px;
}

.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 3px;
  margin-left: 10px;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile Nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: 100px 40px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-links a {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition-fast);
}

.mobile-menu-links a:hover { color: var(--gold); }

.mobile-sub {
  padding-left: 20px;
}

.mobile-sub a {
  font-family: var(--font-sans);
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.65) !important;
  padding: 10px 0 !important;
  border-bottom: none !important;
}

.mobile-menu-footer {
  margin-top: 40px;
}

.mobile-menu-footer a {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../hero.avif');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,37,64,0.82) 0%,
    rgba(27,53,88,0.65) 50%,
    rgba(18,37,64,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--navy-dark);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Intro ---------- */
.intro {
  background: var(--white);
  padding: 110px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.intro-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.intro-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}

.intro-badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.intro-badge-label {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.3;
}

.intro-content .section-subtitle {
  margin-bottom: 30px;
}

.intro-points {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.intro-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.intro-point-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---------- Services ---------- */
.services-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.04);
}

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,53,88,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap var(--transition-fast);
}

.service-card-link:hover { gap: 10px; color: var(--gold); }

.service-card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Featured card */
.service-card--featured {
  background: var(--navy);
}

.service-card--featured .service-card-icon {
  background: rgba(201,169,110,0.15);
}

.service-card--featured .service-card-icon svg { stroke: var(--gold); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,0.72); }
.service-card--featured .service-card-link { color: var(--gold); }
.service-card--featured .service-card-tag { background: var(--gold); color: var(--navy-dark); }

/* Services bottom row - span */
.services-grid--bottom {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--navy);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ---------- About Section ---------- */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-quote {
  position: absolute;
  bottom: 140px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-sm);
  max-width: 200px;
  box-shadow: var(--shadow-md);
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--gold-light);
  font-style: italic;
}

.about-quote span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

.about-content .section-subtitle { margin-bottom: 28px; }

.about-founders {
  display: flex;
  gap: 20px;
  margin: 32px 0;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.about-founders p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.about-founders strong { color: var(--navy); }

.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.credential-check {
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Insurance CTA ---------- */
.insurance-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.insurance-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(201,169,110,0.06);
  border-radius: 50%;
}

.insurance-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.insurance-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.insurance-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.75;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-loc {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.star {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1627067600149-032f86ccfd47?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,37,64,0.88), rgba(18,37,64,0.78));
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 18px;
}

.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 110px;
}

.faq-sidebar .section-subtitle { margin-bottom: 32px; }

.faq-contact-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 32px;
}

.faq-contact-card h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.faq-contact-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.faq-contact-email {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 16px;
  display: block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.faq-question:hover span { color: var(--navy); }

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon { background: var(--navy); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }
.faq-item.open .faq-question span { color: var(--navy); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-subtitle { margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-detail-value a {
  color: var(--navy);
  transition: color var(--transition-fast);
}

.contact-detail-value a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,53,88,0.08);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-submit { width: 100%; justify-content: center; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* ---------- Map ---------- */
.map-section {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) contrast(1.1);
}

.map-overlay-card {
  position: absolute;
  top: 40px;
  left: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
}

.map-overlay-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.map-overlay-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--gold);
  transition: color var(--transition-fast);
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover { color: var(--white); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1658761059709-70ec538880dd?auto=format&fit=crop&w=1920&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--gold); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---------- Services Page Specific ---------- */
.services-detail {
  padding: var(--section-pad) 0;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.service-detail-item:last-child { margin-bottom: 0; }

.service-detail-item.reverse .service-detail-image { order: 2; }
.service-detail-item.reverse .service-detail-content { order: 1; }

.service-detail-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-detail-image:hover img { transform: scale(1.03); }

.service-detail-content .section-label { margin-bottom: 12px; }

.service-detail-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}

.service-detail-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-features {
  margin: 24px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- About Page ---------- */
.about-full {
  padding: var(--section-pad) 0;
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-values {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,53,88,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 30px; }
  :root { --section-pad: 80px; }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .about-full-grid { grid-template-columns: 1fr; gap: 50px; }

  .intro-image-accent,
  .intro-badge { display: none; }

  .intro-image-main { height: 380px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid--bottom { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .about-images { height: 400px; }
  .about-img-1 { width: 80%; height: 300px; }
  .about-img-2 { width: 55%; height: 220px; }
  .about-quote { display: none; }

  .insurance-inner { grid-template-columns: 1fr; gap: 30px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }

  .service-detail-item { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-item.reverse .service-detail-image { order: 0; }
  .service-detail-item.reverse .service-detail-content { order: 0; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  :root { --section-pad: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }

  .nav-inner { height: 70px; padding: 0 24px; }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .trust-bar-inner { gap: 30px; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid--bottom { grid-template-columns: 1fr; }

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

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; text-align: center; }

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

  .contact-form { padding: 32px 24px; }

  .about-images { height: 300px; }
  .about-img-2 { display: none; }
  .about-img-1 { width: 100%; height: 300px; position: relative; }

  .values-grid { grid-template-columns: 1fr; }

  .cta-banner-bg { background-attachment: scroll; }

  .map-overlay-card { top: 20px; left: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero { height: 100svh; }
  .hero h1 { font-size: 2.2rem; }
  .trust-item:nth-child(4), .trust-item:nth-child(5) { display: none; }
  .hero-content { padding-bottom: 80px; }
  .page-hero { padding: 120px 0 50px; }
}

/* ---- Alt grid — reverses column order on desktop only ---- */
.about-full-grid.alt > *:first-child { order: 2; }
.about-full-grid.alt > *:last-child  { order: 1; }

@media (max-width: 1024px) {
  .about-full-grid.alt > *:first-child { order: unset; }
  .about-full-grid.alt > *:last-child  { order: unset; }
}

/* ---- Map mobile height ---- */
@media (max-width: 768px) {
  .map-section { height: 300px; }
  .map-overlay-card { display: none; }
}

/* ---- Bottom service cards consistent height ---- */
.services-grid--bottom .service-card { min-height: 260px; }

/* ---- Custom select arrow ---- */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  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='%234A5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ---- Insurance section mobile centering ---- */
@media (max-width: 640px) {
  .insurance-inner { text-align: center; }
  .insurance-inner .fade-in:last-child { display: flex; justify-content: center; }
}

/* ---- Trust bar tablet wrap improvement ---- */
@media (max-width: 768px) {
  .trust-bar-inner { gap: 20px 30px; justify-content: center; }
  .trust-item { font-size: 0.78rem; }
}

/* ---- Tiny screen nav logo ---- */
@media (max-width: 360px) {
  .nav-logo-text { display: none; }
  .nav-logo img { height: 44px; }
}

/* ---- Contact detail value link colour ---- */
.contact-detail-value a:hover { color: var(--gold) !important; }
