/* =============================================
   Krystal Klear Car Detailing — style.css
   Mobile-first · CSS custom properties
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --color-bg-dark:      #0A1628;
  --color-bg-mid:       #112240;
  --color-bg-light:     #F5F7FA;
  --color-brand:        #0D7E7E;
  --color-brand-light:  #10A8A8;
  --color-accent:       #E8A020;
  --color-accent-dark:  #C48516;
  --color-text-primary: #FFFFFF;
  --color-text-dark:    #1A1A2E;
  --color-text-muted:   #94A3B8;
  --color-border:       rgba(255, 255, 255, 0.08);
  --font-display:       'Oswald', sans-serif;
  --font-body:          'DM Sans', sans-serif;
  --radius:             8px;
  --radius-lg:          16px;
  --shadow:             0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg:          0 8px 48px rgba(0, 0, 0, 0.4);
  --transition:         0.25s ease;
  --max-width:          1200px;
  --header-height:      72px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: inherit;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section--dark { background-color: var(--color-bg-dark); }
.section--mid  { background-color: var(--color-bg-mid); }
.section--light { background-color: var(--color-bg-light); }

/* ===== TYPOGRAPHY UTILITIES ===== */
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section__sub {
  font-size: 1rem;
  text-align: center;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.text-dark { color: var(--color-text-dark); }
.text-muted-dark { color: #4A5568; }

.section__sub a {
  color: var(--color-brand);
  text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn--accent {
  background-color: var(--color-accent);
  color: #0A1628;
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn--brand {
  background-color: var(--color-brand);
  color: white;
  border-color: var(--color-brand);
}
.btn--brand:hover {
  background-color: var(--color-brand-light);
  border-color: var(--color-brand-light);
  box-shadow: 0 4px 16px rgba(13, 126, 126, 0.4);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn--full { width: 100%; }


/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: transparent;
  transition: background-color var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background-color: rgba(10, 22, 40, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 1rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: white;
  text-transform: uppercase;
  line-height: 1;
}

.nav__logo-text span { color: var(--color-brand); }

/* Desktop links — hidden on mobile */
.nav__links {
  display: none;
  margin-left: auto;
  gap: 0.125rem;
}

.nav__links a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  transition: color var(--transition), background-color var(--transition);
}

.nav__links a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Desktop CTA — hidden on mobile */
.nav__cta {
  display: none;
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg-dark);
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid var(--color-border);
  overflow-y: auto;
  z-index: 899;
}

.nav__mobile-overlay.open { display: block; }

.nav__mobile-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__mobile-overlay a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  transition: background-color var(--transition), color var(--transition);
}

.nav__mobile-overlay a:hover {
  background-color: rgba(255, 255, 255, 0.07);
  color: white;
}

.nav__mobile-overlay .btn {
  margin-top: 0.75rem;
  justify-content: center;
}

.nav__mobile-phone {
  display: block;
  text-align: center;
  color: var(--color-text-muted) !important;
  font-size: 0.95rem !important;
  margin-top: 0.25rem;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Fallback gradient when image is missing */
  background-color: #08111F;
  background-image: linear-gradient(160deg, #0d2444 0%, #0a3d3d 60%, #071520 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.72) 55%,
    rgba(13, 80, 80, 0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-light);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(13, 168, 168, 0.3);
  border-radius: 999px;
  background-color: rgba(13, 126, 126, 0.1);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  max-width: 760px;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.175rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__badges span {
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.04);
}


/* ===== WHY SECTION ===== */
.why {
  background-color: var(--color-bg-light);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why__card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.why__icon {
  width: 56px;
  height: 56px;
  background-color: rgba(13, 126, 126, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-brand);
}

.why__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why__card p {
  font-size: 0.925rem;
  color: #4A5568;
  line-height: 1.65;
}


/* ===== SERVICES SECTION ===== */
.services__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.55rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: var(--color-brand);
  color: white;
}

.tab-btn.active {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
  color: white;
}

.services__panel { display: none; }
.services__panel.active { display: block; }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.service-card {
  position: relative;
  background-color: var(--color-bg-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(13, 126, 126, 0.5);
  transform: translateY(-2px);
}

.service-card--featured {
  border-color: rgba(232, 160, 32, 0.35);
}

.service-card--featured:hover {
  border-color: var(--color-accent);
}

.service-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 1.25rem;
  background-color: var(--color-brand);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.service-card__badge--featured {
  background-color: var(--color-accent);
  color: #0A1628;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex-grow: 1;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.01em;
}


/* ===== ADD-ONS ===== */
.addons {
  padding-top: 0.5rem;
}

.addons__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 1.25rem;
}

.addons__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.addon-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background-color: rgba(17, 34, 64, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.85rem;
  transition: border-color var(--transition);
}

.addon-pill:hover { border-color: rgba(13, 126, 126, 0.4); }
.addon-pill span  { color: var(--color-text-muted); }
.addon-pill strong { color: var(--color-accent); font-weight: 600; }

.addons__specialty {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2.25rem;
}

.addons__specialty a {
  color: var(--color-brand);
  text-decoration: underline;
}

/* Discount banner */
.discount-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}

.discount-banner svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-accent);
}

.discount-banner strong {
  color: var(--color-accent);
  font-weight: 700;
}


/* ===== HOW IT WORKS ===== */
.hiw__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hiw__step {
  text-align: center;
  max-width: 260px;
}

.hiw__step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(13, 126, 126, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hiw__step-icon {
  width: 68px;
  height: 68px;
  background-color: rgba(13, 126, 126, 0.12);
  border: 1px solid rgba(13, 126, 126, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-brand);
}

.hiw__step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hiw__step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.hiw__connector {
  display: none;
  color: var(--color-brand);
  opacity: 0.4;
  flex-shrink: 0;
}


/* ===== GALLERY ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background-color: var(--color-bg-mid);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__label {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery__label--before {
  background-color: rgba(71, 85, 105, 0.92);
  color: white;
}

.gallery__label--after {
  background-color: rgba(13, 126, 126, 0.92);
  color: white;
}

.gallery__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.gallery__note a {
  color: var(--color-brand);
  text-decoration: underline;
}


/* ===== SERVICE AREA ===== */
.area {
  background-color: var(--color-bg-light);
}

.area__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.area__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1 1 auto;
}

.area__map iframe { display: block; }

.area__cities h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.area__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.area__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #4A5568;
}

.area__list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-brand);
  flex-shrink: 0;
}

.area__radius {
  font-size: 0.875rem;
  color: #718096;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}


/* ===== CONTACT SECTION ===== */
.contact__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Form */
.contact__form {
  background-color: var(--color-bg-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row--two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
}

.form__required { color: var(--color-accent); }
.form__optional { color: var(--color-text-muted); font-weight: 400; font-size: 0.8em; }

.form__group input,
.form__group select,
.form__group textarea {
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: white;
  font-size: 0.95rem;
  transition: border-color var(--transition), background-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  background-color: rgba(13, 126, 126, 0.07);
}

.form__group input.invalid,
.form__group select.invalid,
.form__group textarea.invalid {
  border-color: #ef4444;
}

/* Custom select arrow */
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__group select option {
  background-color: #112240;
  color: white;
}

.form__group textarea {
  resize: vertical;
  min-height: 108px;
}

/* Form feedback */
.form__result {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.925rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.form__result.success {
  background-color: rgba(13, 126, 126, 0.12);
  border: 1px solid rgba(13, 126, 126, 0.5);
  color: #5eead4;
}

.form__result.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

/* Contact info sidebar */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__info-item svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--color-brand);
}

.contact__info-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact__info-item strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.contact__info-item a,
.contact__info-item span {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.contact__info-item a:hover { color: var(--color-brand); }

.contact__payment-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.contact__payment-icons {
  display: flex;
  gap: 0.75rem;
}

.payment-badge {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.contact__cancellation {
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact__cancellation strong {
  color: rgba(255, 255, 255, 0.65);
}


/* ===== FAQ ===== */
.faq {
  background-color: var(--color-bg-light);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.faq__item {
  background-color: white;
  border-bottom: 1px solid #EDF2F7;
}

.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  line-height: 1.4;
}

.faq__question:hover {
  background-color: #F7FAFC;
  color: var(--color-brand);
}

.faq__question[aria-expanded="true"] {
  color: var(--color-brand);
  background-color: rgba(13, 126, 126, 0.03);
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--color-brand);
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.75;
}

.faq__answer a {
  color: var(--color-brand);
  text-decoration: underline;
}


/* ===== FOOTER ===== */
.footer {
  background-color: #060E1A;
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 0 1.75rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin: 0.875rem 0 1.25rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer__logo img { height: 34px; }

.footer__social {
  display: flex;
  gap: 0.625rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
  text-decoration: none;
}

.footer__social a:hover {
  color: var(--color-brand);
  border-color: rgba(13, 126, 126, 0.4);
  background-color: rgba(13, 126, 126, 0.06);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.footer__links a:hover { color: white; }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.footer__contact a:hover { color: white; }

.footer__contact p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}


/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
}

.lightbox[hidden] { display: none; }

.lightbox__img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: default;
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.lightbox__close:hover { background-color: rgba(255, 255, 255, 0.22); }


/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* ===== TABLET — 640px ===== */
@media (min-width: 640px) {
  .container { padding: 0 2rem; }

  .section { padding: 5.5rem 0; }

  .hero__cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

  .form__row--two {
    grid-template-columns: 1fr 1fr;
  }

  .hiw__steps {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }

  .hiw__connector {
    display: flex;
    align-items: center;
    padding-top: 2.75rem;
    flex-shrink: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

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

  .contact__form {
    padding: 2.25rem 2rem;
  }
}

/* ===== DESKTOP — 1024px ===== */
@media (min-width: 1024px) {
  /* Show desktop nav */
  .nav__links {
    display: flex;
    margin-left: auto;
  }

  .nav__cta {
    display: inline-flex;
    margin-left: 0.25rem;
  }

  .nav__hamburger { display: none; }

  /* Sections */
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Service area */
  .area__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .area__map { flex: 1.5; }
  .area__cities { flex: 1; }

  /* Contact */
  .contact__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .contact__form {
    flex: 1.25;
  }

  .contact__info {
    flex: 0 0 300px;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1.75fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


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

:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: 2px;
}
