/* ============================================================
   ROYAL TRAVELS — stylesheet
   ============================================================ */

:root{
  --dark: #0a0a0a;
  --dark-soft: #141414;
  --dark-alt: #17181c;
  --accent: #e5122a;
  --accent-dark: #b90e21;
  --cream: #f7f5f2;
  --grey: #6b6b6b;
  --border: #e8e6e2;
  --text: #1a1a1a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(10,10,10,.08);
  --shadow-lg: 0 20px 50px rgba(10,10,10,.18);
  --ff-head: 'Oswald', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ font-family: var(--ff-head); margin: 0; line-height: 1.15; letter-spacing: .3px; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-accent{ background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(229,18,42,.35); }
.btn-accent:hover{ background: var(--accent-dark); box-shadow: 0 12px 26px rgba(229,18,42,.45); }
.btn-outline-light{ background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover{ background: #fff; color: var(--dark); border-color: #fff; }
.btn-dark{ background: var(--dark); color: #fff; }
.btn-dark:hover{ background: #000; }
.btn-outline{ background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover{ background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-lg{ padding: 16px 32px; font-size: 1rem; }
.btn-block{ width: 100%; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- Nav toggle (mobile) ---------- */
.nav-toggle{ display: none; }

/* ---------- Anchor scroll offset (sticky header) ---------- */
#top, #about, #services, #fleet, #airport, #outstation, #contact, #local, #rental, #quote{
  scroll-margin-top: 118px;
}

/* ---------- Header ---------- */
.site-header{ position: sticky; top: 0; z-index: 100; }
.topbar{ background: var(--dark); color: #fff; font-size: .8rem; }
.topbar-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px; gap: 12px;
}
.topbar-left{ display: flex; align-items: center; gap: 10px; letter-spacing: .4px; }
.avail-dot{
  width: 8px; height: 8px; border-radius: 50%; background: #33d17a;
  box-shadow: 0 0 0 rgba(51,209,122,.6);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot{
  0%{ box-shadow: 0 0 0 0 rgba(51,209,122,.55); }
  70%{ box-shadow: 0 0 0 6px rgba(51,209,122,0); }
  100%{ box-shadow: 0 0 0 0 rgba(51,209,122,0); }
}
.topbar-sep{ opacity: .4; }
.topbar-phone{
  display: flex; align-items: center; gap: 6px; color: #fff; font-weight: 600;
  transition: color .2s ease;
}
.topbar-phone:hover{ color: var(--accent); }
.icon-xs{ width: 14px; height: 14px; fill: currentColor; }

.navbar{ background: #fff; border-bottom: 1px solid var(--border); }
.nav-inner{ display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }

.brand{ display: flex; align-items: center; gap: 12px; }
.brand-mark svg{ width: 44px; height: 44px; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.2; }
.brand-title{ font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem; letter-spacing: 1px; color: var(--dark); }
.brand-title.light{ color: #fff; }
.brand-sub{ font-size: .68rem; letter-spacing: .8px; color: var(--accent); text-transform: uppercase; font-weight: 600; }

.main-nav{ display: flex; align-items: center; gap: 30px; }
.main-nav a{
  font-size: .92rem; font-weight: 500; color: var(--text);
  position: relative; padding: 6px 0; transition: color .2s ease;
}
.main-nav a::after{
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--accent); transition: width .25s ease;
}
.main-nav a:hover{ color: var(--accent); }
.main-nav a:hover::after{ width: 100%; }

.nav-actions{ display: flex; align-items: center; gap: 16px; }
.nav-call-icon{
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--dark);
}
.icon-sm{ width: 18px; height: 18px; fill: currentColor; }

.nav-burger{
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 210;
}
.nav-burger span{ width: 24px; height: 2px; background: var(--dark); transition: transform .3s ease, opacity .3s ease; }

.mobile-nav{
  display: none;
}
.nav-overlay{ display: none; }

/* ---------- Hero ---------- */
.hero{ position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.72) 42%, rgba(10,10,10,.35) 75%, rgba(10,10,10,.15) 100%);
}
.hero-inner{
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
  padding-top: 80px; padding-bottom: 80px;
}
.hero-copy h1{ color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin: 16px 0 20px; }
.hero-text{ color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 480px; margin-bottom: 30px; }
.hero-ctas{ display: flex; gap: 16px; flex-wrap: wrap; }

.eyebrow{
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow-light{ color: #ff5468; }

.quote-card{
  background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg);
}
.quote-card h2{ font-size: 1.4rem; }
.quote-sub{ color: var(--grey); font-size: .88rem; margin: 6px 0 20px; }
.field{ display: block; margin-bottom: 14px; }
.field span{ display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.field input, .field select{
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-family: inherit; font-size: .92rem; background: var(--cream); transition: border-color .2s ease;
}
.field input:focus, .field select:focus{ outline: none; border-color: var(--accent); background: #fff; }
#quote-form .btn{ margin-top: 6px; }

/* ---------- USP strip ---------- */
.usp-strip{ background: var(--cream); padding: 48px 0; }
.usp-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-card{ text-align: center; }
.usp-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: var(--dark); color: #fff; margin-bottom: 14px;
}
.usp-icon svg{ width: 22px; height: 22px; }
.usp-card h3{ font-size: 1.02rem; margin-bottom: 4px; }
.usp-card p{ font-size: .85rem; color: var(--grey); }

/* ---------- Vehicle marquee ---------- */
.vehicle-strip{ padding: 56px 0 60px; background: #fff; overflow: hidden; }
.strip-heading{ text-align: center; font-size: 1rem; letter-spacing: 3px; color: var(--grey); margin-bottom: 30px; }
.marquee{ width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track{ display: flex; gap: 20px; width: max-content; animation: marquee-scroll 28s linear infinite; }
.marquee-item{
  position: relative; width: 220px; height: 150px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0;
}
.marquee-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.marquee-item:hover img{ transform: scale(1.08); }
.marquee-item span{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  color: #fff; font-size: .82rem; font-weight: 600;
}
@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section{ padding: 88px 0; }
.section-alt{ background: var(--cream); }
.section-dark{ background: var(--dark); }
.section-head{ text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 10px; }
.section-head h2.light{ color: #fff; }
.section-sub{ color: var(--grey); margin-top: 12px; font-size: .95rem; }

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

/* Service cards */
.service-card{
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media{ height: 170px; overflow: hidden; }
.service-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-media img{ transform: scale(1.07); }
.service-body{ padding: 22px; }
.service-body h3{ font-size: 1.08rem; margin-bottom: 8px; }
.service-body p{ color: var(--grey); font-size: .9rem; margin-bottom: 14px; }
.link-arrow{ font-weight: 600; color: var(--accent); font-size: .88rem; transition: gap .2s ease; }
.link-arrow:hover{ text-decoration: underline; }

/* Fleet cards */
.fleet-grid{ grid-template-columns: repeat(5, 1fr); }
.fleet-card{
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.fleet-card:hover{ transform: translateY(-6px); }
.fleet-media{ height: 160px; }
.fleet-media img{ width: 100%; height: 100%; object-fit: cover; }
.fleet-body{ padding: 20px; }
.fleet-body h3{ font-size: 1.05rem; margin-bottom: 4px; }
.fleet-capacity{ display: inline-block; font-size: .76rem; font-weight: 600; color: var(--accent); margin-bottom: 10px; }
.fleet-body p{ color: var(--grey); font-size: .87rem; margin-bottom: 16px; min-height: 40px; }

/* Destinations */
.dest-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.dest-card{ position: relative; border-radius: var(--radius); overflow: hidden; height: 220px; display: block; }
.dest-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover img{ transform: scale(1.08); }
.dest-card::after{
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 55%);
}
.dest-label{
  position: absolute; left: 18px; bottom: 16px; z-index: 1; color: #fff; font-weight: 600; font-size: .96rem;
}
.dest-flow{
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; color: var(--grey); font-size: .88rem;
}
.dest-flow span:nth-child(odd){ font-weight: 600; color: var(--text); }

.place-chip-grid{ display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 32px; }
.place-chip{
  display: inline-flex; align-items: center;
  padding: 10px 20px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border);
  font-size: .9rem; font-weight: 600; color: var(--text);
}
.section-cta{ text-align: center; }

/* Why us / feature grid */
.feature-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-block{ text-align: center; padding: 10px; }
.check-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; margin-bottom: 16px;
}
.check-icon svg{ width: 20px; height: 20px; }
.feature-block h3{ color: #fff; font-size: 1.02rem; margin-bottom: 6px; }
.feature-block p{ color: rgba(255,255,255,.65); font-size: .87rem; }

/* ---------- CTA ---------- */
.cta-section{ position: relative; padding: 100px 0; overflow: hidden; }
.cta-media{ position: absolute; inset: 0; z-index: 0; }
.cta-media img{ width: 100%; height: 100%; object-fit: cover; }
.cta-inner{ position: relative; z-index: 1; text-align: center; }
.cta-inner h2{ color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.cta-inner p{ color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 30px; }
.cta-ctas{ display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-wrap{ display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.contact-info h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 10px 0 16px; }
.contact-address{ color: var(--grey); font-size: .95rem; margin-bottom: 20px; line-height: 1.6; }
.contact-list{ margin-bottom: 26px; }
.contact-list li{ padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .93rem; }
.contact-list li a{ color: var(--accent); font-weight: 600; }
.contact-btns{ display: flex; gap: 12px; flex-wrap: wrap; }
.contact-map{ border-radius: var(--radius); overflow: hidden; min-height: 320px; box-shadow: var(--shadow); }
.contact-map iframe{ width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--dark); color: rgba(255,255,255,.7); padding-top: 60px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-tagline{ color: var(--accent); font-size: .82rem; font-weight: 600; letter-spacing: .5px; margin: 8px 0 10px; }
.footer-desc{ font-size: .87rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-col h4{ color: #fff; font-size: .92rem; letter-spacing: .5px; margin-bottom: 14px; }
.footer-col a{ display: block; font-size: .87rem; padding: 5px 0; color: rgba(255,255,255,.65); transition: color .2s ease; }
.footer-col a:hover{ color: var(--accent); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer-bottom-inner{
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-credit{ display: inline-flex; align-items: center; gap: 8px; }
.footer-credit-logo{
  width: 20px; height: 20px; object-fit: contain;
  background: #fff; border-radius: 50%; padding: 3px;
}

/* ---------- Floating buttons ---------- */
.fab{
  position: fixed; right: 24px; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 90;
  box-shadow: var(--shadow-lg); border: none; transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
}
.fab:hover{ transform: translateY(-3px); }
.fab-whatsapp{ background: #25D366; bottom: 24px; }
.fab-whatsapp svg{ width: 28px; height: 28px; }
.fab-top{
  bottom: 90px; background: var(--dark); color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.fab-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.fab-top svg{ width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .hero-inner{ grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy{ max-width: 640px; }
  .usp-grid{ grid-template-columns: repeat(2, 1fr); }
  .card-grid, .fleet-grid{ grid-template-columns: repeat(2, 1fr); }
  .dest-grid{ grid-template-columns: repeat(2, 1fr); }
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-wrap{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .main-nav{ display: none; }
  .nav-call-icon{ display: flex; }
  .nav-burger{ display: flex; }
  .nav-actions .btn-accent{ display: none; }

  .mobile-nav{
    position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px;
    background: var(--dark); z-index: 200; display: flex; flex-direction: column; gap: 4px;
    padding: 100px 28px 28px; transform: translateX(100%); transition: transform .35s ease;
  }
  .mobile-nav a{
    color: #fff; font-size: 1rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mobile-nav .btn{ margin-top: 20px; }

  .nav-overlay{
    position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 190;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
  }

  .nav-toggle:checked ~ .site-header .mobile-nav{ transform: translateX(0); }
  .nav-toggle:checked ~ .site-header .nav-overlay{ opacity: 1; visibility: visible; }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(2){ opacity: 0; }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px){
  .container{ padding: 0 18px; }
  .topbar-item:nth-child(3), .topbar-sep{ display: none; }
  .topbar-inner{ justify-content: space-between; }
  .usp-grid{ grid-template-columns: 1fr 1fr; }
  .card-grid, .fleet-grid, .dest-grid, .feature-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; text-align: left; }
  .hero{ min-height: auto; }
  .hero-copy h1{ font-size: 2rem; }
  .quote-card{ padding: 24px; }
  .section{ padding: 64px 0; }
  .fab{ right: 16px; width: 48px; height: 48px; }
  .fab-whatsapp{ bottom: 16px; }
  .fab-top{ bottom: 74px; }
}
