/* ===== Variables ===== */
:root {
  --navy: #ffffff; /* Inverted for dark theme: white text */
  --navy-light: #f8fafc;
  --gold: #c5a059;
  --gold-light: #d4b06a;
  --white: #0a152f; /* Deep Navy Background (Lacivert) */
  --gray-50: #112044; /* Card Backgrounds */
  --gray-100: #1c2e5a; /* Hover Backgrounds */
  --gray-200: rgba(255, 255, 255, 0.1); /* Borders */
  --gray-400: #94a3b8;
  --gray-500: #cbd5e1;
  --gray-600: #cbd5e1; /* Muted Text */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --header-h: 72px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ===== Utilities ===== */
.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.label--light { color: var(--gold); }

.text-gold { color: var(--gold); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover { background: var(--navy-light); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--full { width: 100%; }

/* ===== Form toast ===== */
.form-toast {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: toastIn 0.35s ease;
}
.form-toast--success {
  background: var(--navy);
  color: var(--white);
}
.form-toast--error {
  background: #991b1b;
  color: var(--white);
}
.form-toast__close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.8;
  cursor: pointer;
}
.form-toast__close:hover { opacity: 1; }
@keyframes toastIn {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== Header ===== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  padding: 8px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: flex-end;
}
.top-bar__contact {
  display: flex;
  gap: 24px;
}
.top-bar__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: color 0.2s;
}
.top-bar__contact a:hover {
  color: var(--gold);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.logo__text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-h);
}
.has-dropdown {
  cursor: pointer;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--gold); }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav__dropdown a:hover {
  background: var(--gray-50);
  color: var(--gold);
}
.mega-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  min-width: 500px;
  padding: 24px;
}
.header__cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 21, 47, 0.95) 0%,
    rgba(10, 21, 47, 0.85) 45%,
    rgba(10, 21, 47, 0.4) 100%
  );
}
.hero__inner--flex {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero__content {
  flex: 1;
  max-width: 650px;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__bullets {
  margin-bottom: 40px;
}
.hero__bullets li {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.hero__bullets svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.trust-google { font-weight: 800; font-size: 1.1rem; }
.stars { color: #FBBC05; font-size: 1.3rem; letter-spacing: 2px; }
.reviews { color: var(--gray-500); }

.hero__quick-quote {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.hero__quick-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold);
}
.hero__quick-quote h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--navy);
  text-align: center;
}
.qq-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.qq-inputs input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  background: var(--gray-50);
  transition: all 0.2s;
}
.qq-inputs input:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
}
.qq-btn {
  padding: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ===== Services ===== */
.services {
  padding: 80px 0 0;
}
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.services__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: color 0.2s;
}
.services__link:hover { color: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border: none;
}
.service-card {
  display: block;
  padding: 40px 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-5px);
  background: var(--gray-100);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.service-card__more {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover .service-card__more { opacity: 1; }
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Why Pegasus ===== */
.why {
  padding: 100px 0;
  background: var(--white);
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__image-wrap {
  position: relative;
}
.why__image {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.why__badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--gold);
  padding: 20px 24px;
  border-radius: 4px;
  max-width: 200px;
}
.why__badge-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.why__badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.4;
  margin-top: 6px;
  display: block;
}
.why__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.why__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}
.why__feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.why__feature p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Montage ===== */
.montage {
  background: var(--white);
}
.montage__hero {
  background: var(--navy);
  text-align: center;
  padding: 80px 24px;
}
.montage__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.montage__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.montage__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
}
.montage-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.montage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.montage-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
}
.montage-card__overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.montage-card__overlay p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ===== Fleet ===== */
.fleet {
  padding: 100px 0;
  background: var(--white);
}
.fleet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fleet__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fleet__list li {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fleet__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.fleet__image-wrap {
  border-radius: 12px;
  overflow: hidden;
}
.fleet__image {
  width: 100%;
  border-radius: 12px;
}

/* ===== Deutschlandweit ===== */
.coverage {
  padding: 80px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.coverage__inner {
  text-align: center;
}
.coverage__lead {
  margin: 0 auto 40px;
  max-width: 680px;
}
.coverage__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.coverage__cities span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
}
.coverage__note {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact__details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact__icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-600);
}
.contact__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.contact__item a,
.contact__item span:not(.contact__label) {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.contact__item a:hover { color: var(--gold); }

.contact__form {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact__form .btn { margin-top: 8px; }

/* ===== Footer ===== */
.footer {
  background: var(--white); /* var(--white) is deep navy in this theme */
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
  border-top: 1px solid var(--gray-200);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo-box {
  width: 88px;
  height: 88px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 20px;
}
.footer__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.footer__phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 8px;
}
.footer__col p {
  font-size: 0.875rem;
  margin-bottom: 6px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--white); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner,
  .fleet__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .why__badge { right: 16px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Service detail page ===== */
body:has(#serviceMain) {
  padding-top: var(--header-h);
}

.service-hero {
  padding: 48px 0 32px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.service-back {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 20px;
  transition: color 0.2s;
}
.service-back:hover { color: var(--gold); }
.service-hero__intro {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 720px;
  line-height: 1.75;
  margin-top: 8px;
}

.service-gallery {
  padding: 48px 0;
}
.service-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-gallery__grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.service-gallery__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100);
}
.service-gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}

.service-content {
  padding: 64px 0;
  background: var(--white);
}
.service-content__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.service-content__text h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.service-content__text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}
.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-highlights li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-highlights li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}
.service-content__cta {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: 12px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.service-content__cta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-content__cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-content__cta strong { color: var(--gold); }

.service-detail--error {
  padding: 120px 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .service-gallery__grid,
  .service-content__inner {
    grid-template-columns: 1fr;
  }
  .service-content__cta { position: static; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__item {
    height: auto;
    flex-direction: column;
    align-items: center; /* Center links in mobile menu */
    width: 100%;
  }
  .nav__item:hover .nav__dropdown {
    display: none; /* Disable hover opening on mobile */
  }
  .nav__item.dropdown-open .nav__dropdown {
    display: grid;
    position: static;
    background: rgba(255, 255, 255, 0.03); /* Slight background to distinguish */
    box-shadow: none;
    padding: 16px;
    margin-top: 12px;
    border-radius: 8px;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    min-width: 0;
    border: 1px solid var(--gray-200);
    animation: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .menu-toggle { display: flex; }
  .header__cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .montage__cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__buttons .btn { width: 100%; }
}

/* ===== Zig-Zag Services ===== */
.zig-zag {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.zz-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.zz-row:nth-child(even) {
  flex-direction: row-reverse;
}
.zz-content {
  flex: 1;
}
.zz-content h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--navy);
}
.zz-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.zz-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.zz-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .zz-row, .zz-row:nth-child(even) {
    flex-direction: column;
    gap: 32px;
  }
  .zz-image img {
    height: 300px;
  }
}

/* ===== Pricing ===== */
.pricing {
  padding: 80px 0;
  background: var(--white);
}
.pricing-modern {
  max-width: 600px;
  margin: 0 auto;
}
.ps-dropdown {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 24px;
}
.ps-dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  transition: background 0.2s;
}
.ps-dropdown__header:hover {
  background: var(--gray-100);
}
.ps-dropdown__header svg {
  transition: transform 0.3s;
  color: var(--gold);
}
.ps-dropdown.open .ps-dropdown__header svg {
  transform: rotate(180deg);
}
.ps-dropdown__list {
  display: none;
  max-height: 350px;
  overflow-y: auto;
  border-top: 1px solid var(--gray-200);
}
.ps-dropdown.open .ps-dropdown__list {
  display: block;
}
.ps-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
}
.ps-item:last-child {
  border-bottom: none;
}
.ps-item:hover {
  background: var(--gray-100);
}
.ps-cb {
  margin-right: 14px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}
.ps-name {
  flex: 1;
  font-weight: 500;
  color: var(--navy);
}
.ps-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}
.ps-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.ps-summary h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ps-summary__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.ps-summary__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--gray-400);
}
.ps-summary__list li span {
  color: var(--navy);
  font-weight: 600;
}
.ps-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 10px;
}
.ps-summary__total span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  font-weight: 600;
}
.ps-summary__total strong {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 800;
}

/* ===== Partners ===== */
.partners {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.partners__inner {
  text-align: center;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.partner-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 24px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  min-height: 80px;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
