/* ═══════════════════════════════════════════════════════
   Tourist Taxi Booking – Main Stylesheet
   Colors: #C0392B (primary), #E67E22 (secondary),
           #1A2A4A (dark), #FDF3E7 (light), #1C2833 (text)
   Fonts:  Playfair Display (headings), Poppins (body)
═══════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary:   #C0392B;
  --secondary: #E67E22;
  --dark:      #1A2A4A;
  --light:     #FDF3E7;
  --white:     #FFFFFF;
  --text:      #1C2833;
  --gray:      #6B7280;
  --border:    #E5E7EB;
  --shadow:    0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: .3s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; line-height: 1.7; font-size: 15px; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.3; color: var(--dark); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; font-family: 'Poppins',sans-serif;
  border: 2px solid var(--primary); cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: #a93226; border-color: #a93226; color: #fff; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--secondary); color: #fff;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: 2px solid var(--secondary); cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover { background: #d35400; border-color: #d35400; color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: 2px solid var(--primary); cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: #fff;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: 2px solid var(--dark); cursor: pointer;
  transition: all var(--transition);
}
.btn-dark:hover { background: #0f1e36; }
.btn-primary-sm {
  background: var(--primary); color: #fff; padding: 9px 20px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  transition: all var(--transition);
}
.btn-primary-sm:hover { background: #a93226; color: #fff; }
.btn-outline-sm {
  background: transparent; color: var(--dark); padding: 8px 16px;
  border-radius: var(--radius); font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--dark); transition: all var(--transition);
}
.btn-outline-sm:hover { background: var(--dark); color: #fff; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,42,74,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: all var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.logo img { height: 48px; }
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 4px; transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: #fff; background: rgba(192,57,43,.4);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; }

/* ── Hero ───────────────────────────────────────────── */
.hero-section { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-swiper { height: 100%; }
.hero-slide {
  position: relative; height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,42,74,.75) 0%, rgba(192,57,43,.45) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px; padding-top: 72px;
}
.hero-eyebrow {
  display: inline-block; background: var(--secondary); color: #fff;
  padding: 6px 18px; border-radius: 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 4rem); color: #fff; margin-bottom: 16px; line-height: 1.2; }
.hero-title span { color: var(--secondary); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.88); max-width: 600px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-pagination { position: absolute; bottom: 180px !important; z-index: 3; }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.6); width: 10px; height: 10px; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--secondary); transform: scale(1.2); }

/* ── Booking Widget ─────────────────────────────────── */
.booking-widget-wrap {
  position: relative; z-index: 10;
  margin-top: -70px; padding: 0 20px 40px;
}
.booking-widget {
  max-width: 1100px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.booking-widget-header {
  background: var(--dark); color: #fff;
  padding: 16px 28px; display: flex; align-items: center; gap: 10px;
}
.booking-widget-header h3 { font-family: 'Poppins',sans-serif; font-size: 16px; font-weight: 600; color: #fff; }
.booking-widget-body {
  padding: 24px 28px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; align-items: end;
}
.bw-field label { display: block; font-size: 12px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.bw-field select, .bw-field input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 14px; font-family: 'Poppins',sans-serif;
  color: var(--text); background: #fff; transition: border-color var(--transition);
  appearance: none;
}
.bw-field select:focus, .bw-field input:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.bw-field .select-wrap { position: relative; }
.bw-field .select-wrap::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--gray); pointer-events: none;
}
.bw-submit { display: flex; align-items: flex-end; }
.bw-submit .btn-primary { width: 100%; justify-content: center; padding: 12px 20px; }

/* ── Section Styles ─────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .eyebrow {
  display: inline-block; color: var(--primary); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--dark); margin-bottom: 12px; }
.section-header p { font-size: 1rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.divider-line {
  width: 60px; height: 3px; background: linear-gradient(90deg,var(--primary),var(--secondary));
  margin: 12px auto 0; border-radius: 2px;
}

/* ── Vehicle Category Cards ─────────────────────────── */
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.vehicle-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--border);
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vehicle-card-img {
  position: relative; height: 200px; overflow: hidden;
}
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }
.vehicle-category-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff; padding: 4px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 600;
}
.vehicle-card-body { padding: 20px; }
.vehicle-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.vehicle-card-meta { display: flex; gap: 12px; margin: 10px 0; flex-wrap: wrap; }
.vehicle-meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray); }
.vehicle-meta-item i { color: var(--primary); width: 14px; }
.vehicle-card-price { margin: 14px 0 16px; }
.vehicle-card-price .from { font-size: 12px; color: var(--gray); }
.vehicle-card-price .amount { font-size: 1.25rem; font-weight: 700; color: var(--primary); font-family: 'Courier Prime',monospace; }
.vehicle-card-price .per { font-size: 12px; color: var(--gray); }
.vehicle-card-actions { display: flex; gap: 10px; }
.vehicle-card-actions .btn-primary, .vehicle-card-actions .btn-outline { flex: 1; justify-content: center; font-size: 13px; padding: 10px 12px; }

/* ── Pricing Table ──────────────────────────────────── */
.pricing-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pricing-tab {
  padding: 9px 20px; border-radius: 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: 2px solid var(--border); background: #fff; color: var(--gray);
  transition: all var(--transition);
}
.pricing-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.pricing-table-wrap { overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--dark); color: #fff; padding: 13px 16px;
  font-size: 13px; font-weight: 600; text-align: left;
}
.pricing-table td {
  padding: 11px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text);
}
.pricing-table tr:nth-child(even) td { background: #fafafa; }
.pricing-table tr:hover td { background: #FDF3E7; }
.pricing-table .price-col { font-weight: 700; color: var(--primary); font-family: 'Courier Prime',monospace; font-size: 15px; }
.pricing-note { margin-top: 12px; font-size: 13px; color: var(--gray); padding: 12px 16px; background: #FDF3E7; border-radius: var(--radius); border-left: 3px solid var(--secondary); }

/* ── Features / Why Us ──────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 28px; }
.feature-card { text-align: center; padding: 32px 24px; }
.feature-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 28px; color: #fff;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── Reviews ────────────────────────────────────────── */
.review-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border); height: 100%;
}
.review-stars { color: #F59E0B; margin-bottom: 12px; }
.review-stars i { font-size: 15px; }
.review-body { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.review-author-name { font-weight: 600; font-size: 14px; }
.review-author-nat { font-size: 12px; color: var(--gray); }

/* ── Blog Cards ─────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.blog-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-cat-badge {
  display: inline-block; background: #FDE8D8; color: var(--secondary);
  padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--gray); }
.blog-meta i { color: var(--primary); }

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2C3E50 100%);
  text-align: center; padding: 72px 20px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(192,57,43,.15) 0%, transparent 60%);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Booking Form ────────────────────────────────────── */
.booking-steps {
  display: flex; gap: 0; margin-bottom: 40px;
  border-radius: var(--radius); overflow: hidden; background: var(--border);
}
.booking-step {
  flex: 1; padding: 16px 12px; text-align: center;
  background: #f5f5f5; position: relative; font-size: 14px; font-weight: 600;
  color: var(--gray); transition: all var(--transition);
}
.booking-step.active { background: var(--primary); color: #fff; }
.booking-step.done { background: var(--dark); color: rgba(255,255,255,.7); }
.booking-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: rgba(0,0,0,.1);
  font-size: 12px; margin-right: 6px;
}
.booking-step.active .booking-step-num { background: rgba(255,255,255,.3); }

.form-section { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); margin-bottom: 24px; }
.form-section h3 { font-size: 1.2rem; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group label .req { color: var(--primary); }
.form-control {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: 'Poppins',sans-serif; color: var(--text);
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.form-control.error { border-color: #e74c3c; }
.form-hint { font-size: 12px; color: var(--gray); }

/* ── Booking Summary Box ─────────────────────────────── */
.booking-summary {
  background: var(--light); border-radius: var(--radius-lg);
  border: 2px solid var(--primary); padding: 28px; margin-bottom: 24px;
}
.booking-summary h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--gray); }
.summary-row .value { font-weight: 600; color: var(--dark); }
.summary-total .value { font-size: 1.3rem; color: var(--primary); font-family: 'Courier Prime',monospace; }

/* ── Vehicle Selector ────────────────────────────────── */
.vehicle-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; }
.vehicle-option {
  border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 20px;
  cursor: pointer; transition: all var(--transition); background: #fff;
}
.vehicle-option:hover { border-color: var(--secondary); }
.vehicle-option.selected { border-color: var(--primary); background: #FDF3E7; }
.vehicle-option input[type=radio] { display: none; }
.vehicle-option-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.vehicle-option-icon { font-size: 24px; color: var(--primary); }
.vehicle-option-name { font-weight: 600; font-size: 15px; }
.vehicle-option-cap { font-size: 12px; color: var(--gray); }
.vehicle-option-price { font-size: 1.2rem; font-weight: 700; color: var(--primary); font-family: 'Courier Prime',monospace; }

/* ── Alerts ──────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.alert-error   { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.alert-info    { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }
.alert-warning { background: #fff3cd; color: #856404; border-left: 4px solid #ffc107; }

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
  padding: 120px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/images/hero/hero-01.jpg') center/cover no-repeat;
  opacity: .15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: var(--secondary); }
.breadcrumb i { font-size: 10px; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand { }
.footer-logo { height: 52px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7);
  font-size: 14px; transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-family: 'Poppins',sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 14px; transition: all var(--transition); }
.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.contact-list li i { color: var(--secondary); margin-top: 3px; width: 14px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,.7); }
.contact-list li a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom-inner a { color: var(--secondary); }
.footer-bottom-inner p:first-child a { color: var(--secondary); font-weight: 600; }

/* ── WhatsApp Float ──────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all var(--transition); overflow: visible;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20c15c; color: #fff; }
.wa-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: #333; color: #fff; padding: 6px 12px; border-radius: 4px;
  font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--transition); font-family: 'Poppins',sans-serif;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── Pagination ──────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--dark); transition: all var(--transition);
}
.page-btn.active, .page-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Stars ───────────────────────────────────────────── */
.stars { color: #F59E0B; }
.stars .fas { color: #F59E0B; }
.stars .far { color: #D1D5DB; }

/* ── Confirmation Page ───────────────────────────────── */
.confirmation-box {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: #fff; border-radius: var(--radius-lg); padding: 52px 40px;
  box-shadow: var(--shadow-lg);
}
.confirmation-icon { font-size: 72px; color: #27ae60; margin-bottom: 20px; }
.booking-ref-display {
  display: inline-block; background: var(--dark); color: #fff;
  padding: 12px 28px; border-radius: 8px; font-size: 1.6rem; font-weight: 700;
  letter-spacing: 2px; font-family: 'Courier Prime',monospace; margin: 16px 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions { display: none; }
  .main-nav.open {
    display: flex; position: fixed; top: 72px; left: 0; right: 0;
    background: var(--dark); z-index: 999; padding: 20px;
    flex-direction: column;
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { display: block; padding: 12px 16px; font-size: 15px; }
  .header-actions.open { display: flex; flex-direction: column; padding: 0 20px 20px; gap: 10px; position: fixed; top: 72px; left: 0; right: 0; background: var(--dark); z-index: 998; padding-top: 0; }
  .hamburger { display: flex; }
  .nav-overlay.open { display: block; }
  .booking-widget-body { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .booking-widget-wrap { margin-top: -40px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .booking-widget-body { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .pricing-tabs { gap: 6px; }
  .pricing-tab { padding: 7px 14px; font-size: 12px; }
}

/* ── Utility ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-dark { color: var(--dark); }
.text-gray { color: var(--gray); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.fw-600 { font-weight: 600; } .fw-700 { font-weight: 700; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-danger  { background: #f8d7da; color: #721c24; }
.badge-info    { background: #d1ecf1; color: #0c5460; }
.badge-dark    { background: var(--dark); color: #fff; }

/* ── Footer Payment Methods ──────────────────────────────── */
.footer-payment { margin-top: 20px; }
.footer-payment-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.footer-payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  cursor: default;
  letter-spacing: .3px;
  min-width: 56px;
  height: 36px;
}
.pay-icon i { font-size: 18px; }

/* PayPal — dark blue */
.pay-paypal {
  background: #003087;
  color: #fff;
  font-size: 12px;
}
.pay-paypal i { color: #009cde; font-size: 16px; }

/* Visa — classic blue */
.pay-visa {
  background: #1a1f71;
  color: #fff;
}
.pay-visa i { font-size: 26px; color: #fff; }

/* Mastercard — dark slate */
.pay-mastercard {
  background: #252525;
  color: #fff;
}
.pay-mastercard i { font-size: 26px; color: #eb001b; }

/* Amex — blue */
.pay-amex {
  background: #2e77bc;
  color: #fff;
}
.pay-amex i { font-size: 24px; color: #fff; }

@media (max-width: 768px) {
  .footer-payment-icons { gap: 6px; }
  .pay-icon { min-width: 48px; height: 32px; padding: 4px 10px; }
  .pay-visa i, .pay-mastercard i { font-size: 22px; }
}

/* ════════════════════════════════════════════════════
   FOOTER TRUST SECTION — Professional Mobile-First
═════════════════════════════════════════════════════ */

.footer-trust {
  background: rgba(0,0,0,.28);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 28px 0;
}

/* Each row = label + icons centered */
.trust-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Section label */
.trust-row-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Icons container — always horizontal row, centered */
.trust-row-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Thin horizontal separator between rows */
.trust-hr {
  width: 50%;
  max-width: 300px;
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 20px auto;
}

/* ── Payment Card Tiles ─────────────────────────────── */
.tpay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,.5);
  transition: transform .18s, box-shadow .18s;
  overflow: hidden;
  cursor: default;
}
.tpay:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.6);
}

.tpay-visa     { background: #1A1F71; padding: 6px 8px; }
.tpay-mc       { background: #1C1C1C; padding: 5px; }
.tpay-amex     { background: #2E77BC; padding: 4px 6px; }
.tpay-discover { background: #ffffff; padding: 4px 5px; }

/* Payhear — special wide pill */
.tpay-payhear {
  background: linear-gradient(135deg, #003087 0%, #0070E0 100%);
  width: 84px;
  border-radius: 8px;
  padding: 0 10px;
  gap: 0;
}
.ph-pay  { font-family:Arial,sans-serif; font-weight:900; font-size:14px; color:#fff; letter-spacing:.5px; }
.ph-hear { font-family:Arial,sans-serif; font-weight:900; font-size:14px; color:#FFD700; letter-spacing:.5px; }

/* ── Certification Badges ───────────────────────────── */
.trust-cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  transition: transform .18s;
}
.trust-cert-badge:hover { transform: scale(1.06); }
.trust-cert-badge img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.5));
}
.trust-cert-badge span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Tablet ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-trust { padding: 22px 0; }
  .tpay { width: 58px; height: 38px; }
  .tpay-payhear { width: 74px; }
  .ph-pay, .ph-hear { font-size: 12px; }
  .trust-cert-badge img { width: 78px; height: 78px; }
  .trust-row-icons { gap: 8px; }
}

/* ── Small Mobile ────────────────────────────────────── */
@media (max-width: 420px) {
  .tpay { width: 50px; height: 34px; border-radius: 6px; }
  .tpay-visa { padding: 4px 6px; }
  .tpay-mc { padding: 4px; }
  .tpay-amex { padding: 3px 4px; }
  .tpay-discover { padding: 3px 4px; }
  .tpay-payhear { width: 66px; padding: 0 8px; }
  .ph-pay, .ph-hear { font-size: 11px; }
  .trust-row-icons { gap: 6px; }
  .trust-cert-badge img { width: 70px; height: 70px; }
  .trust-hr { margin: 16px auto; }
}
