@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* UI Design Tokens */
:root {
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Official Brand Colors */
  --primary: #0B3D91;          /* Royal Blue */
  --primary-hover: #082d6b;
  --primary-light: #e7effb;
  
  --secondary: #F58220;        /* Orange */
  --secondary-hover: #d46c16;
  --secondary-glow: rgba(245, 130, 32, 0.25);
  
  --bg-white: #FFFFFF;
  --bg-grey: #F6F7FB;          /* Light Slate Grey */
  --dark-color: #1A1A1A;       /* Charcoal Black */
  --dark-grey: #2D2D2D;
  
  --text-dark: #222222;
  --text-grey: #666666;
  --text-light: #F8FAF9;
  
  --success: #28A745;          /* Green */
  --warning: #FFC107;          /* Yellow */
  --border: rgba(0, 0, 0, 0.08);
  --border-white: rgba(255, 255, 255, 0.15);

  /* Layout Standards */
  --radius-card: 16px;
  --radius-pill: 50px;
  --shadow-standard: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 8px 24px rgba(11, 61, 145, 0.2);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  
  --header-height: 80px;
  --topbar-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0.5em;
}

p {
  color: var(--text-grey);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Watermark System (Mandatory Specification) */
.watermarked {
  position: relative;
  overflow: hidden;
}

.watermarked::after {
  content: "SARA CAB®";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.25rem;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.11); /* 11% opacity */
  text-shadow: 
    -1px -1px 0 rgba(0, 0, 0, 0.05),  
     1px -1px 0 rgba(0, 0, 0, 0.05),  
    -1px  1px 0 rgba(255, 255, 255, 0.1),  
     1px  1px 0 rgba(255, 255, 255, 0.1);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 5;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--bg-grey);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--primary);
}

.text-accent {
  color: var(--secondary);
}

/* Button Styling (Pill-shaped, Hover 1.02 scale) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  gap: 8px;
}

.btn:hover {
  transform: scale(1.02);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(11, 61, 145, 0.15);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-accent {
  background-color: var(--secondary);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(245, 130, 32, 0.2);
}

.btn-accent:hover {
  background-color: var(--secondary-hover);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* Top Bar Banner */
.top-bar {
  background-color: var(--primary);
  color: var(--text-light);
  height: var(--topbar-height);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--secondary);
}

/* Sticky Shrinking Header */
header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
}

/* Header Shrinking on scroll */
header.scrolled {
  height: 65px;
  top: 0;
  box-shadow: var(--shadow-standard);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img, .logo svg.logo-icon {
  height: 44px;
  width: auto;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

header.scrolled .logo img, header.scrolled .logo svg.logo-icon {
  height: 36px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-text span {
  color: var(--secondary);
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-grey);
  font-weight: 600;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-menu-cta {
  display: none;
}

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

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.nav-phone-link svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-normal);
  border-radius: 2px;
}

/* Hero Section with Glassmorphism Widget */
.hero {
  padding-top: calc(var(--header-height) + var(--topbar-height) + 50px);
  padding-bottom: 70px;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(11, 61, 145, 0.85) 0%, rgba(11, 61, 145, 0.4) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: -1;
}

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

.hero-content {
  color: var(--bg-white);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-bullets {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-white);
  padding: 6px 14px;
  border-radius: 30px;
}

.hero-bullet-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

/* Wreath Guarantee Badge */
.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-white);
  padding: 10px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.hero-guarantee-wreath {
  font-size: 1.8rem;
  line-height: 1;
}

.hero-guarantee-text {
  text-align: left;
}

.hero-guarantee-text h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary);
}

.hero-guarantee-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Glassmorphism Booking Widget (Only Hero) */
.booking-widget-container {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: var(--bg-white);
}

.widget-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 4px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.widget-tab-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.widget-tab-btn.active {
  background-color: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-standard);
}

.widget-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.widget-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.widget-form-group label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.85);
}

.widget-input-wrapper {
  position: relative;
}

.widget-input-wrapper svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.widget-form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 14px 10px 38px;
  font-family: var(--font-body);
  color: var(--bg-white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.widget-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.widget-form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--secondary);
}

.widget-form-control option {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* Feature Ribon Bar below Hero */
.features-bar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.features-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-bar-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.feature-bar-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1px;
}

.feature-bar-text p {
  font-size: 0.75rem;
  margin-bottom: 0;
  color: var(--text-grey);
}

/* Cards Grid Standard (Rounded 16px, Padding 24px, Shadow 0 12px 30px) */
.card-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-standard);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon-wrapper svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Package Card with Images */
.package-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-standard);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.package-img-wrapper {
  height: 160px;
  overflow: hidden;
  background-color: #eee;
}

.package-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.package-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  border-top: 1px solid var(--bg-grey);
  padding-top: 12px;
}

.package-price-label {
  font-size: 0.75rem;
  color: var(--text-grey);
}

.package-price-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--secondary);
}

.package-vehicle-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Top Destinations Area */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.destination-card {
  position: relative;
  height: 130px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-standard);
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
  transition: var(--transition-normal);
}

.destination-card:hover img {
  transform: scale(1.06);
}

.destination-card:hover::before {
  background: linear-gradient(to top, rgba(11, 61, 145, 0.8) 0%, rgba(11, 61, 145, 0.3) 60%, transparent 100%);
}

.destination-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bg-white);
  z-index: 2;
  margin-bottom: 0;
}

/* Our Fleet Cards */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.fleet-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-standard);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.fleet-img-box {
  background-color: var(--bg-grey);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid var(--border);
}

.fleet-img-box img {
  max-height: 100%;
  object-fit: contain;
}

.fleet-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.fleet-capacity {
  font-size: 0.75rem;
  color: var(--text-grey);
  margin-bottom: 15px;
}

.fleet-pricing-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bg-grey);
  padding-top: 12px;
  margin-top: auto;
}

.fleet-pricing-label {
  font-size: 0.75rem;
  color: var(--text-grey);
}

.fleet-pricing-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  position: relative;
  margin-top: 40px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-light);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: var(--primary);
  box-shadow: var(--shadow-standard);
  transition: var(--transition-normal);
  z-index: 2;
  position: relative;
}

.step-item:hover .step-bubble {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.step-bubble svg {
  width: 24px;
  height: 24px;
}

.step-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-grey);
  margin-bottom: 4px;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Connecting arrows/lines in steps */
.step-item::after {
  content: "→";
  position: absolute;
  top: 20px;
  right: -25px;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  z-index: 1;
}

.step-item:last-child::after {
  display: none;
}

/* Why Choose Us & Trust Section */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checklist-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(40, 167, 69, 0.15);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.checklist-icon svg {
  width: 12px;
  height: 12px;
}

.checklist-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.checklist-text p {
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.why-us-img-box {
  background-color: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-standard);
}

.why-us-img-box img {
  width: 100%;
  display: block;
}

/* Dynamic Pricing Selector in Section bg-grey */
.pricing-tabs-wrapper {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-standard);
}

.city-tabs-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--bg-grey);
  padding-bottom: 16px;
}

.city-tab-btn {
  background: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-grey);
  cursor: pointer;
  transition: var(--transition-normal);
}

.city-tab-btn:hover {
  background-color: rgba(11, 61, 145, 0.05);
  color: var(--primary);
}

.city-tab-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

/* Reviews Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-standard);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-user {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-route {
  font-size: 0.75rem;
  color: var(--text-grey);
  margin-top: 2px;
}

.stars {
  color: var(--warning);
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-grey);
  font-style: italic;
  margin-bottom: 0;
}

/* Payment Badges ribbon */
.payments-ribbon {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background-color: var(--bg-white);
}

.payments-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.payments-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-badge-img {
  height: 36px;
  background-color: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-badge-img svg, .payment-badge-img img {
  height: 22px;
  width: auto;
}

.payment-badge-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-grey);
}

/* FAQ Accordion Styling */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-standard);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.faq-icon {
  width: 14px;
  height: 14px;
  color: var(--text-grey);
  transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--secondary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content-inner {
  padding: 0 20px 16px 20px;
  font-size: 0.85rem;
  color: var(--text-grey);
  border-top: 1px solid transparent;
  line-height: 1.5;
}

.faq-item.active .faq-content-inner {
  border-top-color: var(--bg-grey);
}

/* Inner Page Hero Styling */
.page-hero {
  padding: 130px 0 50px 0;
  background: radial-gradient(circle at 10% 20%, rgba(11, 61, 145, 0.05) 0%, transparent 60%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Inner Page Layout grids */
.about-grid-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.about-feature-row {
  display: flex;
  gap: 16px;
}

.about-feature-bullet {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-bullet svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.about-feature-desc h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-feature-desc p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.contact-layout-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.contact-details-card {
  background-color: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-row {
  display: flex;
  gap: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--secondary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

.contact-detail-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.85rem;
  color: var(--text-grey);
  margin-bottom: 0;
}

.contact-detail-text a:hover {
  color: var(--primary);
}

/* Footer layout */
footer {
  background-color: #0b0e1a;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-box .logo-text {
  color: var(--bg-white);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--bg-white);
}

.social-btn:hover {
  background-color: var(--secondary);
  transform: scale(1.1);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-links-box h3, .footer-contact-box h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links-box h3::after, .footer-contact-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: var(--secondary);
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  width: fit-content;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-row {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-row span {
  line-height: 1.4;
}

.footer-contact-row a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

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

/* Floating Actions Panels */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition-normal);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.float-wa {
  background-color: #25D366;
}

.float-call {
  background-color: var(--primary);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .hero-bullets {
    justify-content: center;
  }
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .step-item::after {
    display: none;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-us-img-box {
    max-width: 500px;
    margin: 0 auto;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .about-grid-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-layout-box {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  .footer-logo-box {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Mobile menu active states */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 40px 40px 40px;
    box-shadow: var(--shadow-standard);
    z-index: 1000;
    transition: var(--transition-normal);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1rem;
    width: 100%;
  }
  
  .nav-menu-cta {
    display: inline-flex;
    margin-top: 15px;
    width: 100%;
  }
  
  .nav-cta {
    display: none;
  }
  
  .features-bar-container {
    justify-content: center;
  }
  
  .top-bar {
    display: none;
  }
  
  header {
    top: 0;
  }
  
  .hero {
    padding-top: calc(var(--header-height) + 30px);
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-logo-box {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .destination-grid {
    grid-template-columns: 1fr;
  }
  .city-tabs-strip {
    gap: 4px;
  }
  .city-tab-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}
