/* ─── Variables ─── */
:root {
  --primary-light-blue: #0693e3;
  --primary-dark-blue: #044b7a;
  --text-dark: #2d2d2d;
  --bg-light: #f4f7fb;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--primary-dark-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ─── Section utilities ─── */
.section-padding { padding: 90px 0; }

.section-title { text-align: center; margin-bottom: 52px; }
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 12px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-light-blue);
  border-radius: 2px;
}
.section-title p {
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.section-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary-light-blue);
  margin-bottom: 8px;
}

/* ─── Buttons ─── */
.btn-primary {
  background-color: var(--primary-light-blue);
  border-color: var(--primary-light-blue);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(6,147,227,0.3);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark-blue);
  border-color: var(--primary-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4,75,122,0.35);
}

.btn-hero {
  background: #fff;
  color: var(--primary-dark-blue);
  border: 2px solid #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  text-decoration: none;
  display: inline-block;
}
.btn-hero:hover {
  background: #ffe066;
  border-color: #ffe066;
  color: var(--primary-dark-blue);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-nav-call {
  background: var(--primary-light-blue);
  color: #fff !important;
  border: none;
  padding: 8px 20px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
}
.btn-nav-call:hover {
  background: #ffe066;
  color: var(--primary-dark-blue) !important;
  transform: translateY(-1px);
}
.btn-nav-call::after { display: none !important; }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(6,147,227,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(6,147,227,0); }
  100% { box-shadow: 0 0 0 0 rgba(6,147,227,0); }
}
.btn-nav-call { animation: pulse-ring 2.2s ease-out infinite; }

@media (max-width: 991px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(4, 75, 122, 0.97);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 10px;
  }
}

/* ─── Navbar ─── */
.navbar {
  transition: all 0.4s ease;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 16px 0;
}
.navbar-brand {
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}
.navbar .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.25s;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--primary-light-blue);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.navbar .nav-link:hover { color: var(--primary-light-blue) !important; }
.navbar .nav-link:hover::after { width: calc(100% - 28px); }

.navbar.scrolled {
  background: rgba(4, 75, 122, 0.92) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  padding: 10px 0;
}
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.88) !important; }
.navbar.scrolled .nav-link:hover { color: var(--primary-light-blue) !important; }
.navbar.scrolled .nav-link::after { background: var(--primary-light-blue); }
.navbar.scrolled .navbar-brand { color: #fff !important; }
.navbar.scrolled .btn-nav-call { background: var(--primary-light-blue); color: #fff !important; }

/* ─── Hero ─── */
.hero-section {
  min-height: 100vh;
  min-height: 100svh; /* excludes mobile browser chrome on iOS/Android */
  background: url('../imgnew/taxi-back.webp') center center / cover no-repeat;
  padding-top: 80px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0; /* inset: 0 fallback for older browsers */
  background: linear-gradient(160deg, rgba(6,147,227,0.25) 0%, rgba(4,75,122,0.45) 100%);
  z-index: 1;
}
.text-accent { color: #ffe066; }

.hero-luxury-tag {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  pointer-events: none;
}
.hero-luxury-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35));
  max-width: 220px;
}
.hero-luxury-line--right {
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.35));
}
.hero-luxury-text {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0 24px;
  white-space: nowrap;
}
.hero-luxury-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffe066;
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .hero-luxury-tag { padding: 0 20px; bottom: 82px; }
  .hero-luxury-line { display: none; }
  .hero-luxury-text { letter-spacing: 2px; font-size: 0.65rem; gap: 12px; padding: 0; }
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  opacity: 0.9;
  margin-bottom: 6px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-phone {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
  margin-bottom: 8px;
  line-height: 1.1;
}
.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  opacity: 0.92;
  line-height: 1.75;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.hero-waves {
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.wave1 use { animation: wave-anim1 10s linear infinite; }
.wave2 use { animation: wave-anim2 7s  linear infinite; }
.wave3 use { animation: wave-anim1 13s linear infinite; }
@keyframes wave-anim1 { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes wave-anim2 { 0%{transform:translateX(0)} 100%{transform:translateX(50%)} }

/* ─── Booking ─── */
.booking-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.09);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
  border-top: 4px solid var(--primary-light-blue);
}
.booking-select {
  border-radius: 12px;
  border: 2px solid #dce8f5;
  color: var(--primary-dark-blue);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 20px;
  height: auto;
  background-color: #edf5ff;
  cursor: pointer;
  transition: border-color 0.25s;
}
.booking-select:focus {
  border-color: var(--primary-light-blue);
  box-shadow: 0 0 0 3px rgba(6,147,227,0.12);
  outline: none;
}
.form-floating .form-control {
  border-radius: 10px;
  border: 1.5px solid #e0e7ef;
  font-size: 1rem; /* must be ≥16px to prevent iOS Safari auto-zoom */
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-floating .form-control:focus {
  border-color: var(--primary-light-blue);
  box-shadow: 0 0 0 3px rgba(6,147,227,0.1);
}
.form-floating label { color: #888; font-size: 0.88rem; }

/* ─── Services ─── */
.service-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
  height: 100%;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(6,147,227,0.18);
}
.service-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 22px 24px 26px; }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--primary-light-blue); }
.service-icon i {
  font-size: 1.25rem;
  color: var(--primary-light-blue);
  transition: color 0.3s;
}
.service-card:hover .service-icon i { color: #fff; }
.service-card h5 { color: var(--primary-dark-blue); font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { color: #666; font-size: 0.89rem; line-height: 1.65; margin-bottom: 0; }

/* ─── Mobile responsive overrides ─── */
@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .booking-card { padding: 24px 18px; }
  .contact-form-card { padding: 24px 18px; }
  .hero-section { padding-bottom: 70px; }
}

/* ─── About ─── */
.about-img-wrap { position: relative; display: block; }
.about-img-wrap img { width: 100%; max-height: 440px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--primary-light-blue);
  color: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(6,147,227,0.4);
}
.about-badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}
.about-badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .about-badge {
    position: static;
    display: inline-block;
    margin-top: 14px;
    border-radius: 12px;
  }
  .about-img-wrap { text-align: center; }
}
.feature-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.feature-box:hover .feature-icon-wrap { background: var(--primary-light-blue); }
.feature-icon-wrap i { font-size: 1.4rem; color: var(--primary-light-blue); transition: color 0.3s; }
.feature-box:hover .feature-icon-wrap i { color: #fff; }
.feature-box h5 { font-size: 1rem; margin-bottom: 4px; }
.feature-box p { font-size: 0.9rem; color: #666; margin-bottom: 0; }

/* ─── Contact ─── */
.contact-section { background: linear-gradient(160deg, #044b7a 0%, #02304f 100%); }
.contact-section .section-title h2::after { background: rgba(255,255,255,0.35); }
.contact-box {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 14px;
  transition: all 0.3s;
}
.contact-box:hover { background: rgba(255,255,255,0.13); transform: translateX(4px); }
.contact-box-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-box-icon i { font-size: 1.2rem; color: var(--primary-light-blue); }
.contact-form-card {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact-form-card .form-control {
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  border: none;
}
.contact-form-card .form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6,147,227,0.2);
}
.contact-form-card label { color: #555; font-size: 0.88rem; }

/* ─── Footer ─── */
.footer-main {
  background: var(--primary-dark-blue);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-brand h4 { color: #fff; margin-bottom: 14px; font-size: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.58); font-size: 0.9rem; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 1.05rem;
}
.footer-social a:hover { background: var(--primary-light-blue); transform: translateY(-3px); color: #fff; }
.footer-links h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links ul li a::before { content: '›'; font-size: 1.1rem; color: var(--primary-light-blue); line-height: 1; }
.footer-links ul li a:hover { color: #fff; padding-left: 4px; }
@media (min-width: 992px) {
  .footer-main .col-lg-4:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 2.5rem;
  }
  .footer-main .col-lg-4:not(:first-child) {
    padding-left: 2.5rem;
  }
}

.footer-bottom {
  background: #02304f;
  padding: 18px 0;
  margin-top: 50px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.42); font-size: 0.84rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light-blue);
  color: #fff;
  font-size: 1.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(6,147,227,0.4);
}
.back-to-top.active { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark-blue); color: #fff; transform: translateY(-3px); }

/* ─── WhatsApp FAB ─── */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.12); color: #fff; box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ─── Service Card Link Wrapper ─── */
a.d-block.h-100.text-decoration-none:hover .service-card {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(6,147,227,0.18);
}
a.d-block.h-100.text-decoration-none:hover .service-card-img { transform: scale(1.05); }
a.d-block.h-100.text-decoration-none:hover .service-icon { background: var(--primary-light-blue); }
a.d-block.h-100.text-decoration-none:hover .service-icon i { color: #fff; }

/* ─── Service Details: Hero ─── */
.sd-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-dark-blue);
}
.sd-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.sd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(4,75,122,0.72) 0%, rgba(2,48,79,0.88) 100%);
  z-index: 1;
}
.sd-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 110px 20px 56px;
}
.sd-hero-content h1 {
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);
  margin: 0;
}
.sd-breadcrumb { margin-bottom: 14px; }
.sd-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.84rem;
}
.sd-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.sd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.55); font-size: 0.84rem; }
.sd-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ─── Service Details: Sidebar ─── */
.sd-sidebar-widget {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 16px;
  overflow: hidden;
}
.sd-sidebar-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
  padding: 18px 20px 14px;
  margin: 0;
  border-bottom: 1px solid #e0e7ef;
  letter-spacing: 0.2px;
}
.sd-sidebar-nav {
  list-style: none;
  padding: 10px;
  margin: 0;
}
.sd-sidebar-nav li { margin-bottom: 4px; }
.sd-sidebar-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.22s ease;
}
.sd-sidebar-nav a i { font-size: 0.75rem; opacity: 0; transition: opacity 0.2s; }
.sd-sidebar-nav a:hover,
.sd-sidebar-nav a.active {
  background: var(--primary-light-blue);
  color: #fff;
  padding-left: 18px;
}
.sd-sidebar-nav a:hover i,
.sd-sidebar-nav a.active i { opacity: 1; }

/* ─── Service Details: Contact Card ─── */
.sd-contact-card {
  background: linear-gradient(160deg, var(--primary-dark-blue) 0%, #02304f 100%);
  border-radius: 16px;
  padding: 26px 22px 22px;
  color: #fff;
}
.sd-contact-card h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.sd-contact-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.sd-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.sd-contact-item i { color: #ffe066; font-size: 1rem; flex-shrink: 0; }
.sd-contact-item a { color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.2s; }
.sd-contact-item a:hover { color: #ffe066; }

/* ─── Service Details: Content Area ─── */
.sd-content-area {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
}
.sd-content-area h2,
.sd-content-area h3 {
  color: var(--primary-dark-blue);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.sd-content-area p { margin-bottom: 1rem; }
.sd-content-area ul,
.sd-content-area ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.sd-content-area li { margin-bottom: 0.4rem; }
.sd-content-placeholder {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 52px 40px;
  text-align: center;
}
.sd-content-placeholder h3 { color: var(--primary-dark-blue); margin-bottom: 14px; }
.sd-content-placeholder p { color: #666; max-width: 480px; margin: 0 auto 0; line-height: 1.7; }
.sd-content-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.sd-content-icon i { font-size: 1.9rem; color: var(--primary-light-blue); }

/* ─── Booknow Page ─── */
.booknow-page { background: var(--bg-light); min-height: 80vh; }
.booknow-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.booknow-icon--success { background: #d4edda; color: #155724; }
.booknow-icon--error   { background: #f8d7da; color: #721c24; }
.booknow-summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 4px solid var(--primary-light-blue);
}
.booknow-summary-card h5 {
  color: var(--primary-dark-blue);
  font-size: 1.1rem;
}
.booknow-table th {
  color: #888;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 36%;
  padding: 10px 0;
  vertical-align: top;
}
.booknow-table td {
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 0;
}
.booknow-table tr + tr th,
.booknow-table tr + tr td { border-top: 1px solid #f0f0f0; }
.btn-outline-primary {
  border-color: var(--primary-light-blue);
  color: var(--primary-light-blue);
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 32px;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background: var(--primary-light-blue);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 575px) {
  .sd-hero-content { padding: 100px 16px 44px; }
  .sd-content-placeholder { padding: 36px 20px; }
  .booknow-summary-card { padding: 22px 16px; }
  .booknow-table th { font-size: 0.78rem; }
}
