:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --primary: #c2410c; /* Deep, professional rust/orange */
  --primary-dark: #9a3412;
  --accent: #fff7ed;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --radius: 8px; /* Sharper, more professional corners */
  --radius-sm: 6px;
  --container: 1120px;
  --glass-bg: rgba(255, 255, 255, 0.98);
  --glass-border: #e2e8f0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select { font: inherit; }

.skip-link {
  position: absolute; top: -100px; left: 20px;
  background: var(--text); color: #fff;
  padding: 12px 20px; border-radius: var(--radius); z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus { top: 20px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography */
h1, h2, h3, .brand-text strong {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  margin-top: 0;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
p { margin-top: 0; color: var(--muted); }

/* Layout */
.container { width: 100%; padding: 0 24px; margin: 0 auto; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1120px) { .container { max-width: var(--container); } }

.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }

.section-muted { background: #f8fafc; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-accent { background: #f1f5f9; color: var(--text); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-accent h2, .section-accent p { color: inherit; }
.section-contact { padding-top: 0; }
.service-page .section-contact { padding-top: 64px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 600;
  transition: all 0.2s ease-in-out;
  cursor: pointer; border: none; font-size: 1rem; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-call {
  background: var(--primary); color: white;
  box-shadow: var(--shadow-sm);
}
.btn-call:hover { background: var(--primary-dark); box-shadow: var(--shadow); }
.btn-whatsapp {
  background: #16a34a; color: white;
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { background: #15803d; box-shadow: var(--shadow); }
.btn.compact { padding: 10px 16px; font-size: 0.9rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
}
.site-header .header-inner {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
}
@media (min-width: 768px) {
  .site-header .header-inner {
    padding-inline: 40px;
  }
}
.brand { display: flex; align-items: center; }
.brand-logo { max-height: 72px; width: auto; object-fit: contain; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--primary-dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--primary-dark);
  background: var(--accent);
  border-color: #fed7aa;
}
@media (max-width: 1040px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .site-header .header-inner {
    gap: 12px;
  }
  .nav-toggle {
    display: grid;
    margin-left: auto;
  }
  .site-header .btn.compact {
    order: 4;
    width: 100%;
  }
  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding-top 0.2s ease;
  }
  .site-nav.is-open {
    max-height: 360px;
    opacity: 1;
    padding-top: 4px;
    pointer-events: auto;
  }
  .site-nav a {
    justify-content: center;
    text-align: center;
  }
}

/* Hero Banner */
.banner-full-screen {
  width: 100%;
  overflow: hidden;
}
.banner-full-screen img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .banner-full-screen {
    height: calc(100vh - 74px); /* approx header height */
  }
  .banner-full-screen img {
    height: 100%;
    object-fit: cover;
  }
}

/* Hero Content */
.hero { padding: 48px 0; background: #ffffff; text-align: center; }
.hero-content-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.display-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px; background: var(--accent); border-radius: var(--radius);
  color: var(--primary-dark); font-weight: 600; font-size: 0.85rem;
  margin-bottom: 24px; border: 1px solid #fed7aa;
}
.hero-text { font-size: 1.125rem; margin-bottom: 32px; color: var(--muted); }
.cta-group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; justify-content: center; width: 100%; }
@media (min-width: 640px) { .cta-group { flex-direction: row; width: auto; } }
.trust-ticks { display: grid; gap: 12px; justify-content: center; text-align: left; margin-bottom: 16px; }
@media (min-width: 640px) { .trust-ticks { grid-template-columns: 1fr 1fr; } }
.trust-ticks span {
  display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; color: var(--text);
}
.trust-ticks span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; width: 100%;
}
@media (max-width: 480px) { .hero-stats { grid-template-columns: 1fr; } }
.hero-stats article {
  text-align: center; padding: 16px; background: var(--bg);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.hero-stats strong { display: block; font-size: 1.25rem; color: var(--text); font-family: 'Outfit', sans-serif; font-weight: 700; }
.hero-stats span { font-size: 0.85rem; color: var(--muted); }

/* Trust Bar */
.trust-bar {
  padding: 24px 0; background: #f8fafc; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-bar-grid {
  display: grid; gap: 16px; text-align: center; font-weight: 500; color: var(--text);
}
@media (min-width: 768px) { .trust-bar-grid { grid-template-columns: repeat(3, 1fr); } }

/* Sections */
.split-section { display: grid; gap: 48px; }
@media (min-width: 992px) { .split-section { grid-template-columns: 1fr 1fr; align-items: start; } }
.section-heading { margin-bottom: 48px; max-width: 720px; }
.section-heading.center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-inline: auto; }

/* Cards */
.card-grid, .benefits-grid, .fleet-grid, .gallery-grid, .contact-grid, .tourist-places-grid {
  display: grid; gap: 24px;
}
@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .tourist-places-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .tourist-places-grid { grid-template-columns: repeat(3, 1fr); }
}

.content-card, .info-card, .fleet-card, .benefit-card, .tourist-place-card, .cta-banner, .final-cta, .contact-panel {
  background: var(--surface-solid); padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.prose p + p { margin-top: 1rem; }

/* WhatsApp Enquiry */
.enquiry-panel {
  display: grid;
  gap: 32px;
  background:
    radial-gradient(circle at top right, rgba(194, 65, 12, 0.13), transparent 34%),
    #ffffff;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.enquiry-copy-block {
  max-width: 520px;
}
.enquiry-form {
  display: grid;
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}
.enquiry-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.enquiry-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.13);
}
.enquiry-submit {
  min-height: 52px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  background: #16a34a;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}
.enquiry-submit:hover {
  background: #15803d;
  transform: translateY(-1px);
}
@media (min-width: 900px) {
  .enquiry-panel {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }
  .enquiry-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .enquiry-form .form-field:first-child,
  .enquiry-form .enquiry-submit {
    grid-column: 1 / -1;
  }
}

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: var(--accent); color: var(--primary-dark);
  border-radius: var(--radius-sm); font-weight: 700; font-family: 'Outfit', sans-serif;
  margin-bottom: 20px; font-size: 1rem; border: 1px solid #fed7aa;
}
.fleet-card { position: relative; }
.fleet-card.most-booked { border-color: var(--primary); border-width: 2px; }
.badge {
  position: absolute; top: -10px; right: 24px; background: var(--primary);
  color: white; padding: 4px 12px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600;
}
.card-media { margin-bottom: 20px; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.feature-list li {
  padding: 12px 16px; background: #f8fafc; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 8px;
}

.section-accent .benefit-card { background: #ffffff; border-color: var(--border); box-shadow: var(--shadow-sm); }
.section-accent .benefit-card h3 { color: var(--text); }
.section-accent .benefit-card p { color: var(--muted); }

/* Tourist Places */
.tourist-places-section {
  background: #ffffff;
}
.tourist-place-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.tourist-place-card:hover {
  border-color: #fed7aa;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.place-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.place-card-heading h3 {
  margin-bottom: 0;
}
.place-card-heading span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--primary-dark);
  border: 1px solid #fed7aa;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}
.tourist-place-card p {
  margin-bottom: 0;
}

/* CTA Banners */
.cta-banner, .final-cta, .contact-panel {
  background: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cta-banner { display: grid; grid-template-columns: 1fr auto; align-items: center; text-align: left; gap: 40px; }
  .cta-banner .cta-group { margin-bottom: 0; }
}

/* Gallery */
.gallery-item {
  padding: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--surface-solid); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  text-align: left; display: flex; flex-direction: column;
}
.gallery-item:hover { box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%; display: block;
}
.gallery-item-label {
  display: block;
  padding: 16px;
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--border);
  background: #ffffff;
}

/* Media frames */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  border: 1px solid var(--border);
}
.media-frame-landscape {
  aspect-ratio: 4 / 3;
}
.media-frame-hero {
  aspect-ratio: 4 / 3;
  min-height: 320px;
}
.media-image {
  width: 100%;
  height: 100%;
  display: block;
}
.media-image-cover {
  object-fit: cover;
}
.media-image-contain {
  object-fit: contain;
  background: #ffffff;
}
.gallery-media {
  border-radius: 0;
  border: none;
  background: #f1f5f9;
}

/* FAQ */
.faq-list { display: grid; gap: 16px; }
.faq-item {
  background: var(--surface-solid); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; line-height: 1; color: var(--muted);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 24px 24px; margin: 0; color: var(--muted); }

/* Contact Grid */
.contact-grid a {
  display: flex; flex-direction: column; gap: 4px; padding: 24px;
  background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: border-color 0.2s;
}
.contact-grid a:hover { border-color: var(--primary); }
.contact-grid strong { font-family: 'Outfit', sans-serif; color: var(--text); font-size: 1.1rem; }
.contact-grid span { color: var(--muted); }

/* Footer */
.site-footer {
  padding: 48px 0; background: #0f172a; color: #94a3b8; text-align: center;
}
.footer-inner p { margin: 8px 0; color: inherit; }
@media (min-width: 768px) { .site-footer { padding: 64px 0; } }

/* Sticky Booking Bar */
.sticky-booking-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 16px; padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.05);
}
@media (min-width: 768px) { .sticky-booking-bar { display: none; } }

/* Floating WA */
.floating-whatsapp {
  position: fixed; right: 24px; bottom: 100px; z-index: 45;
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%; background: #16a34a; color: white;
  box-shadow: var(--shadow-lg); transition: transform 0.2s;
}
.floating-whatsapp:hover { transform: translateY(-2px); }
@media (min-width: 768px) { .floating-whatsapp { bottom: 32px; right: 32px; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.9); }
.lightbox-dialog { position: relative; z-index: 101; max-width: 90vw; max-height: 90vh; }
.lightbox-dialog img { max-width: 100%; max-height: 80vh; border-radius: var(--radius-sm); object-fit: contain; background: #fff; }
.lightbox-close {
  position: absolute; top: -48px; right: 0; background: none; border: none;
  color: white; font-size: 2rem; cursor: pointer; opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: white; border: 1px solid var(--border); width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; box-shadow: var(--shadow); display: grid; place-items: center; font-size: 1.2rem; color: var(--text);
}
.lightbox-nav.prev { left: -24px; }
.lightbox-nav.next { right: -24px; }
#lightbox-caption { color: white; text-align: center; margin-top: 16px; font-weight: 500; }

@media (max-width: 767px) {
  .hero { padding-top: 32px; }
  .display-title { max-width: 100%; }
  .content-card, .info-card, .fleet-card, .benefit-card, .tourist-place-card, .cta-banner, .final-cta, .contact-panel, .enquiry-panel {
    padding: 24px;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .card-media { margin-bottom: 16px; }
  .place-card-heading {
    flex-direction: column;
    gap: 10px;
  }
  .place-card-heading span {
    text-align: left;
  }
}
