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

:root {
  --gold: #b8975a;
  --gold-light: #d4b278;
  --gold-dark: #8a6e3e;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --dark-card: #161616;
  --border: rgba(184, 151, 90, 0.2);
  --text: #e8e0d0;
  --text-muted: #8a8070;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===================== SECTION LABELS ===================== */
.section-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  margin-bottom: 20px;
}

.section-title span { color: var(--gold); font-style: italic; }

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 151, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2de070 0%, #25D366 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn svg { flex-shrink: 0; }

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo span { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.7);
  transition: color 0.3s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--gold); }
.nav-menu a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 99999;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  user-select: none;
  -webkit-user-select: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  width: 100%;
  border-top: 1px solid var(--border);
}

#navbar.menu-open .mobile-dropdown {
  display: flex;
}

.mobile-dropdown a {
  display: block;
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.8);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-dropdown a:last-child { border-bottom: none; }
.mobile-dropdown a:hover { color: var(--gold); background: rgba(255,255,255,0.03); }

/* ===================== HERO ===================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
  z-index: 0;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  line-height: 1.05;
}

.hero-title strong {
  display: block;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(232, 224, 208, 0.8);
  letter-spacing: 0.05em;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===================== SERVICES ===================== */
#services {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  padding: 52px 40px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,151,90,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(184,151,90,0.5); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.3s;
}

.service-card:hover .service-icon { border-color: var(--gold); }

.service-icon svg { color: var(--gold); }

.service-num {
  position: absolute;
  top: 36px;
  right: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(184,151,90,0.07);
  line-height: 1;
  transition: color 0.3s;
}

.service-card:hover .service-num { color: rgba(184,151,90,0.14); }

.service-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

.service-tag {
  display: inline-block;
  margin-top: 24px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  border: 1px solid rgba(184,151,90,0.3);
}

/* ===================== FLEET (index.html gallery grid) ===================== */
#fleet {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

#fleet::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 3px;
}

.fleet-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fleet-item img {
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fleet-item:hover img { transform: scale(1.08); }

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}

.fleet-item:hover .fleet-overlay { opacity: 1; }

.fleet-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}

.fleet-label span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonials-header { text-align: center; margin-bottom: 72px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 44px 36px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(184,151,90,0.45);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(232, 224, 208, 0.75);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.author-info .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.author-info .date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}

.stars svg { color: var(--gold); }

/* ===================== CONTACT ===================== */
#contact {
  padding: 120px 0;
  background: var(--black);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.info-content .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-content .value {
  font-size: 16px;
  color: var(--text);
  font-weight: 300;
}

.contact-form { width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,128,112,0.5); }

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold-dark);
  flex-shrink: 0;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-contact-item span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.copyright span { color: var(--gold); }

/* ===================== VIDEO / CTA SECTION (index.html) ===================== */
#video-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
}

.vcta-video {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  object-position: center;
}

.vcta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 100%);
}

.vcta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.vcta-content .section-label { margin-bottom: 20px; }

.vcta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.vcta-title em {
  font-style: italic;
  color: var(--gold);
}

.vcta-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
}

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.animate-hidden {
  opacity: 0;
  transform: translateY(32px);
}

.reveal.animate-hidden.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================== ABOUT PAGE SPECIFIC ===================== */
/* about.html hero overrides */
#hero.about-hero {
  height: 70vh;
  min-height: 560px;
}

/* OUR STORY (about.html) */
#story {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

#story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.story-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
}

.story-image-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
  z-index: -1;
}

.story-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 20px 28px;
}

.story-image-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.story-image-badge .badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.story-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
}

/* FLEET CARDS (about.html) */
.fleet-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fleet-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.fleet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,151,90,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.fleet-card:hover { transform: translateY(-6px); border-color: rgba(184,151,90,0.5); }
.fleet-card:hover::before { opacity: 1; }

.fleet-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 5px 14px;
  margin-bottom: 28px;
}

.fleet-card-title {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.fleet-capacity {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.fleet-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.fleet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.fleet-features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* WHY CHOOSE US (about.html) */
#why {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

#why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,151,90,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.why-card:hover { transform: translateY(-6px); border-color: rgba(184,151,90,0.5); }
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: border-color 0.3s;
}

.why-card:hover .why-icon { border-color: var(--gold); }

.why-icon svg { color: var(--gold); }

.why-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* LANGUAGES (about.html) */
#languages {
  padding: 100px 0;
  background: var(--black);
  position: relative;
}

#languages::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.languages-inner {
  text-align: center;
}

.lang-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.lang-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lang-flag {
  font-size: 52px;
  line-height: 1;
}

.lang-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* CTA (about.html) */
#cta {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  text-align: center;
}

#cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* ===================== TOUR PAGES SPECIFIC ===================== */

/* HIGHLIGHTS */
#highlights { padding: 110px 0; background: var(--dark); position: relative; }
#highlights::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.highlights-header { text-align: center; margin-bottom: 68px; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.highlight-card { padding: 48px 32px; background: var(--dark-card); border: 1px solid var(--border); transition: all 0.4s; position: relative; overflow: hidden; }
.highlight-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184,151,90,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; }
.highlight-card:hover { transform: translateY(-6px); border-color: rgba(184,151,90,0.5); }
.highlight-card:hover::before { opacity: 1; }
.highlight-icon { width: 52px; height: 52px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--gold); transition: border-color 0.3s; }
.highlight-card:hover .highlight-icon { border-color: var(--gold); }
.highlight-title { font-size: 20px; color: var(--white); margin-bottom: 14px; }
.highlight-desc { font-size: 14px; color: var(--text-muted); line-height: 1.85; }

/* ITINERARY */
#itinerary { padding: 110px 0; background: var(--black); }
.itinerary-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.itinerary-intro .section-sub { max-width: 100%; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(180deg, var(--gold), rgba(184,151,90,0.1)); }
.timeline-item { position: relative; padding: 0 0 36px 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -34px; top: 6px; width: 12px; height: 12px; border: 1px solid var(--gold); background: var(--black); transform: rotate(45deg); }
.timeline-time { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.timeline-event { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.timeline-detail { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* PRICING */
#pricing { padding: 110px 0; background: var(--dark); position: relative; }
#pricing::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.pricing-header { text-align: center; margin-bottom: 68px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { padding: 52px 40px; background: var(--dark-card); border: 1px solid var(--border); text-align: center; position: relative; transition: all 0.4s; overflow: hidden; }
.pricing-card.featured { border-color: var(--gold); }
.pricing-card.featured::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184,151,90,0.07) 0%, transparent 60%); }
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(184,151,90,0.5); }
.pricing-badge { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 4px 14px; margin-bottom: 28px; }
.pricing-duration { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 6px; }
.pricing-duration span { font-size: 18px; font-weight: 400; color: var(--gold); }
.pricing-label { font-size: 13px; font-weight: 400; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 36px; text-align: left; }
.pricing-features li { font-size: 13px; color: var(--text-muted); padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: ''; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* FLEXIBLE PRICING (istanbul-tour.html) */
.flex-pricing-card { max-width: 680px; margin: 0 auto; border: 1px solid var(--gold); background: var(--dark-card); position: relative; overflow: hidden; }
.flex-pricing-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184,151,90,0.07) 0%, transparent 60%); pointer-events: none; }
.flex-pricing-tiers { display: grid; grid-template-columns: 1fr 1fr; }
.flex-tier { padding: 36px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.flex-tier:nth-child(2n) { border-right: none; }
.flex-tier:nth-child(3), .flex-tier:nth-child(4) { border-bottom: none; }
.flex-tier-duration { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 4px; }
.flex-tier-duration span { font-size: 16px; font-weight: 400; color: var(--gold); }
.flex-tier-label { font-size: 12px; font-weight: 400; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }
.flex-tier.custom .flex-tier-duration { font-size: 28px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; }
.pricing-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--text-muted); font-style: italic; max-width: 520px; margin-left: auto; margin-right: auto; }
.pricing-cta { text-align: center; margin-top: 36px; }

/* YOUR ISTANBUL / CUSTOM TOUR (istanbul-tour.html) */
#custom-tour { padding: 110px 0; background: var(--black); }
.custom-tour-header { text-align: center; margin-bottom: 68px; }
.custom-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 56px; }
.custom-card { padding: 48px 32px; background: var(--dark-card); border: 1px solid var(--border); transition: all 0.4s; position: relative; overflow: hidden; }
.custom-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184,151,90,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; }
.custom-card:hover { transform: translateY(-6px); border-color: rgba(184,151,90,0.5); }
.custom-card:hover::before { opacity: 1; }
.custom-card-icon { width: 52px; height: 52px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--gold); transition: border-color 0.3s; }
.custom-card:hover .custom-card-icon { border-color: var(--gold); }
.custom-card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.custom-card-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.custom-card-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.custom-card-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.custom-tour-footer { text-align: center; }
.custom-tour-note { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.8; }

/* INCLUDES */
#includes { padding: 110px 0; background: var(--black); }
.includes-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.include-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--border); background: var(--dark-card); transition: border-color 0.3s; }
.include-item:hover { border-color: rgba(184,151,90,0.4); }
.include-icon { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.include-text .title { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.include-text .desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* TOUR CTA */
#tour-cta { padding: 120px 0; background: var(--dark); text-align: center; position: relative; }
#tour-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-title { font-size: clamp(38px, 5vw, 62px); font-weight: 300; color: var(--white); margin-bottom: 12px; letter-spacing: 0.04em; }
.cta-title span { color: var(--gold); font-style: italic; }
.cta-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 44px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 56px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* About page */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .story-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .story-image { display: none; }
  /* Tour pages */
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .itinerary-wrapper { grid-template-columns: 1fr; gap: 56px; }
  .includes-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .custom-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  #services, #fleet, #testimonials, #contact { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  /* Fleet gallery: 2 columns, auto rows so images don't overflow */
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
    gap: 2px;
    overflow: hidden;
  }
  .fleet-item { overflow: hidden; }
  .fleet-item img { width: 100%; height: 100%; object-fit: cover; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .fleet-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Hero background centered on mobile */
  .hero-bg { background-position: center center; }
  /* Text overflow prevention */
  h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; }
  .hero-title, .section-title { max-width: 100%; }
  /* About page */
  #story, #why, #languages, #cta { padding: 80px 0; }
  .fleet-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  /* Tour pages */
  #highlights, #itinerary, #pricing, #custom-tour, #includes, #tour-cta { padding: 80px 0; }
  .highlights-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .flex-pricing-tiers { grid-template-columns: 1fr; }
  .flex-tier:nth-child(2n) { border-right: none; }
  .flex-tier:nth-child(3) { border-bottom: 1px solid var(--border); }
  .flex-tier:last-child { border-bottom: none; }
  .flex-tier { border-right: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  /* Fleet: 2 columns, shorter rows on small screens */
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 130px);
    gap: 2px;
    overflow: hidden;
  }
  .hero-title { font-size: 36px; overflow-wrap: break-word; word-break: break-word; }
  .hero-sub { font-size: 14px; }
  .hero-content { padding: 0 16px; }
  /* Prevent any text overflow on very small screens */
  body { overflow-x: hidden; }
  * { max-width: 100%; }
  img { max-width: 100%; }
  .section-title { font-size: clamp(28px, 8vw, 42px); }
  /* About page */
  .why-grid { grid-template-columns: 1fr; }
  .lang-list { gap: 32px; }
  /* Buttons stack on very small screens */
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn { width: 100%; justify-content: center; }
}
