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

:root {
  --navy:   #0f2d5c;
  --navy2:  #1a4080;
  --amber:  #d4a843;
  --amber2: #e8bf5a;
  --sea:    #3a7bd5;
  --sea2:   #2563b8;
  --sea-lt: #ebf3ff;
  --white:  #ffffff;
  --bg:     #f5f8fc;
  --text:   #1a1a2e;
  --muted:  #6b7a8d;
  --card:   #ffffff;
  --border: #dde4ef;
  --r:      16px;
  --shadow: 0 4px 24px rgba(15,45,92,.10);
  --shadow-lg: 0 12px 48px rgba(15,45,92,.18);
  --ease: cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ========= SCROLL PROGRESS ========= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--sea));
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ========= TYPOGRAPHY ========= */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.3rem); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sea-lt); color: var(--sea2);
  font-size: .78rem; font-weight: 700;
  padding: 6px 16px; border-radius: 30px;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title { color: var(--navy); margin-bottom: .5rem; }
.section-sub   { color: var(--muted); margin-bottom: 3rem; font-size: 1.05rem; }

/* ========= UTILITIES ========= */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-alt { background: var(--bg); }
.text-center { text-align: center; }

/* ========= REVEAL ANIMATIONS ========= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.visible    { opacity: 1; transform: none; }

.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: .0s; opacity:1; transform:none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .1s; opacity:1; transform:none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .2s; opacity:1; transform:none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .3s; opacity:1; transform:none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: .4s; opacity:1; transform:none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: .5s; opacity:1; transform:none; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all .28s var(--ease);
  border: none; position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .25s;
}
.btn:hover::after { background: rgba(255,255,255,.12); }

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, #e8a020 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212,168,67,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,168,67,.5);
}

.btn-outline {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ========= HEADER / NAV ========= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
  display: flex; align-items: center; gap: 11px;
  font-weight: 800; font-size: 1.15rem;
  color: var(--white);
  transition: color .3s;
}
.site-header.scrolled .logo { color: var(--navy); }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--amber) 0%, #e8a020 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(212,168,67,.4);
  transition: transform .3s var(--ease);
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.08); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,.85); font-weight: 500; font-size: .95rem;
  transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--amber);
  transform: scaleX(0); transition: transform .25s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--amber); }
.site-header.scrolled .nav-links a { color: var(--navy); }
.site-header.scrolled .nav-links a:hover { color: var(--sea); }
.site-header.scrolled .nav-links a::after { background: var(--sea); }

.nav-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-weight: 700; font-size: 1rem;
  transition: all .3s; padding: 8px 16px;
  border: 1.5px solid rgba(255,255,255,.3); border-radius: 30px;
}
.nav-phone:hover { background: rgba(255,255,255,.15); }
.site-header.scrolled .nav-phone { color: var(--navy); border-color: var(--border); }
.site-header.scrolled .nav-phone:hover { background: var(--bg); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; border-radius: 2px; }
.site-header.scrolled .burger span { background: var(--navy); }

/* ========= HERO ========= */
.hero {
  position: relative; min-height: 72vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center 60%;
  opacity: .55;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,28,68,.78) 0%, rgba(15,45,92,.5) 55%, rgba(30,80,160,.25) 100%);
}
/* Animated waves at bottom */
.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px; overflow: hidden;
}
.hero-waves svg { position: absolute; bottom: 0; width: 200%; animation: waveMove 8s linear infinite; }
.hero-waves svg:nth-child(2) { opacity: .4; animation-delay: -4s; animation-duration: 12s; }
@keyframes waveMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 130px 24px 100px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,.18); border: 1px solid rgba(212,168,67,.4);
  color: var(--amber); padding: 7px 18px; border-radius: 30px;
  font-size: .85rem; font-weight: 600; margin-bottom: 28px;
  letter-spacing: .04em;
  animation: badgePop .8s var(--ease) both;
}
@keyframes badgePop {
  from { opacity: 0; transform: translateY(-12px) scale(.9); }
  to   { opacity: 1; transform: none; }
}

.hero h1 {
  color: var(--white); margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  animation: heroTitle .9s var(--ease) .2s both;
}
@keyframes heroTitle {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero h1 span { color: var(--amber); }

.hero-sub {
  color: rgba(255,255,255,.88); font-size: 1.15rem;
  margin-bottom: 40px; max-width: 560px; line-height: 1.7;
  animation: heroTitle .9s var(--ease) .35s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px;
  animation: heroTitle .9s var(--ease) .5s both;
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 40px;
  animation: heroTitle .9s var(--ease) .65s both;
}
.hero-stat { color: var(--white); }
.hero-stat strong {
  display: block; font-size: 2.2rem; font-weight: 800;
  color: var(--amber); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat span { font-size: .85rem; opacity: .7; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: .78rem; z-index: 2;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%      { transform: translateX(-50%) translateY(10px); opacity: .8; }
}

/* ========= TRUST BAR ========= */
.trust-bar { background: var(--navy); padding: 20px 0; }
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 36px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 500;
  transition: color .2s;
}
.trust-item:hover { color: var(--amber); }
.trust-item svg { color: var(--amber); flex-shrink: 0; }

/* ========= TOURS ========= */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.tour-card {
  background: var(--card); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer; border: 2px solid transparent;
  will-change: transform;
}
.tour-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.tour-card.selected { border-color: var(--amber); }

.tour-img { position: relative; height: 225px; overflow: hidden; background: var(--bg); }
.tour-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
  cursor: zoom-in;
}
.tour-card:hover .tour-img img { transform: scale(1.08); }

.tour-duration {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  color: var(--navy); font-size: .8rem; font-weight: 700;
  padding: 5px 13px; border-radius: 20px;
}
.tour-body { padding: 24px; }
.tour-body h3 { color: var(--navy); margin-bottom: 8px; margin-top: 8px; }
.tour-body p  { color: var(--muted); font-size: .92rem; margin-bottom: 16px; line-height: 1.6; }

.tour-includes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tour-includes span {
  font-size: .77rem; color: var(--muted);
  background: var(--bg); padding: 4px 10px;
  border-radius: 12px;
}
.tour-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.tour-price { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.tour-price span { font-size: .8rem; font-weight: 400; color: var(--muted); }
.tour-select-btn {
  background: var(--sea-lt); color: var(--sea);
  border: none; border-radius: 30px;
  padding: 9px 20px; font-size: .88rem; font-weight: 700;
  cursor: pointer; transition: all .25s var(--ease);
}
.tour-card.selected .tour-select-btn,
.tour-select-btn:hover { background: var(--amber); color: var(--navy); transform: scale(1.04); }

/* ========= CARS (2026 redesign) ========= */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.car-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
  will-change: transform;
}
.car-card:hover {
  border-color: var(--sea);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.car-card.selected {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(212,168,67,.18), var(--shadow-lg);
}
.car-card.selected::before {
  content: '✓';
  position: absolute; top: 12px; right: 14px;
  width: 26px; height: 26px;
  background: var(--amber); color: var(--navy);
  border-radius: 50%; font-size: .85rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; line-height: 26px;
}

/* Car photo area */
.car-photo {
  position: relative; height: 180px; overflow: hidden;
  cursor: zoom-in;
}
.car-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.car-card:hover .car-photo img { transform: scale(1.07); }

/* Gradient placeholder when no real photo */
.car-photo-placeholder {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.car-photo-placeholder svg {
  width: 80px; height: 80px;
  opacity: .35; color: white;
  position: relative; z-index: 1;
}
.car-photo-placeholder .car-photo-label {
  position: absolute; bottom: 12px; left: 14px;
  color: rgba(255,255,255,.7); font-size: .75rem;
  font-style: italic; z-index: 1;
}

.car-body { padding: 18px 20px 20px; flex: 1; }
.car-class { font-weight: 800; font-size: 1.05rem; color: var(--navy); margin-bottom: 3px; }
.car-model { color: var(--muted); font-size: .83rem; margin-bottom: 12px; }
.car-pax {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--muted);
  background: var(--bg); border-radius: 12px; padding: 4px 12px;
}
.car-add-photos {
  margin-top: 10px; font-size: .75rem; color: var(--sea);
  opacity: .7; font-style: italic;
}

.car-badge-vip {
  position: absolute; top: 12px; left: 14px;
  font-size: .72rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: .05em; z-index: 2;
  white-space: nowrap;
}

/* Gradient themes per car class */
.car-gradient-comfort  { background: linear-gradient(135deg, #2c6eb5 0%, #4a90d9 100%); }
.car-gradient-business { background: linear-gradient(135deg, #1a3a6b 0%, #2c5f9e 100%); }
.car-gradient-vip      { background: linear-gradient(135deg, #0f2040 0%, #1e3a6e 100%); }
.car-gradient-maybach  { background: linear-gradient(135deg, #1a1200 0%, #4a3400 50%, #8b6914 100%); }
.car-gradient-minivan  { background: linear-gradient(135deg, #0d4a3a 0%, #1a7a5c 100%); }
.car-gradient-bus      { background: linear-gradient(135deg, #3a1a6b 0%, #5c3aab 100%); }

/* ========= HOW IT WORKS ========= */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.step { text-align: center; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  margin: 0 auto 22px; position: relative;
  box-shadow: 0 8px 24px rgba(15,45,92,.3);
}
.step-num::before {
  content: '';
  position: absolute; inset: -8px;
  border: 2px dashed var(--amber);
  border-radius: 50%; opacity: .5;
  animation: spinSlow 15s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.step h3 { color: var(--navy); margin-bottom: 10px; }
.step p   { color: var(--muted); font-size: .93rem; }

/* ========= ABOUT ========= */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-photo { position: relative; }
.about-photo img {
  width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover; object-position: top center;
}
/* Decorative accent */
.about-photo::before {
  content: '';
  position: absolute; top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 3px solid var(--amber);
  border-radius: 24px; opacity: .3;
  pointer-events: none;
}
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--white);
  padding: 20px 26px; border-radius: 18px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.about-badge-float strong { display: block; font-size: 2.2rem; color: var(--amber); }
.about-badge-float span   { font-size: .8rem; opacity: .7; }

.about-text h2 { color: var(--navy); margin-bottom: 18px; }
.about-text p  { color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--sea-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform .3s var(--ease);
}
.about-feature:hover .about-feature-icon { transform: scale(1.15) rotate(-5deg); }
.about-feature-text strong { display: block; color: var(--navy); margin-bottom: 2px; }
.about-feature-text span   { color: var(--muted); font-size: .88rem; }

/* ========= REVIEWS ========= */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--card); border-radius: var(--r);
  padding: 30px; box-shadow: var(--shadow);
  border-top: 3px solid var(--amber);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-stars { color: var(--amber); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.review-text { color: var(--text); font-size: .93rem; line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sea-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: var(--sea); flex-shrink: 0;
}
.review-author strong { display: block; font-size: .92rem; color: var(--navy); }
.review-author span   { font-size: .8rem; color: var(--muted); }

/* ========= GALLERY STRIP ========= */
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.gallery-strip-item { overflow: hidden; aspect-ratio: 1; }
.gallery-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), filter .5s;
  cursor: zoom-in; filter: saturate(.85);
}
.gallery-strip-item:hover img { transform: scale(1.12); filter: saturate(1.2); }

/* ========= BOOKING ========= */
.book-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1e44 100%);
  position: relative; overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(58,123,213,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.book-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,168,67,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.book-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.book-info h2 { color: var(--white); margin-bottom: 14px; }
.book-info p   { color: rgba(255,255,255,.68); margin-bottom: 28px; line-height: 1.7; }
.book-contacts { display: flex; flex-direction: column; gap: 16px; }
.book-contact-item { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.82); font-size: .95rem; }
.book-contact-item a { color: var(--amber); font-weight: 700; transition: opacity .2s; }
.book-contact-item a:hover { opacity: .8; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

.book-form-wrap {
  background: var(--white); border-radius: 24px;
  padding: 40px; box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.form-title { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 26px; text-align: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1/-1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .83rem; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.form-control {
  padding: 13px 16px; border: 2px solid var(--border);
  border-radius: 12px; font-size: .95rem; color: var(--text);
  background: var(--bg); transition: all .25s var(--ease);
  font-family: inherit; width: 100%;
}
.form-control:focus { outline: none; border-color: var(--sea); background: var(--white); box-shadow: 0 0 0 4px rgba(58,123,213,.12); }
select.form-control { cursor: pointer; }

.form-submit {
  width: 100%; padding: 17px;
  background: linear-gradient(135deg, var(--amber) 0%, #e8a020 100%);
  color: var(--navy); border: none; border-radius: 50px;
  font-size: 1.05rem; font-weight: 800;
  cursor: pointer; transition: all .28s var(--ease);
  margin-top: 8px; letter-spacing: .02em;
  box-shadow: 0 4px 20px rgba(212,168,67,.35);
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,168,67,.5); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-privacy { text-align: center; margin-top: 12px; font-size: .78rem; color: var(--muted); }
.form-msg { display: none; padding: 14px; border-radius: 12px; text-align: center; font-weight: 600; margin-top: 14px; }
.form-msg.success { background: #e8f8ef; color: #1a7a4a; display: block; }
.form-msg.error   { background: #fde8e8; color: #b91c1c; display: block; }

/* ========= LIGHTBOX ========= */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 12, 28, .96);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-img-wrap { max-width: 90vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img {
  max-width: 90vw; max-height: 82vh;
  border-radius: 12px; object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  transition: opacity .22s; user-select: none;
}
.lb-img-wrap img.fading { opacity: 0; }

.lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; z-index: 9010;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; z-index: 9010;
  user-select: none;
}
.lb-arrow:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.08); }
.lb-arrow.prev { left: 20px; }
.lb-arrow.next { right: 20px; }
.lb-arrow.hidden { opacity: 0; pointer-events: none; }

.lb-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .85rem;
  background: rgba(0,0,0,.45); padding: 6px 18px;
  border-radius: 20px; z-index: 9010; letter-spacing: .04em;
}
.lb-caption {
  position: fixed; bottom: 64px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.82); font-size: .9rem;
  background: rgba(0,0,0,.45); padding: 8px 22px;
  border-radius: 20px; z-index: 9010;
  max-width: 80vw; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ========= FLOAT BUTTON ========= */
.float-book {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: linear-gradient(135deg, var(--amber) 0%, #e8a020 100%);
  color: var(--navy); border: none; border-radius: 50px;
  padding: 15px 26px; font-size: .95rem; font-weight: 800;
  cursor: pointer; box-shadow: 0 6px 28px rgba(212,168,67,.55);
  transition: all .28s var(--ease);
  display: none; align-items: center; gap: 9px;
}
.float-book:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(212,168,67,.65); }

/* ========= MOBILE NAV ========= */
.mobile-nav {
  display: none; position: fixed; top: 0; right: 0;
  width: 290px; height: 100vh;
  background: var(--white); box-shadow: -4px 0 40px rgba(0,0,0,.15);
  padding: 84px 36px 36px;
  flex-direction: column; gap: 8px;
  z-index: 2000; transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav a {
  color: var(--navy); font-size: 1.1rem; font-weight: 600;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--sea); }
.mobile-nav-close { position: absolute; top: 22px; right: 22px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--navy); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1999; }
.nav-overlay.open { display: block; }

/* ========= FOOTER ========= */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 48px 0 24px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-logo span { color: var(--amber); }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); text-align: center; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--amber); }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .about-inner  { grid-template-columns: 1fr; gap: 48px; }
  .about-photo  { max-width: 420px; margin: 0 auto; }
  .about-badge-float { right: 0; }
  .book-inner   { grid-template-columns: 1fr; gap: 48px; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .hero { min-height: 65vh; }
  .hero-content { padding: 110px 24px 80px; }
  .hero-stats { gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .float-book span { display: none; }
  .float-book { padding: 15px; border-radius: 50%; }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tours-grid  { grid-template-columns: 1fr; }
  .cars-grid   { grid-template-columns: repeat(2, 1fr); }
  .steps-grid  { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .book-form-wrap { padding: 26px 18px; }
  .trust-inner { gap: 18px; justify-content: flex-start; }
  .hero-badge { font-size: .78rem; }
  .car-photo, .car-photo-placeholder { height: 140px; }
}
