/* Shekhawat Travel Agency - Dark theme design system */
:root {
  /* Dark theme base */
  --bg-dark: #0a121c;
  --bg-section: #0e1926;
  --bg-card: #141f2e;
  --bg-card-hover: #1a2838;
  --navy: #0e1926;
  --navy-mid: #162536;
  --gold: #c9a227;
  --gold-light: #e5c76b;
  --amber: #d97706;
  --white: #ffffff;
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-muted: rgba(255, 255, 255, 0.75);
  --text-subtle: rgba(255, 255, 255, 0.6);
  /* Legacy / compatibility */
  --cream: #1a2838;
  --cream-warm: #162536;
  --charcoal: rgba(255, 255, 255, 0.8);
  --saffron: #d97706;
  --terracotta: #b45309;
  --deep-blue: #0e1926;
  --deep-blue-dark: #0a121c;
  --sand: rgba(255, 255, 255, 0.15);
  /* Accents */
  --accent-gradient: linear-gradient(135deg, #c9a227 0%, #d97706 50%, #b45309 100%);
  --overlay-dark: linear-gradient(135deg, rgba(10, 18, 28, 0.94) 0%, rgba(14, 25, 38, 0.9) 50%, rgba(180, 83, 9, 0.4) 100%);
  /* Surfaces - dark theme shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 8px 32px rgba(201, 162, 39, 0.25);
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --focus-ring: 0 0 0 3px rgba(201, 162, 39, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--saffron);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

/* Tighter left spacing in header so logo isn’t pushed too far right */
.header .container {
  padding-left: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.logo:hover {
  color: var(--gold-light);
}

.logo:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

/* Invert logo so it's visible on dark navbar (logo file is white on black) */
.logo-img {
  filter: invert(1);
  opacity: 0.95;
  height: 48px;
  width: auto;
  max-height: 52px;
  object-fit: contain;
  display: block;
}

.logo:hover .logo-img {
  opacity: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.15rem !important;
  background: var(--accent-gradient);
  color: var(--white) !important;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}

.nav-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/c/c5/Road_to_the_Thar_desert%2C_Jaisalmer_11.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--deep-blue);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.125rem;
  max-width: 540px;
  margin: 0 auto 1.5rem;
  opacity: 0.92;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.hero-search-logo {
  flex-shrink: 0;
  height: 32px;
  width: auto;
  object-fit: contain;
  /* Invert so logo is visible on dark hero/search bar (logo file is white on black) */
  filter: invert(1);
  opacity: 0.95;
}

.hero-search-input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  outline: none;
  transition: background var(--transition), border-color var(--transition);
}

.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-search-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  box-shadow: var(--focus-ring);
}

.hero-search-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.45);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

.quick-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.quick-link:hover {
  color: var(--gold-light);
}

.quick-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.hero-trust-line {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeBounce 2s ease-in-out infinite;
}

@keyframes fadeBounce {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}

/* Sections - full viewport height, content centered to optimize space */
.section {
  padding: clamp(2rem, 4vh, 4rem) 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.section > .container,
.section > .experience-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-divider {
  flex: 0 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 clamp(0.5rem, 1vh, 0.75rem);
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent-gradient);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(1.25rem, 2.5vh, 2.5rem) auto;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Experience section - same as Packages */
.experience {
  background: var(--bg-section);
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.experience::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.experience .container {
  position: relative;
  z-index: 1;
}

.experience-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.experience-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 54, 93, 0.15);
}

.experience-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.experience-image-accent {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 5px;
  background: var(--accent-gradient);
}

.experience-content .section-title::after {
  margin-left: 0;
  margin-right: auto;
}

.experience-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.experience-content p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.experience-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
  font-weight: 500;
}

.experience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Section divider */
.section-divider {
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--amber), transparent);
  opacity: 0.9;
}

/* Destinations - same as Packages */
.destinations {
  background: var(--bg-section);
}

.destinations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.destinations::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.destinations .container {
  position: relative;
  z-index: 1;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.destination-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.destination-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.destination-card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.destination-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 18, 28, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

.destination-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-card-image-wrap img {
  transform: scale(1.08);
}

.destination-card-label {
  position: absolute;
  bottom: 0.85rem;
  left: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 18, 28, 0.9);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  z-index: 1;
}

.destination-card-body {
  padding: 1.5rem 1.6rem;
}

.destination-card-no-img .destination-card-body {
  padding: 1.75rem;
}

.card-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.destination-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.4rem;
}

.destination-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Packages */
.packages {
  background: var(--bg-section);
}

.packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.packages::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.packages .container {
  position: relative;
  z-index: 1;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.package-card {
  text-align: center;
  padding: clamp(1.5rem, 2.5vh, 2.25rem) 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.package-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.3);
}

.package-card:hover::before {
  opacity: 1;
}

.package-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.85rem;
}

.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.package-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Fleet & Rates - same as Packages */
.services {
  background: var(--bg-section);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(1rem, 1.5vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vh, 1.75rem);
}

.fleet-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.fleet-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 162, 39, 0.2);
}

.fleet-name {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.fleet-rate {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fleet-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Contact */
.contact {
  background: var(--bg-section);
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact .section-title,
.contact .section-subtitle,
.contact-note {
  color: var(--white);
}

.contact .section-subtitle {
  opacity: 0.9;
}

.contact-note {
  opacity: 0.85;
}

.booking-form {
  max-width: 420px;
  margin: 0 auto 2rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row:last-of-type {
  margin-bottom: 1.5rem;
}

.booking-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.booking-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  outline: none;
  transition: background var(--transition), border-color var(--transition);
}

.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.booking-form input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  box-shadow: var(--focus-ring);
}

.booking-form .btn,
.booking-form .btn-submit {
  width: 100%;
}

.booking-form .required {
  color: var(--gold);
}

/* Fixed WhatsApp FAB – bottom-right only */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.6);
}

.whatsapp-fab svg {
  flex-shrink: 0;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  display: block;
}

.whatsapp-fab-text {
  font-weight: 600;
  font-size: 0.8rem;
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }

  .whatsapp-fab-text {
    display: none;
  }
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.5);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  width: 48px;
  height: 48px;
}

.contact-icon svg {
  display: block;
}

.contact-icon-phone {
  color: rgba(255, 255, 255, 0.95);
}

.contact-icon-phone svg {
  color: inherit;
}

.contact-icon-whatsapp {
  color: #25D366;
}

.contact-icon-whatsapp svg {
  fill: currentColor;
}

.contact-card strong {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.35rem;
  text-align: center;
  word-break: break-word;
  line-height: 1.4;
}

.contact-card small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.contact-address {
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition), border-color var(--transition);
}

.contact-address:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}

.contact-address strong {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.contact-address p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--white);
  opacity: 0.95;
}

.contact-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.contact .contact-note {
  color: var(--white);
  opacity: 0.9;
}

/* Footer */
.footer {
  padding: 1.5rem;
  background: var(--bg-dark);
  color: var(--text-muted);
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
  margin: 0;
  opacity: 0.9;
}

.credits {
  text-align: center;
  padding: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin: 0;
  background: var(--bg-dark);
}

.credits a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 500;
}

.credits a:hover {
  text-decoration: underline;
}

.credits a:focus-visible {
  outline: none;
  text-decoration: underline;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

/* WhatsApp FAB - fixed bottom-right */
.whatsapp-fab {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  right: max(1.5rem, env(safe-area-inset-right));
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.whatsapp-fab-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-search {
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem;
  }

  .hero-search-input {
    width: 100%;
  }

  .hero-search-btn {
    width: 100%;
  }
}

/* Nav backdrop (mobile) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(19, 37, 68, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

@media (max-width: 768px) {
  .nav-backdrop {
    display: block;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 4.5rem 1.25rem 2rem;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 110;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-links a {
    display: block;
    padding: 1rem 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    color: #0e1926 !important;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: #0e1926 !important;
    background: rgba(0, 0, 0, 0.06);
  }

  .nav-links .nav-cta {
    margin: 1rem 0 0;
    margin-left: 0;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    color: var(--white) !important;
    border-radius: 8px;
  }

  .nav-links .nav-cta:hover {
    color: var(--white) !important;
    background: var(--amber);
  }

  /* Header: ensure solid and logo fits */
  .header {
    background: var(--deep-blue);
  }

  .logo {
    font-size: 1.05rem;
    max-width: 72%;
    white-space: normal;
    line-height: 1.25;
    word-break: break-word;
  }

  .logo-img {
    height: 40px;
    max-height: 42px;
  }

  .hero {
    min-height: 80vh;
    min-height: 80dvh;
    padding-top: 5.5rem;
  }

  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-tagline {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-quick-links {
    font-size: 0.85rem;
    gap: 0.4rem 0.6rem;
  }

  .hero-trust-line {
    font-size: 0.8rem;
  }

  .hero-scroll {
    bottom: 4.5rem;
  }

  .btn-primary {
    padding: 0.9rem 1.5rem;
    min-height: 48px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-title::after {
    width: 44px;
  }

  .experience-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experience-content .section-title {
    text-align: center;
  }

  .experience-content .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .experience-image-wrap {
    order: -1;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card-image-wrap {
    height: 180px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: clamp(1.5rem, 4vh, 3.5rem) 0;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .contact-card {
    min-width: 100%;
    padding: 1.5rem 1.25rem;
  }

  .footer {
    padding: 1rem 1rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
}
