/* ============================================================
   DM Neat Cleaners — Master Stylesheet
   Author: Antigravity Academy Student
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS VARIABLES (Design Tokens)
   ------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --color-navy:      #001f3f;
  --color-navy-dark: #001428;
  --color-gold:      #D4AF37;
  --color-yellow:    #FFD700;
  --color-white:     #FFFFFF;
  --color-off-white: #F8F9FA;
  --color-light-grey:#E9ECEF;
  --color-text:      #2d2d2d;
  --color-text-muted:#6c757d;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Poppins', sans-serif;

  /* Font Sizes (fluid scale) */
  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md:   1.125rem;  /* 18px */
  --fs-lg:   1.375rem;  /* 22px */
  --fs-xl:   1.75rem;   /* 28px */
  --fs-2xl:  2.25rem;   /* 36px */
  --fs-3xl:  3rem;      /* 48px */

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-pill:50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 31, 63, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 31, 63, 0.14);
  --shadow-lg: 0 8px 40px rgba(0, 31, 63, 0.18);

  /* Transitions */
  --transition: all 0.3s ease;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}
h1 { font-size: clamp(2rem, 5vw, var(--fs-3xl)); }
h2 { font-size: clamp(1.6rem, 3.5vw, var(--fs-2xl)); }
h3 { font-size: clamp(1.2rem, 2.5vw, var(--fs-xl)); }
h4 { font-size: var(--fs-lg); }
p  { margin-bottom: var(--space-sm); }

.text-gold   { color: var(--color-gold); }
.text-navy   { color: var(--color-navy); }
.text-white  { color: var(--color-white); }
.text-muted  { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* Section Eyebrow Label */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

/* ------------------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-2xl);
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--color-white); }

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

/* Primary — Yellow CTA */
.btn-primary {
  background: var(--color-yellow);
  color: var(--color-navy);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.btn-primary:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Secondary — Outlined */
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}
.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
}

/* Navy button */
.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
}
.btn-navy:hover {
  background: transparent;
  color: var(--color-navy);
}

/* ------------------------------------------------------------
   6. NAVBAR
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-navy);
  padding-block: 1rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.navbar__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* Nav Links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.navbar__link {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Scrolled state — slightly darker shadow when user scrolls */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

/* Responsive Nav */
@media (max-width: 768px) {
  .navbar__toggle { display: flex; }

  .navbar__nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--color-navy-dark);
    padding: var(--space-sm);
    box-shadow: var(--shadow-md);
  }
  .navbar__nav.open { display: flex; }

  .navbar__link {
    padding: 0.75rem 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .navbar__link:last-child { border-bottom: none; }

  .btn.navbar__cta {
    margin-top: var(--space-xs);
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
  }
}

/* ------------------------------------------------------------
   7. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,20,40,0.92) 0%, rgba(0,31,63,0.85) 60%, rgba(0,31,63,0.7) 100%);
  padding-top: 100px; /* offset fixed navbar */
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.hero__content {
  max-width: 720px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  color: var(--color-gold);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.hero__title span { color: var(--color-yellow); }
.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-lg);
  max-width: 580px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}
.hero__phone {
  color: var(--color-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.hero__phone:hover { color: var(--color-gold); }

/* Stats bar */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
}
.hero__stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* ------------------------------------------------------------
   8. SECTION HEADERS
   ------------------------------------------------------------ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.section-header p {
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  margin-bottom: 0;
}
.section-header--light p { color: rgba(255,255,255,0.75); }
.section-header--light h2 { color: var(--color-white); }

/* Gold divider line */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-yellow));
  border-radius: 3px;
  margin: var(--space-sm) auto var(--space-sm);
}

/* ------------------------------------------------------------
   9. SERVICE CARDS
   ------------------------------------------------------------ */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-grey);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-bottom-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,31,63,0.08), rgba(212,175,55,0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.6rem;
  color: var(--color-navy);
}
.service-card h3 { margin-bottom: var(--space-xs); }
.service-card p  {
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: var(--space-md);
}
.service-card .card-link {
  color: var(--color-navy);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.service-card .card-link:hover { color: var(--color-gold); gap: 0.7rem; }

/* ------------------------------------------------------------
   10. HOW IT WORKS
   ------------------------------------------------------------ */
.step-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
}
.step-card__number {
  width: 72px;
  height: 72px;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 16px rgba(255,215,0,0.4);
}
.step-card h3 { color: var(--color-white); margin-bottom: var(--space-xs); }
.step-card p  { color: rgba(255,255,255,0.75); margin-bottom: 0; }

/* Connector lines between steps (desktop only) */
@media (min-width: 900px) {
  .steps-grid { position: relative; }
  .steps-grid .step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 36px;
    right: -20px;
    font-size: 1.5rem;
    color: var(--color-gold);
  }
}

/* ------------------------------------------------------------
   11. TESTIMONIALS
   ------------------------------------------------------------ */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-gold);
}
.testimonial-card__stars {
  color: var(--color-yellow);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  letter-spacing: 2px;
}
.testimonial-card__body {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.testimonial-card__author {
  font-weight: 700;
  color: var(--color-navy);
  font-size: var(--fs-sm);
}
.testimonial-card__location {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   12. CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
  padding-block: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.12) 0%, transparent 60%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--color-white); margin-bottom: var(--space-sm); }
.cta-banner p  { color: rgba(255,255,255,0.78); margin-bottom: var(--space-lg); font-size: var(--fs-md); }

/* ------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.8);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: var(--space-xs);
}
.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-block: var(--space-xs) var(--space-md);
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition);
  font-size: 0.9rem;
}
.footer__social a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--color-gold); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
}
.footer__contact-item i {
  color: var(--color-gold);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ------------------------------------------------------------
   14. PAGE HERO (inner pages)
   ------------------------------------------------------------ */
.page-hero {
  background:
    linear-gradient(135deg, rgba(0,20,40,0.93) 0%, rgba(0,31,63,0.88) 100%),
    url('../images/friendly-cleaner-liverpool-contact.png') center/cover no-repeat;
  padding-block: 140px var(--space-2xl);
  text-align: center;
  color: var(--color-white);
}
.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-sm); }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: var(--fs-md); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--color-gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--color-yellow); }

/* ------------------------------------------------------------
   15. SERVICES PAGE — Detailed panels
   ------------------------------------------------------------ */
.service-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-xl);
}
.service-panel--reverse { direction: rtl; }
.service-panel--reverse > * { direction: ltr; }

.service-panel__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-light-grey);
}
.service-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-panel__image:hover img { transform: scale(1.04); }

.service-panel__body .eyebrow { margin-bottom: var(--space-xs); }
.service-panel__body h2 { margin-bottom: var(--space-sm); }
.service-panel__body p  { color: var(--color-text-muted); }

.service-includes {
  margin-block: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--color-text);
}
.service-includes li i {
  color: var(--color-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-panel          { grid-template-columns: 1fr; }
  .service-panel--reverse { direction: ltr; }
}

/* ------------------------------------------------------------
   16. ABOUT PAGE
   ------------------------------------------------------------ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  background: var(--color-light-grey);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.value-card {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.value-card h4 { margin-bottom: 4px; color: var(--color-navy); }
.value-card p  { color: var(--color-text-muted); font-size: var(--fs-sm); margin-bottom: 0; }

/* Areas coverage tags */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.area-tag {
  background: rgba(0,31,63,0.08);
  border: 1px solid rgba(0,31,63,0.15);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-navy);
  transition: var(--transition);
}
.area-tag:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* ------------------------------------------------------------
   17. CONTACT PAGE
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Contact page — mobile fixes */
@media (max-width: 600px) {
  .contact-info-card {
    padding: var(--space-md);
  }
  .contact-detail {
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
  }
  .contact-detail__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  .contact-detail__value {
    font-size: var(--fs-base);
    word-break: break-word;
  }
  .contact-detail__value a {
    word-break: break-all;
  }
  .contact-form-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  .map-placeholder {
    height: 160px;
  }
}

.contact-info-card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-white);
}
.contact-info-card h3 { color: var(--color-white); margin-bottom: var(--space-md); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.contact-detail__value {
  font-weight: 600;
  color: var(--color-white);
  font-size: var(--fs-md);
  margin-bottom: 0;
}
.contact-detail__value a { transition: var(--transition); }
.contact-detail__value a:hover { color: var(--color-yellow); }

/* Map placeholder */
.map-placeholder {
  background: var(--color-light-grey);
  border-radius: var(--radius-md);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  border: 2px dashed var(--color-gold);
  color: var(--color-navy);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.map-placeholder i { font-size: 2rem; color: var(--color-gold); }

/* Contact form */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-grey);
}
.contact-form-card h3 { margin-bottom: var(--space-md); }

.form-group {
  margin-bottom: var(--space-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23001f3f' d='M8 11L2 5h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; }

/* ------------------------------------------------------------
   18. TRUST BADGES / ICON STRIP
   ------------------------------------------------------------ */
.trust-strip {
  background: var(--color-off-white);
  padding-block: var(--space-lg);
  border-top: 1px solid var(--color-light-grey);
  border-bottom: 1px solid var(--color-light-grey);
}
.trust-strip__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-navy);
}
.trust-item i { color: var(--color-gold); font-size: 1.2rem; }

/* ------------------------------------------------------------
   19. PRICING HINT CARDS
   ------------------------------------------------------------ */
.price-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-light-grey);
  transition: var(--transition);
}
.price-card--featured {
  border-color: var(--color-gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}
.price-card__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}
.price-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}
.price-card__price sup {
  font-size: 0.5em;
  vertical-align: top;
  margin-top: 0.3em;
}
.price-card__from {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.price-card ul {
  text-align: left;
  margin-bottom: var(--space-md);
}
.price-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  padding-block: 0.3rem;
  border-bottom: 1px solid var(--color-light-grey);
  color: var(--color-text);
}
.price-card li:last-child { border-bottom: none; }
.price-card li i { color: var(--color-gold); font-size: 0.8rem; }

/* ------------------------------------------------------------
   20. NAVBAR DROPDOWN
   ------------------------------------------------------------ */

/* Wrapper for the dropdown item */
.navbar__dropdown-wrap {
  position: relative;
}

/* The toggle button inherits .navbar__link styles */
.navbar__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.navbar__dropdown-toggle .fa-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}
.navbar__dropdown-wrap:hover .fa-chevron-down,
.navbar__dropdown-wrap.open  .fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown panel */
.navbar__dropdown {
  position: absolute;
  /* top: 100% means the panel starts right at the bottom edge of the
     trigger — no gap, so the mouse never exits the hover zone.
     The visual spacing comes from padding-top on the panel itself. */
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 248px;
  /* padding-top creates the visual gap while keeping it inside
     the hover/pointer target so the menu never flickers closed */
  padding: 14px 0 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  border-top: 3px solid var(--color-gold);
  z-index: 200;
}

/* Open state — triggered by CSS :hover OR JS .open class (click) */
.navbar__dropdown-wrap:hover .navbar__dropdown,
.navbar__dropdown-wrap.open  .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Individual dropdown links */
.navbar__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.2rem;
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.navbar__dropdown-link:hover {
  background: rgba(0, 31, 63, 0.05);
  color: var(--color-navy);
  padding-left: 1.6rem;
}
.navbar__dropdown-link i {
  color: var(--color-gold);
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Thin divider line */
.navbar__dropdown-divider {
  height: 1px;
  background: var(--color-light-grey);
  margin: 5px 0;
}

/* ---- Mobile overrides ---- */
@media (max-width: 768px) {
  .navbar__dropdown-wrap { width: 100%; }

  .navbar__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
  }
  .navbar__dropdown-toggle:hover { color: var(--color-gold); }

  /* Reset to static positioning on mobile */
  .navbar__dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--color-gold);
    border-radius: 0;
    min-width: unset;
    display: none;
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 0;
  }
  .navbar__dropdown-wrap.open .navbar__dropdown { display: block; }

  .navbar__dropdown-link {
    color: rgba(255,255,255,0.78);
    padding: 0.5rem 1.6rem;
  }
  .navbar__dropdown-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--color-gold);
    padding-left: 2rem;
  }
}

/* ------------------------------------------------------------
   21. SCROLL ANIMATIONS (subtle fade-in)
   ------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   22. MISC UTILITIES
   ------------------------------------------------------------ */
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-0   { margin-bottom: 0; }
.w-full { width: 100%; }

/* ------------------------------------------------------------
   23. MOBILE RESPONSIVE — Global & Contact Page
   ------------------------------------------------------------ */

/* Reduce section padding on small screens */
@media (max-width: 768px) {
  .section {
    padding-block: var(--space-xl);
  }
  .page-hero {
    padding-block: 110px var(--space-xl);
  }
}
@media (max-width: 480px) {
  .section {
    padding-block: var(--space-lg);
  }
  .page-hero {
    padding-block: 100px var(--space-lg);
  }
  /* Prevent buttons overflowing their containers */
  .btn {
    white-space: normal;
    text-align: center;
  }
  /* Full-width buttons stack nicely */
  .cta-banner .btn,
  .flex-center .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Contact page — full mobile fix */
@media (max-width: 768px) {
  /* Form card — remove heavy shadow & shrink padding */
  .contact-form-card {
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
  }
  /* Info card */
  .contact-info-card {
    padding: var(--space-md);
  }
  /* Contact details — tighter spacing */
  .contact-detail {
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
  }
  .contact-detail__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 0.85rem;
  }
  .contact-detail__label {
    font-size: 0.65rem;
  }
  .contact-detail__value {
    font-size: var(--fs-base);
    word-break: break-word;
  }
  /* Prevent long email/URL overflowing */
  .contact-detail__value a {
    word-break: break-all;
  }
  /* Map placeholder shorter on mobile */
  .map-placeholder {
    height: 150px;
  }
  /* Tap-to-call button full width */
  .contact-info-card .btn {
    width: 100%;
    justify-content: center;
  }
  /* Form inputs comfortable touch targets */
  input,
  select,
  textarea {
    font-size: 1rem; /* Prevents iOS auto-zoom on focus */
    padding: 0.85rem 0.9rem;
  }
  /* Submit button full width */
  #submitBtn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }
}
