/* ==========================================================================
   Goa Tourist Taxi — Official Tourism & Sightseeing Design System
   Brand Color Palette: Sunset Orange (#FF6B35), Coral (#E94E35), Teal (#16A085)
   ========================================================================== */

:root {
  /* Brand Palette from Export */
  --primary-orange: #FF6B35;
  --primary-orange-hover: #e55a26;
  --secondary-coral: #E94E35;
  --accent-teal: #16A085;
  --accent-teal-hover: #117a65;
  --dark-navy: #2C3E50;
  --dark-navy-deep: #1e2b37;
  --dark-navy-card: #243342;
  --light-bg: #F8F9FA;
  --light-card: #FFFFFF;
  --border-light: #E2E8F0;
  --border-warm: rgba(255, 107, 53, 0.3);

  /* Functional */
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1eb956;
  --call-blue: #0284c7;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', 'Roboto', -apple-system, sans-serif;
  --text-dark: #2C3E50;
  --text-muted: #64748B;
  --text-light: #FFFFFF;

  /* Sizing & Radius */
  --max-width: 1200px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 25px -5px rgba(44, 62, 80, 0.08), 0 8px 10px -6px rgba(44, 62, 80, 0.04);
  --shadow-hover: 0 20px 35px -8px rgba(44, 62, 80, 0.15);
  --shadow-orange: 0 8px 25px rgba(255, 107, 53, 0.35);
  --shadow-green: 0 8px 25px rgba(37, 211, 102, 0.35);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* Top Special Offer Announcement Strip */
.top-banner {
  background: linear-gradient(90deg, var(--secondary-coral), var(--primary-orange), var(--secondary-coral));
  color: #ffffff;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  letter-spacing: 0.2px;
}
.top-banner .badge {
  background: #ffffff;
  color: var(--primary-orange);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.top-banner a {
  text-decoration: underline;
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.brand-fallback-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-coral));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-orange);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-text .title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.brand-text .sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.desktop-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  padding: 7px 9px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary-orange);
  background: rgba(255, 107, 53, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  color: var(--dark-navy);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-header-call:hover {
  background: #edf2f7;
  border-color: #cbd5e1;
}
.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--whatsapp-green), #1eb956);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-green);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-header-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Quick Action Buttons (hidden on desktop) */
.btn-mobile-call-icon,
.btn-mobile-wa-icon {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  flex-shrink: 0;
}
.btn-mobile-call-icon {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--dark-navy);
}
.btn-mobile-wa-icon {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
}

.mobile-menu-btn {
  display: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--dark-navy);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.mobile-menu-btn:hover {
  background: #f1f5f9;
}

.nav-drawer-footer {
  display: none;
}

.nav-close-bar {
  display: none;
}
.nav-close-bar .close-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-close-bar .close-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--dark-navy);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Hero Section with Background Image
   ========================================================================== */
.tourist-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(22, 160, 133, 0.75)),
              url('https://goatouristtaxi.in/wp-content/uploads/2025/07/pexels-ajay-donga-1113836-2174656-1-scaled.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 80px 0 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-title span.highlight {
  color: #FFD166;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-hl-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-hl-icon {
  font-size: 1.5rem;
}
.hero-hl-text strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.2;
}
.hero-hl-text span {
  font-size: 0.74rem;
  opacity: 0.85;
}

/* Tour Booking & Inquiry Widget */
.tour-calc-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
}

.calc-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark-navy);
}
.calc-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 6px;
}
.form-select, .form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
  background: #ffffff;
}
.form-select:focus, .form-input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.calc-price-banner {
  background: #FFF7ED;
  border: 1.5px solid #FFEDD5;
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-info-left span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-orange);
}
.price-info-left strong {
  font-size: 0.95rem;
  color: var(--dark-navy);
}
.price-info-right {
  text-align: right;
}
.price-info-right .amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
}
.price-info-right .discount-applied {
  font-size: 0.72rem;
  color: var(--accent-teal);
  font-weight: 700;
}

.calc-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-tour-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--whatsapp-green), #1eb956);
  color: #ffffff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-green);
  transition: var(--transition-fast);
}
.btn-tour-wa:hover {
  transform: translateY(-2px);
}
.btn-tour-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark-navy);
  color: #ffffff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}
.btn-tour-call:hover {
  background: var(--dark-navy-deep);
  transform: translateY(-2px);
}

/* ==========================================================================
   Special Offer Banner (Elementor Banner Recreated)
   ========================================================================== */
.offer-section {
  position: relative;
  background: linear-gradient(135deg, rgba(233, 78, 53, 0.92), rgba(255, 107, 53, 0.92)),
              url('https://goatouristtaxi.in/wp-content/uploads/2025/07/Discover-reliable-Goa-tourist-and-airport-taxi-services-with-this-vibrant-advertisement-featuring-a-white-Skoda-taxi-parked-against-the-backdrop-of-Aguada-Fort-and-lush-greenery-1024x683.png') center/cover no-repeat;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.offer-box {
  max-width: 800px;
  margin: 0 auto;
}
.offer-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.offer-box p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.95;
}
.btn-offer-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary-orange);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: var(--transition-fast);
}
.btn-offer-book:hover {
  transform: scale(1.05);
  color: var(--secondary-coral);
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

/* ==========================================================================
   GTT Fleet Section
   ========================================================================== */
.gtt-fleet-panorama {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 36px;
}
.gtt-fleet-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.gtt-fleet-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 20px 24px 18px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.gtt-fleet-overlay span {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.gtt-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gtt-fleet-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gtt-fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.35);
}
.gtt-fleet-img {
  position: relative;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.06);
}
.gtt-fleet-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}
.gtt-fleet-card:hover .gtt-fleet-img img {
  transform: scale(1.06);
}
.gtt-fleet-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--primary-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gtt-fleet-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 6px;
}
.gtt-fleet-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin: 0;
}
.gtt-fleet-body p {
  font-size: 0.8rem;
  color: #64748B;
  margin: 0;
}
.gtt-fleet-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.gtt-fleet-tags span {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  color: #475569;
}
.gtt-fleet-btn {
  margin-top: auto;
  padding-top: 14px;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-coral));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gtt-fleet-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .gtt-fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gtt-fleet-grid {
    grid-template-columns: 1fr;
  }
  .gtt-fleet-panorama {
    height: 150px;
  }
  .gtt-fleet-overlay {
    gap: 10px;
    padding: 14px 16px 12px;
  }
  .gtt-fleet-overlay span {
    font-size: 0.76rem;
  }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Sightseeing Tours Grid
   ========================================================================== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-warm);
}
.tour-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-img img {
  transform: scale(1.08);
}
.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-orange);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.tour-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(44, 62, 80, 0.85);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.tour-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 8px;
}
.tour-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.tour-highlights-box {
  background: var(--light-bg);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--dark-navy);
  margin-bottom: 20px;
}
.tour-highlights-box strong {
  display: block;
  color: var(--accent-teal);
  margin-bottom: 4px;
}
.tour-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.tour-price-box span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.tour-price-box strong {
  font-size: 1.3rem;
  color: var(--primary-orange);
}
.btn-tour-book {
  background: linear-gradient(135deg, var(--whatsapp-green), #1eb956);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.btn-tour-book:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   Mandovi River Cruises (Dinner & Sunset)
   ========================================================================== */
.cruise-section {
  background: #F1F5F9;
}
.cruise-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.cruise-tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--dark-navy);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}
.cruise-tab-btn.active {
  background: var(--accent-teal);
  color: #ffffff;
  border-color: var(--accent-teal);
  box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.cruises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cruise-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}
.cruise-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-teal);
}
.cruise-card-img {
  height: 170px;
  overflow: hidden;
}
.cruise-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cruise-card-body {
  padding: 18px;
}
.cruise-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 6px;
}
.cruise-meta-tag {
  font-size: 0.8rem;
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 12px;
}
.btn-cruise-wa {
  display: block;
  text-align: center;
  background: rgba(22, 160, 133, 0.12);
  border: 1.5px solid var(--accent-teal);
  color: var(--accent-teal);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition-fast);
}
.btn-cruise-wa:hover {
  background: var(--accent-teal);
  color: #ffffff;
}

/* ==========================================================================
   Car Rental Price Table (Elementor Price Table Recreated)
   ========================================================================== */
.rental-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}
.rental-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}
.rental-table th {
  background: var(--primary-orange);
  color: #ffffff;
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rental-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--dark-navy);
}
.rental-table tr:hover td {
  background: #FFF7ED;
}
.rental-table .car-name {
  font-weight: 700;
  color: var(--dark-navy);
}
.rental-table .price-cell {
  font-weight: 800;
  color: var(--secondary-coral);
}

/* ==========================================================================
   Travel Blogs Section (from Export)
   ========================================================================== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}
.blog-img-wrap {
  height: 180px;
  overflow: hidden;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.blog-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-read-link {
  margin-top: auto;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   Founder & About Section
   ========================================================================== */
.about-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.about-photo-wrap {
  background: var(--light-bg);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-wrap img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  max-height: 400px;
}
.about-content {
  padding: 40px 40px 40px 0;
}
.about-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 12px;
}
.about-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--dark-navy);
  color: #ECF0F1;
  padding: 60px 0 100px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand h4 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 18px;
}
.footer-col h5 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: #BDC3C7;
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #95A5A6;
}

/* ==========================================================================
   Mobile Sticky Action Bar & Floating Button
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.12);
}
.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark-navy);
  color: #ffffff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}
.sticky-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--whatsapp-green), #1eb956);
  color: #ffffff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.floating-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: var(--shadow-green);
  z-index: 900;
  transition: var(--transition-smooth);
}
.floating-wa-btn:hover {
  transform: scale(1.08) rotate(6deg);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
.table-scroll-hint {
  display: none;
  font-size: 0.78rem;
  color: var(--primary-orange);
  padding: 8px 12px;
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
}

/* At medium laptop widths, hide call button text to save space */
@media (max-width: 1080px) and (min-width: 901px) {
  .btn-header-call span {
    display: none;
  }
  .btn-header-call {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none !important;
  }
  .desktop-nav.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px 32px 24px;
    gap: 6px;
    border-bottom: 3px solid var(--primary-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow-y: auto;
  }
  .desktop-nav.mobile-open a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--dark-navy);
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #edf2f7;
    width: 100%;
  }
  .desktop-nav.mobile-open a::after {
    content: '›';
    font-size: 1.2rem;
    color: var(--primary-orange);
  }
  .desktop-nav.mobile-open a:hover,
  .desktop-nav.mobile-open a.active {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border-color: rgba(255, 107, 53, 0.3);
  }

  .nav-drawer-footer {
    display: block;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
  }
  .drawer-contact-card {
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .drawer-contact-card .card-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-orange);
    letter-spacing: 0.5px;
  }
  .drawer-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .drawer-actions-row a {
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    gap: 6px;
    padding: 10px !important;
    font-size: 0.84rem !important;
    border-radius: 8px !important;
    text-align: center;
  }
  .drawer-actions-row a::after {
    display: none !important;
  }
  .btn-drawer-call {
    background: var(--dark-navy) !important;
    color: #fff !important;
  }
  .btn-drawer-wa {
    background: var(--whatsapp-green) !important;
    color: #fff !important;
  }

  /* Header action buttons on mobile/tablet */
  .header-actions .btn-header-call,
  .header-actions .btn-header-whatsapp {
    display: none !important;
  }
  .btn-mobile-call-icon,
  .btn-mobile-wa-icon {
    display: flex !important;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
  /* Close bar inside overlay nav */
  .nav-close-bar {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cruises-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding: 0 16px 30px 16px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .table-scroll-hint {
    display: block;
  }
  .top-banner {
    font-size: 0.76rem;
    padding: 8px 12px;
    gap: 6px;
    line-height: 1.35;
  }
  .top-banner .badge {
    display: none;
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 60px;
    gap: 8px;
  }
  .brand-logo-img {
    height: 32px;
  }
  .brand-fallback-icon {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
  .brand-text .title {
    font-size: 0.98rem;
  }
  .brand-text .sub {
    display: none;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .tourist-hero {
    padding: 52px 0 64px 0;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
  }
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .cruises-grid {
    grid-template-columns: 1fr;
  }
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .tour-calc-card {
    padding: 20px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .mobile-sticky-bar {
    display: block;
  }
  .floating-wa-btn {
    display: none;
  }
}

@media (max-width: 540px) {
  .calc-btn-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .btn-tour-wa,
  .btn-tour-call {
    width: 100%;
    padding: 13px;
    font-size: 0.9rem;
  }
  .calc-price-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .price-info-right {
    text-align: left;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px dashed rgba(255, 107, 53, 0.25);
    padding-top: 10px;
  }
}
