/* =============================================
   Taxi Delmotte — Stylesheet
   ============================================= */

:root {
  /*--color-primary: #1a2332;*/
  --color-primary: #000000;
  --color-primary-light: #2d3a4f;
  /*--color-accent: #f5c518;*/
  --color-accent: rgb(250, 146, 1);
  /*--color-accent-hover: #e0b010;*/
  --color-accent-hover: #fdb45a;
  --color-white: #ffffff;
  --color-gray-50: #f8f9fa;
  --color-gray-100: #eef0f2;
  --color-gray-200: #dde1e6;
  --color-gray-400: #9aa0a8;
  --color-gray-600: #5a6270;
  --color-gray-800: #2c3340;
  --color-success: #22c55e;
  --color-logo: #009D18;
  --color-form: #022708;
 /*--font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;*/
  --font-sans: 'Georgia', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color:#eee;
  /*background:#f5c518;*/
  background: linear-gradient(180deg, #e1921b 0%, #ffe499 25%,#8d5a1b, #e7aa51 75%, #ac7031 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  background: linear-gradient(180deg, #e1921b 0%, #ffe499 25%,#8d5a1b, #e7aa51 75%, #ac7031 100%);
  padding: 4rem 0;
}

.section--gray {
  background: linear-gradient(180deg, #e1921b 0%, #ffe499 25%,#8d5a1b, #e7aa51 75%, #ac7031 100%);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__header p {
  color: var(--color-gray-600);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--dark:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-logo);
  flex-shrink: 0;
}

.logo__icon {
  width: 42px;
  height: 42px;
  background: var(--color-logo);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo__text span {
  color: var(--color-accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  box-shadow: 0 8px 18px rgba(250, 146, 1, 0.28);
  transform: translateY(-1px);
}

.nav__cta {
  margin-left: 0.35rem;
}

.nav__cta .btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  box-shadow: none;
  white-space: nowrap;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  cursor: pointer;
  padding: 0.7rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  filter: brightness(1.15) saturate(1.15);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 88% 12%, rgba(250, 146, 1, 0.24) 0%, transparent 42%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.48) 32%, rgba(0, 0, 0, 0.24) 60%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 32%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__panel {
  position: relative;
  max-width: 660px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-white);
  background: rgba(68, 68, 68, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(0px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.hero__badge {
  display: inline-block;
  background: rgba(245, 197, 24, 0.2);
  color: var(--color-accent);
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero h1 .hero__brand-name {
  color: var(--color-white);
  font-family: 'Serif';
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.hero__phone-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero__phone a {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.hero__stat span {
  font-size: 0.875rem;
  opacity: 0.75;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: 8rem 0 4rem;
  color: var(--color-white);
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-hero-feins,
.page-hero-brece {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 8rem 0 4rem;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.page-hero-feins {
  background-image: url('../assets/Medical.jpg');
}

.page-hero-brece {
  background-image: url('../assets/CarteBrece.png');
}

.page-hero-feins::before,
.page-hero-brece::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.page-hero-feins .container,
.page-hero-brece .container {
  position: relative;
  z-index: 1;
}

.page-hero-feins .breadcrumb,
.page-hero-brece .breadcrumb {
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero-feins h1,
.page-hero-brece h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55);
}

.page-hero-feins p,
.page-hero-brece p {
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

/* ---- Cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 197, 24, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card__image {
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: var(--color-white);
}

.card h3 {
  margin-bottom: 0.625rem;
}

.card p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.925rem;
  transition: color var(--transition);
}

.card__link:hover {
  color: var(--color-accent-hover);
}

/* Zone cards */
.zone-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--color-primary);
  color: var(--color-white);
  transition: transform var(--transition);
}

.zone-card:hover {
  transform: scale(1.02);
}

.zone-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.4) 100%);
  z-index: 1;
}

.zone-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.zone-card__tag {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.zone-card h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.zone-card p {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ---- Features list ---- */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-100);
}

.feature-item__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 700;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin: 0;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--color-white);
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-side .contact-info__item {
  margin-bottom: 0;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 197, 24, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__item h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-400);
  margin-bottom: 0.25rem;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
}

.contact-info__item a:hover {
  color: var(--color-accent-hover);
}

.service-map {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 0 0 1.75rem;
  overflow: hidden;
}

.service-map__header {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1rem;
}

.service-map__header h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-400);
  margin-bottom: 0.25rem;
}

.service-map__header p {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.service-map__canvas {
  width: 100%;
  height: 320px;
  background: var(--color-gray-100);
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
  z-index: 1;
}

.service-map__note {
  color: var(--color-gray-600);
  font-size: 0.9rem;
  margin: 0;
  padding: 0.9rem 1.25rem 1.1rem;
}

.form {
  background: var(--color-form);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-form);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__title {
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.form__group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.form__group label .required {
  color: #ef4444;
  font-size: 1.05rem;
  font-weight: 800;
  margin-left: 0.15rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--color-white);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__note {
  font-size: 0.8rem;
  color: var(--color-gray-400);
  margin-top: 1rem;
}

.form__status {
  display: none;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  font-weight: 600;
}

.form__status--success,
.form__status--error {
  display: block;
}

.form__status--success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form__status--error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-white);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: background var(--transition);
}

.faq-item__question:hover {
  background: var(--color-gray-50);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition);
  margin-left: 1rem;
}

.faq-item--open .faq-item__icon {
  background: var(--color-accent);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ---- Content blocks (inner pages) ---- */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-block--reverse {
  direction: rtl;
}

.content-block--reverse > * {
  direction: ltr;
}

.content-block__text h2 {
  margin-bottom: 1rem;
}

.content-block__text p {
  color: var(--color-gray-800);
  margin-bottom: 1rem;
}

.partner-link {
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.partner-link:hover {
  color: #1d4ed8;
}

.content-block__visual {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--color-white);
  text-align: center;
}

.content-block__visual--moulin {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(0, 0, 0, 0.05) 28%, rgba(0, 0, 0, 0.6) 68%, rgba(0, 0, 0, 0.92) 100%),
    url('../assets/Moulin4.png') center / cover no-repeat;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.content-block__visual--retro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(0, 0, 0, 0.05) 28%, rgba(0, 0, 0, 0.6) 68%, rgba(0, 0, 0, 0.92) 100%),
    url('../assets/Retro.jpg') center / cover no-repeat;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.content-block__visual-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.content-block__visual h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.content-block__visual p {
  opacity: 0.85;
}

.municipality-link {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.7rem;
  color: #ffffff;
  background: #2563eb;
  border-radius: 999px;
  font-weight: 700;
  opacity: 1;
  transition: background var(--transition), transform var(--transition);
}

.municipality-link:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Destinations list */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.destination {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-100);
  color: var(--color-primary);
  font-weight: 700;
  transition: all var(--transition);
}

.destination:hover {
  border-color: var(--color-accent);
  background: rgba(245, 197, 24, 0.05);
}

.destination__icon {
  font-size: 1.25rem;
}

/* ---- Legal page ---- */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--color-gray-600);
}

.legal-content a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand .logo {
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.925rem;
  line-height: 1.7;
  opacity: 0.75;
}

.footer h4 {
  color: var(--color-white);
  font-size: 0.925rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.625rem;
}

.footer__links a {
  font-size: 0.925rem;
  opacity: 0.75;
  transition: all var(--transition);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  opacity: 0.6;
}

.footer__bottom a {
  color: var(--color-white);
  font-weight: 700;
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--color-accent);
}

.footer__seo {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 1rem;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .header__inner {
    min-height: 72px;
  }

  .nav__link {
    padding: 0.6rem 0.75rem;
    font-size: 0.88rem;
  }

  .nav__cta .btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }

  .content-block {
    grid-template-columns: 1fr;
  }

  .content-block--reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 84px;
    left: 1rem;
    right: 1rem;
    margin-left: 0;
    background: rgba(10, 10, 10, 0.96);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.5rem;
    border-radius: 22px;
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    width: 100%;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    text-align: center;
  }

  .nav__cta {
    margin-left: 0;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav__cta .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 3rem;
  }

  .hero__panel {
    max-width: none;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
