@charset "utf-8";
:root {
  --brand-blue: #00228e;
  --brand-blue-light: #334ea5;
  --accent-deep: #000a2b;
  --navy-soft: #0b1120;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --bg-body: #f3f4f6;
  --bg-card: #ffffff;
  --border-soft: #e5e7eb;
}

body {
  margin: 0;
  /* space for fixed header */
  padding-top: 80px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
}

a {
  text-decoration: none;
}

/* ============== COMBINED 2-ROW HEADER ============== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: var(--brand-blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0.35rem 0;
  
}

/* Left: logo + title (spans both rows) */
.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 1rem;
  padding-left: 1rem;
}

.header-left img {
  height: 60px;
  padding-right: 1rem;
  padding-left: 1rem;
}

.header-left span {
  color: #e0e7ff;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  margin-left: 0.8rem;
  white-space: nowrap;
}

/* Right: two rows stacked */
.header-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

/* PHONE + BRANCH as pill buttons */
.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  color: #f9fafb;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.header-top-item:hover {
  background: #ffffff;
  color: var(--accent-deep);
}

/* language dropdown */
.lang-dropdown {
  position: relative;
}

.lang-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  color: #ffffff;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lang-toggle:focus {
  outline: none;
  box-shadow: none;
}

.lang-toggle:hover {
  background: #ffffff;
  color: var(--accent-deep);
  border-color: #ffffff;
}

.lang-caret {
  font-size: 0.65rem;
}

.header-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-top: 0.1rem;
}

.header-bottom .nav-link {
  color: #e0e7ff !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0.8rem;
}

.header-bottom .nav-link:hover,
.header-bottom .nav-link.active {
  color: #ffffff !important;
}

.btn-book {
  background: linear-gradient(135deg, var(--accent-deep), var(--brand-blue-light));
  border: none;
  color: white;
  padding: 0.4rem 1.3rem;
  font-weight: 600;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-left: 0.4rem;
}

.btn-book:hover {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
}

/* SVG ICONS */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease, transform 0.25s ease;
}

.header-top-item:hover .icon-svg {
  stroke: var(--accent-deep);
  transform: scale(1.08);
}

/* Mobile: stack layout */
@media (max-width: 991.98px) {
  body {
    padding-top: 80px;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .header-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
    padding-right: 0;
    padding-bottom: 0.3rem;
    margin-bottom: 0.2rem;
  }

  .header-right {
    padding: 0.1rem 0;
  }

  .header-top {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.15rem;
  }

  .header-bottom {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-bottom .nav-link {
    padding-inline: 0.6rem;
  }
}

/* ============== HERO + BOOKING + REST ============== */

.hero-wrap {
  position: relative;
  background: url('assets/img/background.jpg') center/cover no-repeat;
  color: white;
}

.wrap2 {
position: relative;
  
    color: white;
}

.wrap2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 47, 178, 0.8),
    rgba(0, 19, 71, 0.85),
    rgba(2, 6, 23, 0.9)
  );
  pointer-events: none;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 47, 178, 0.8),
    rgba(0, 19, 71, 0.85),
    rgba(2, 6, 23, 0.9)
  );
  pointer-events: none;
}

.hero-section {
  position: relative;
  z-index: 2;
  padding: 5rem 0 5rem;
}

.hero-badge {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #dbeafe;
  font-weight: 600;
}
.hero-text{
  position: relative;
  z-index: 5;
  margin-top: 160px;      /* keep your top spacing */
  margin-bottom: 90px;    /* space before the booking card */
}

.hero-title{
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.hero-sub{
  max-width: 700px;                 /* let it breathe */
  color: rgba(226,232,240,0.95);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.6;
  margin: 0 auto;                   /* center properly */
}


@media (min-width: 992px) {
  .hero-title {
    white-space: nowrap;
  }

  .hero-sub {
    white-space: nowrap;
    max-width: none;
  }
}

.booking-bar-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem;
  z-index: 5;
}

.after-hero-space {
  height: 4.5rem;
}

.booking-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.8rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid #e5e7eb;
}

.booking-card label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  margin-bottom: 0.25rem;
}

.booking-card .form-control,
.booking-card .form-select {
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
}

.booking-btn {
  background: var(--accent-deep);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
}

.booking-btn:hover {
  background: #00228e;
}

.quick-cats {
  padding: 0.6rem 0 0.4rem;
  background-color: transparent;
}

.quick-cat-pill {
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 0.4rem 0.9rem;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #4b5563;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quick-cat-pill:hover {
  border-color: var(--accent-deep);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.12);
}

.quick-cat-pill.active {
  background: linear-gradient(135deg, var(--accent-deep), var(--brand-blue));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 19, 71, 0.7);
}

.section-block {
  padding: 2.4rem 0;
}

.section-headline {
  font-size: 1.35rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
  color: #020617;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}


.fleet-image {
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.25rem;
}

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

.fleet-body {
  padding: 0.9rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.fleet-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.fleet-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.fleet-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

.fleet-price {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--brand-blue);
}


.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(37, 99, 255, 0.25), #e5edff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  margin-bottom: 0.7rem;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.4);
}

.about-box {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 1.7rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.about-badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.cta-strip {
  background: radial-gradient(circle at top left, var(--accent-deep), #020617);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.7);
}

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #6b7280;
  background-color: #000a2b;
  color-scheme: dark;
}

footer div {
  color: #9ca3af;
}
/*********************************************/
/************Fleet Category styles************/
/*********************************************/
/* ====== Category SVG buttons ====== */

.section-categories {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 2.7rem;
}

/* Grid layout */
.car-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 991.98px) {
  .car-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .car-category-grid {
    grid-template-columns: 1fr;
  }
}

/* Card base */
.car-category-card {
  border: none;
  border-radius: 18px;
  padding: 18px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 14px 30px rgba(15, 35, 52, 0.06);
  transition:
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

/* Hover / active card */
.car-category-card:hover,
.car-category-card.active {
  background: #f3f6ff;
  box-shadow: 0 18px 40px rgba(15, 35, 52, 0.10);
  transform: translateY(-2px);
}

/* Icon wrapper - drives SVG colour via currentColor */
.car-category-icon {
  width: 72px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);      /* base = navy */
  transition: color .2s ease;
}

/* Label under the icon */
.car-category-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-deep);      /* base = navy */
  transition: color .2s ease;
}

/* SVG itself */
.cat-icon-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Make ALL shapes inside the SVG follow currentColor */
.cat-icon-svg * {
  stroke: currentColor !important;
  fill: currentColor !important;          /* no weird fills */
  opacity: 1 !important;
  transition: stroke .2s ease;
}

/* Hover / active = brand blue for both icon + text */
.car-category-card:hover .car-category-icon,
.car-category-card.active .car-category-icon,
.car-category-card:hover .car-category-label,
.car-category-card.active .car-category-label {
  color: var(--brand-blue);
}

.fleet-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 2px solid #677da0 !important; /* darker + forced */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.45);
  border-color: var(--accent-deep) !important;
}
/* Base card */
.car-category-card {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1rem 0.9rem 1.1rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
}

/* SVG container */
.car-category-icon {
  width: 72px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The SVG itself */
.cat-icon-svg {
  width: 100%;
  height: auto;
  stroke: var(--accent-deep); /* NAVY default */
  fill: none;
  transition: 0.2s ease;
}

/* Label under the icon */
.car-category-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-deep); /* NAVY default */
  transition: 0.2s ease;
}

/* ---------- Hover State ---------- */
.car-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 10, 43, 0.25);
  border-color: rgba(0, 34, 142, 0.45);
}

.car-category-card:hover .cat-icon-svg {
  stroke: var(--brand-blue); /* BLUE on hover */
}

.car-category-card:hover .car-category-label {
  color: var(--brand-blue); /* BLUE on hover */
}

/* ---------- Active / Selected State ---------- */
.car-category-card.active {
  background: radial-gradient(circle at top left,
              rgba(0, 34, 142, 0.12),
              #ffffff);
  border-color: var(--brand-blue);
}

.car-category-card.active .cat-icon-svg {
  stroke: var(--brand-blue);
}

.car-category-card.active .car-category-label {
  color: var(--brand-blue);
}
/* Make the SVG lines follow the button color */
.cat-icon-svg path {
  stroke: currentColor !important;
  fill: none !important;
}

/* Base icon color = navy */
.car-category-icon {
  color: var(--accent-deep);
}

/* Hover / active = brand blue */
.car-category-card:hover .car-category-icon,
.car-category-card.active .car-category-icon {
  color: var(--brand-blue);
}
.section-categories .car-category-card {
  border: none;                     /* no border */
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 35, 52, 0.06);
  padding: 18px 24px;
  text-align: center;
  cursor: pointer;
  transition:
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.section-categories .car-category-card:hover,
.section-categories .car-category-card.active {
  background: #f3f6ff;              /* soft blue bg on hover/active */
  box-shadow: 0 18px 40px rgba(15, 35, 52, 0.10);
  transform: translateY(-2px);
}
/* Base colour = navy */
.section-categories .car-category-icon {
  color: #0b2560; /* or var(--accent-deep) */
  transition: color .2s ease;
}

/* Hover / active colour = bright blue */
.section-categories .car-category-card:hover .car-category-icon,
.section-categories .car-category-card.active .car-category-icon {
  color: #0057ff; /* or var(--brand-blue) */
}

/* Force ALL SVG parts to follow that colour */
.cat-icon-svg * {
  stroke: currentColor !important;
  fill: none !important;
  opacity: 1 !important;
  transition: stroke .2s ease, fill .2s ease;
}
/* Base colour = darker brand blue */
.section-categories .car-category-icon {
  color: var(--brand-blue);          /* e.g. #00228e */
  transition: color .2s ease;
}

/* Hover / active = lighter blue */
.section-categories .car-category-card:hover .car-category-icon,
.section-categories .car-category-card.active .car-category-icon {
  color: var(--brand-blue-light);    /* e.g. #334ea5 or your bright blue */
}

/* Force ALL SVG parts to follow the wrapper colour */
.cat-icon-svg * {
  stroke: currentColor !important;   /* line colour */
  fill: none !important;             /* outline only - change to currentColor if you want solid */
  opacity: 1 !important;
  transition: stroke .2s ease, fill .2s ease;
}
.cat-icon-svg path,
.cat-icon-svg line,
.cat-icon-svg rect,
.cat-icon-svg circle,
.cat-icon-svg polygon {
    stroke: currentColor !important;
    fill: none !important;
}
.car-category-icon {
    width: 120px;    /* bigger */
    height: 72px;
}

.cat-icon-svg {
    width: 100%;
    height: 100%;
}
.car-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;                     /* smaller gaps */
    justify-items: center;           /* perfectly centered icons */
}

.section-categories {
    padding-top: 1.5rem;
}
/* Default = navy */
.car-category-icon {
    color: var(--accent-deep);
}

/* Hover = brand blue */
.car-category-card:hover .car-category-icon,
.car-category-card.active .car-category-icon {
    color: var(--brand-blue);
}
.car-category-card {
  color: #9CA3AF;           /* default icon + label color (soft grey) */
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.car-category-card:hover,
.car-category-card:focus-visible {
  color: #0EA5E9;           /* primary color on hover (change to your brand color) */
  background: #f3f7ff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.car-category-icon svg {
  display: block;
}
/* ===== Bigger & Closer Category Cards ===== */

/* Make the grid tighter */
.car-category-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem !important; /* smaller gap */
  justify-items: center; /* center them nicely */
}

/* Bigger card */
.car-category-card {
  width: 220px !important;        /* increase width */
  height: 200px !important;       /* increase height */
  padding: 1rem 1rem !important;
  border-radius: 20px !important;
}

/* Bigger SVG container */
.car-category-icon {
  width: 220px !important;
  height: 100px !important;
}

/* Make the SVG itself bigger */
.cat-icon-svg,
.car-category-icon svg {
  width: 100% !important;
  height: 100% !important;
}

/* Label adjustment */
.car-category-label {
  font-size: 1rem !important;
  margin-top: 0.4rem;
}

/* On smaller screens, still look good */
@media (max-width: 991px) {
  .car-category-card {
    width: 180px !important;
    height: 180px !important;
  }
}

@media (max-width: 575px) {
  .car-category-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Slight size boost ONLY for Compact */
.car-category-card.compact .car-category-icon svg {
  transform: scale(1.7);   /* adjust this number */
  transform-origin: center;
}
.car-category-card.compact .car-category-icon svg {
  margin-left: 12px;
}
/* Nudge Compact icon slightly left */
.car-category-card.compact .car-category-icon {
  padding-left: 10px;   /* adjust between 4–10px */
}
/* ========== GRID SYSTEM (Bootstrap-like) ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

[class^="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }

@media (max-width: 768px) {
  .col-md-12 { width: 100%; }
  .col-md-6 { width: 50%; }
}

/* ========== FLEX UTILITIES ========== */
.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.flex-column { flex-direction: column; }

/* ========== SPACING UTILITIES ========== */
.mt-1 { margin-top: 4px; }  .mt-2 { margin-top: 8px; }  .mt-3 { margin-top: 16px; }
.mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 16px; }

.p-1 { padding: 4px; } .p-2 { padding: 8px; } .p-3 { padding: 16px; }

/* ========== BUTTONS (replace .btn) ========== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}

.btn-primary {
  background: var(--brand-blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-blue-light);
}

.btn-outline-primary {
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--brand-blue);
  color: white;
}

/* ========== FORMS ========== */
.form-control, .form-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

/* ========== NAV LINKS ========== */
.nav-link {
  color: #e0e7ff;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  font-weight: 500;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}
/* ================== LANG DROPDOWN (CSS ONLY) ================== */

.lang-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  margin: 0;
  padding: 0.3rem 0;
  list-style: none;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.35);
  display: none;                 /* hidden by default */
  z-index: 2000;
}

.lang-dropdown:hover .dropdown-menu {
  display: block;                /* show on hover */
}

/* Align-right version */
.dropdown-menu-end {
  right: 0;
  left: auto;
}

/* Items */
.dropdown-item {
  display: block;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: #0f172a;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: #eff3ff;
  color: var(--brand-blue);
}
/* ================== EXTRA GRID / UTILITIES ================== */

/* Make all col-* full-width by default */
[class^="col-"],
[class*=" col-"] {
  box-sizing: border-box;
  width: 100%;
}

/* sm = 576px  */
@media (min-width: 576px) {
  .col-sm-4 { width: 33.333%; }
}

/* md = 768px */
@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.667%; }
  .col-md-12 { width: 100%; }
}

/* lg = 992px */
@media (min-width: 992px) {
  .col-lg-2 { width: 16.667%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-8 { width: 66.667%; }
  .col-lg-10 { width: 83.333%; }
}

/* Gutters (for .row g-2 / g-3 etc.) */
.row.g-2 {
  row-gap: 0.5rem;
  column-gap: 0.5rem;
}

.row.g-3 {
  row-gap: 1rem;
  column-gap: 1rem;
}


.row.g-5 {
  row-gap: 1rem;
  column-gap: 0rem;
}

/* Grid display for d-grid */
.d-grid { display: grid; }

/* Bigger form + button (form-control-lg / btn-lg) */
.form-control-lg {
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

.btn-lg {
  padding: 0.8rem 1.1rem;
  font-size: 1rem;
}
/* General utilities replacing Bootstrap ones */
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.pb-5 { padding-bottom: 3rem; }
.gap-2 { gap: 0.5rem; }

/* Text colors */
.text-white { color: #ffffff !important; }
.text-white-50 { color: rgba(255,255,255,0.6) !important; }

/* Light buttons for CTA */
.btn-light {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(148,163,184,0.4);
  min-width: 5rem;
}

.btn-light:hover {
  background: #e5e7eb;
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #0f172a;
}
/* ============ HEADER / NAV TEXT ============ */

/* Brand name a bit smaller */
.navbar-brand {
  font-size: 1.05rem;
}

/* Main menu links */
.navbar-nav .nav-link {
  font-size: 0.95rem;          /* smaller text */
  padding: 0.35rem 0.75rem;    /* less padding so they fit in one line */
  white-space: nowrap;         /* prevents "General" / "Policy" splitting */
}

/* Top contact bar (phone + branch) a bit smaller too */
.header-top,
.header-top a {
  font-size: 0.85rem;
}
/* ============ HERO TITLE + SEARCH ANIMATION ============ */

.hero-title {
  font-size: clamp(2.1rem, 3.4vw, 3rem);  /* scales nicely, no huge text */
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s ease-out 0.15s forwards;
}

.hero-search {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.8s ease-out 0.35s forwards;
}

/* Keyframes used for both */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* GENERAL NAVBAR FIXES — NO HTML EDITING NEEDED */
.site-header .nav-link,
.site-header a {
  font-size: 0.95rem !important;
  white-space: nowrap !important;
  padding: 0.35rem 0.65rem !important;
}

.header-top,
.header-top a {
  font-size: 0.85rem !important;
  white-space: nowrap !important;
}
/* Raise the search bar upward */
.hero-section .container,
.hero-section form {
  margin-top: -90px !important;   /* adjust this number until it looks perfect */
}
/* Disable hover dropdown behavior for language selector */
.lang-dropdown:hover .dropdown-menu {
  display: none !important;
}
.lang-menu {
  display: none;
  transform: translateY(-5px);
  opacity: 0;
  transition: all 0.2s ease;
}

.lang-menu.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
/* Stop hover from forcing the dropdown open */
.navbar .dropdown:hover .dropdown-menu {
  display: none !important;
}

/* Default: hidden */
.navbar .dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

/* When JS adds .lang-open on the <li class="dropdown"> */
.navbar .dropdown.lang-open .dropdown-menu {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
/* 1. Kill any hover-based dropdown for this one */
.lang-dropdown:hover .dropdown-menu {
  display: none !important;
}

/* 2. Default state: hidden */
.lang-dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* 3. When JS adds .is-open to .lang-dropdown */
.lang-dropdown.is-open .dropdown-menu {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

/* Optional: make the pill look clickable */
.lang-toggle {
  cursor: pointer;
}


.section-headline + .btn {
  margin-top: 0.35rem !important;   /* adjust 0.2–0.5rem until perfect */
}
.d-flex .btn-outline-primary.btn-sm {
  margin-top: 0.35rem; /* small downward shift */
}
.section-block {
    padding: 2.4rem 0;
}
/* Reduce the gap under the heading row in POPULAR CARS + CATEGORIES */
#cars .d-flex.mb-3,
.section-categories .d-flex.mb-3 {
  margin-bottom: 0.25rem !important; /* was 1rem */
}

/* Just in case the grid itself has margin-top */
.section-categories .car-category-grid {
  margin-top: 0 !important;
}
/* Tighter 'See availability' button in the section headers */
#cars .btn-outline-primary.btn-sm,
.section-categories .btn-outline-primary.btn-sm {
  padding-top: 1.35rem;
  padding-bottom: 0.75rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  line-height: 1.1;          /* removes that extra space under the text */
  min-height: auto; 
  max-height: 38px;         /* just in case something sets a fixed height */
}
/* input takes all remaining space */
.hero-section form.row.g-2 .col-md-8 {
  flex: 1 1 auto;
}

/* INPUT */
.hero-section .form-control-lg {
  height: 54px;
  border: none;
  box-shadow: none;
  border-radius: 999px 0 0 999px;
  font-size: 1rem;
}

/* BUTTON */
.hero-section .btn-primary.btn-lg {
  height: 86px;
  border-radius: 0 999px 999px 0;
  padding: 0 32px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
/* Stop horizontal overflow (fix white strip on the right) */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ========== HERO BASE (DESKTOP/TABLET) ========== */
.hero-section {
  padding: 6rem 0 4rem;              /* pushes title + search down nicely */
}

/* Main hero title */
.hero-title {
  font-size: 3rem;
  line-height: 1.25;
}

/* Search form wrapper */
.hero-section form {
  max-width: 780px;                  /* don’t span full screen */
  margin: 2.5rem auto 0;             /* centered under the title */
}

/* Search input + button (pill style) */
.hero-section .form-control-lg {
  border-radius: 999px 0 0 999px;
}

.hero-section .btn-primary.btn-lg {
  border-radius: 0 999px 999px 0;
}

/* ========== MOBILE TWEAKS ========== */
@media (max-width: 767.98px) {

  .hero-section {
    padding-top: 3rem;
    padding-bottom: 3.5rem;          /* gives room so hero isn’t chopped */
  }

  .hero-title {
    font-size: 1.85rem;              /* smaller text on phones */
    line-height: 1.3;
  }

  .hero-section form {
    max-width: 90%;
    margin-top: 1.5rem;              /* brings search closer to the title */
  }

  /* Stack input + button on phones */
  .hero-section .row.g-2.justify-content-center {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-section .col-md-8,
  .hero-section .col-md-3,
  .hero-section .col-sm-4 {
    width: 100%;
  }

  .hero-section .form-control-lg {
    border-radius: 999px;            /* full pill */
  }

  .hero-section .btn-primary.btn-lg {
    width: 100%;                     /* full-width + centred */
    border-radius: 999px;            /* pill button */
  }
}
/* Make Compact icon slightly larger */
.car-category-card:nth-child(1) .cat-icon-svg {
  transform: scale(1.2); /* adjust 1.12 → 1.15 if you want even bigger */
}
.section-categories .car-category-card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.section-categories .car-category-icon {
  color: #0b2560; /* navy */
  transition: color .2s ease;
}

.section-categories .car-category-card:hover .car-category-icon,
.section-categories .car-category-card.active .car-category-icon {
  color: #0057ff; /* brand blue */
}

/* Force SVG stroke to follow color */
.cat-icon-svg * {
  stroke: currentColor !important;
  fill: none !important;
}
.car-category-grid {
  gap: 0.5rem !important;
}
/* Make the Compact category icon larger */
.car-category-card:nth-child(1) .car-category-icon {
  transform: scale(1.14);   /* increase to 1.25 if you want even bigger */
  transform-origin: center;
  padding-left: 1.5rem
}
/* ========== INNER HERO (small page header) ========== */
.inner-hero {
  background: #0040a5; /* close to your header blue */
  color: #fff;
  padding: 2.8rem 0 2.4rem;
  text-align: center;
}

.inner-title {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.inner-sub {
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ========== MAIN WRAPPER ========== */
.inner-main {
  background: #f3f5fa;
  padding: 3rem 0 4rem;
}

.inner-narrow {
  max-width: 1060px;
}

/* reuse gaps between sections */
.inner-section + .inner-section {
  margin-top: 3rem;
}

/* ========== HIGHLIGHT STATS (About) ========== */
.inner-highlight {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 10px 25px rgba(15, 35, 80, 0.06);
  height: 100%;
}

.inner-highlight-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b748a;
  margin-bottom: 0.25rem;
}

.inner-highlight-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #003063;
}

/* ========== FEATURE GRID (Services) ========== */
.feature-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 14px 30px rgba(20, 36, 74, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 144, 255, 0.08);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #091323;
  margin: 0;
}

.feature-text {
  font-size: 0.94rem;
  color: #5e6577;
  margin: 0;
}

/* ========== POLICY LIST (General Policy) ========== */
.policy-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: #4c5467;
  font-size: 0.95rem;
}

.policy-list li + li {
  margin-top: 0.4rem;
}

/* ========== CTA STRIP ========== */
.inner-cta {
  margin-top: 3.2rem;
}

.inner-cta-box {
  background: linear-gradient(135deg, #0050cf, #002a7a);
  border-radius: 1.5rem;
  padding: 1.4rem 1.6rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inner-cta-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.inner-cta-text {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.inner-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ========== RESPONSIVE TWEAKS ========== */
@media (max-width: 767.98px) {
  .inner-hero {
    padding: 2.2rem 0 1.9rem;
  }

  .inner-main {
    padding-top: 2.4rem;
  }

  .inner-cta-box {
    text-align: left;
  }
}
.booking-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(10,25,47,.10);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}

/* IMPORTANT: fix the "floating outside" issue */
.booking-card .row{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.booking-card .row > [class*="col-"]{
  padding-left: .75rem !important;
  padding-right: .75rem !important;
}

.booking-form .form-label{
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(10,25,47,.72);
  margin-bottom: .45rem;
}

.booking-form .form-control,
.booking-form .form-select{
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(10,25,47,.14);
  background: #fff;
  padding: .65rem .9rem;
  box-shadow: none;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus{
  border-color: rgba(30,144,255,.55);
  box-shadow: 0 0 0 .2rem rgba(30,144,255,.15);
}

.booking-btn{
  height: 52px;
  border-radius: 14px;
  font-weight: 900;
}

@media (max-width: 768px){
  .booking-card{ padding: 1rem; border-radius: 18px; }
}
/* BOOKING: stop grid "double gutters" + stop centering */
.booking-card{
  text-align: left;            /* hero is text-center, so force normal inside */
}

/* Use ONE spacing system: GAP (not padding + negative margins together) */
.booking-card .row{
  margin-left: 0 !important;
  margin-right: 0 !important;
  column-gap: 1rem !important; /* consistent horizontal spacing */
  row-gap: 1rem !important;    /* consistent vertical spacing */
}

.booking-card .row > [class*="col-"]{
  padding-left: 0 !important;  /* kill the extra gutters */
  padding-right: 0 !important; /* kill the extra gutters */
}

.booking-card label,
.booking-card .form-label{
  display: block;
}
/* ================= BOOKING (clean + responsive) ================= */

/* card */
.booking-card{
  max-width: 980px !important;              /* not too wide */
  margin: 0 auto;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  min-height: 200px;
  padding-top: 20px;
}

/* grid layout */
.booking-grid{
  display: grid;
  gap: .85rem 1rem;
  align-items: end;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* positions (desktop) */
.bf-pickup   { grid-column: span 6; width: 390px; height: 72px; padding-bottom: 1rem;}
.bf-dropoff  { grid-column: span 6; width: 390px; height: 72px; padding-bottom: 1rem;}
.bf-pickdate { grid-column: span 3; width: 150px; height: 60px; padding-bottom: 2rem;}
.bf-picktime { grid-column: span 3; width: 150px; height: 60px; padding-bottom: 2rem;}
.bf-dropdate { grid-column: span 3; width: 150px; height: 60px; padding-bottom: 2rem;}
.bf-droptime { grid-column: span 3; width: 150px; height: 60px; padding-bottom: 2rem;}

.bf-btn      { grid-column: span 12; }     /* full width button under fields */

/* labels */
.booking-grid .form-label{
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(10,25,47,.70);
  margin: 0 0 .35rem;
}

/* controls */
.booking-grid .form-control,
.booking-grid .form-select{
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.98);
  padding: .65rem .9rem;
  box-shadow: none;
}

.form-select1{
  height: 26px;
  width: 80%;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.98);
  padding: .35rem .9rem;
  box-shadow: none;
}

/* focus state (premium) */
.booking-grid .form-control:focus,
.booking-grid .form-select:focus{
  border-color: rgba(30,144,255,.65);
  box-shadow: 0 0 0 .22rem rgba(30,144,255,.16);
  outline: none;
}

/* button */
.booking-btn{
  height: 54px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #000a2b, #00228e);
  border: none;
}
.booking-btn:hover{
  background: linear-gradient(135deg, #00228e, #334ea5);
}

/* make the bottom button feel attached */
.bf-btn{ margin-top: .2rem; }

/* ================= MOBILE ================= */
@media (max-width: 768px){
  .booking-card{ padding: 1rem; border-radius: 18px; }
  .booking-grid{ grid-template-columns: 1fr; gap: .75rem; }

  .bf-pickup, .bf-dropoff,
  .bf-pickdate, .bf-picktime,
  .bf-dropdate, .bf-droptime,
  .bf-btn{ grid-column: auto; }

  .booking-btn{ height: 52px; border-radius: 999px; }
}

/* ================= SMALL DESKTOP TWEAK ================= */
@media (min-width: 992px){
  /* if you want the button to sit on the same row as times, uncomment below:

  .bf-btn{ grid-column: span 3; }
  .bf-droptime{ grid-column: span 3; }
  .bf-dropdate{ grid-column: span 3; }
  .bf-picktime{ grid-column: span 3; }

  */
}
.booking-card-head{
  padding: .2rem .2rem 0;
}
.booking-card-head{
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(15,23,42,.08);

}

.booking-card-title{
  margin: 0 0 .35rem 0;
  font-weight: 800;
  font-size: 1.35rem;
  color: #0b1120;
}

.booking-card-sub{
  margin: 0 auto;
  max-width: 720px;
  font-size: .95rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Mobile tweaks */
@media (max-width: 768px){
  .booking-card-title{ font-size: 1.15rem; }
  .booking-card-sub{ font-size: .9rem; }
  .booking-card-head{ padding-bottom: .85rem; margin-bottom: .85rem; }
}
/* Raise the title/sub slightly */
.booking-card-head{
  margin-top: -7rem;        /* pulls it UP inside the card */
  margin-bottom: 7rem;      /* pushes the form DOWN */
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

/* Extra breathing room before fields */
.booking-form{
  margin-top: 0.75rem;
}

/* Ensure nothing overlaps */
.booking-card{
  position: relative;
}
/* HARD OVERRIDE: header spacing inside card */
#booking .booking-card .booking-card-head{
  margin: 0 !important;
  padding: 0 0 18px 0 !important;
  position: relative !important;
  z-index: 2 !important;
  text-align: left; /* change to center if you want */
}

/* Title + subtitle spacing */
#booking .booking-card .booking-card-title{
  margin: 0 0 6px 0 !important;
  font-weight: 800;
  font-size: 1.4rem;
  color: #0b1120;
}

#booking .booking-card .booking-card-sub{
  margin: 0 !important;
  color: rgba(15,23,42,.65);
  font-size: .95rem;
  line-height: 1.4;
}

/* PUSH THE FORM DOWN (THIS is what prevents overlap) */
#booking .booking-card .booking-form{
  margin-top: 16px !important;
  position: relative !important;
  z-index: 1 !important;
}

/* If your grid system is creating weird negative margins, kill it inside the card */
#booking .booking-card .row{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* ===== SIDE SEARCH FILTER SELECTS ONLY ===== */
.form-select1 {
  width: 100% !important;
  min-height: 40px;              /* taller */
  padding: 8px 14px;             /* breathing room */
  font-size: 0.85rem;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background-color: #fff;
  box-sizing: border-box;
}

/* Inputs (date / time) in the side search */
input.form-select1 {
  min-height: 40px;
}

/* Fix table squeezing */
table td {
  vertical-align: top;
  padding-bottom: 10px;
}
/* ===== SIDE FILTER PANEL WIDTH FIX ===== */
body {
  padding: 50px 0 0 !important; /* top / sides / bottom */
  box-sizing: border-box;
}

/* Make sure the table can breathe */
table {
  width: 100% !important;
  padding: 4px;
}

/* Prevent horizontal clipping */
html, body {
  overflow-x: hidden;
}
/* Space below header/logo in side filter */
form {
  padding-top: 20px;
}
body {
  background: #f8fafc;
}
.search-layout{
  width: 100%;
  height: calc(100vh - 80px); /* 80px = your fixed header padding-top */
  border-collapse: collapse;
  table-layout: fixed;
  padding-bottom: 0;
}
.search-layout td{
   vertical-align: top;
   height: 100%;
   padding-bottom: 0;
}
.search-layout iframe{
   width: 100%;
   height: 100%;
   border: 0;
   display: block;
   padding-bottom: 0;
}
html[dir="rtl"] body{
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] body{
  direction: ltr;
  text-align: left;
}
html[dir="rtl"] .booking-card,
html[dir="rtl"] .booking-card .form-label,
html[dir="rtl"] .booking-card .section-headline,
html[dir="rtl"] .booking-card .section-sub{
  text-align: right;
}

/* Inputs/select text alignment */
html[dir="rtl"] .booking-card input,
html[dir="rtl"] .booking-card select{
  text-align: right;
  direction: rtl;
}

/* If you have placeholders like mm/dd/yyyy, keep them LTR */
html[dir="rtl"] .booking-card input[type="date"],
html[dir="rtl"] .booking-card input[type="time"]{
  direction: ltr;
  text-align: left;
}
html[dir="rtl"] #booking .container { direction: rtl; }
html[dir="ltr"] #booking .container { direction: ltr; }
html[dir="rtl"] body{
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] body{
  direction: ltr;
  text-align: left;
}
html[lang="ar"] body { font-family: "Inter", Arial, sans-serif; }
html[lang="en"] body { font-family: "Inter", Arial, sans-serif; }
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea{
  direction: rtl;
  text-align: right;
}

/* keep date/time readable */
html[dir="rtl"] input[type="date"],
html[dir="rtl"] input[type="time"]{
  direction: ltr;
  text-align: left;
}
.fleet-badge-wrap {
  height: 32px;               /* keeps all cards aligned */
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-badge {
  width: 100%;   /* 👈 same inner width as card padding */
  background-color: #ff0000;
  color: #ffffff;
  padding-top: 8px;
  padding-bottom: 6px;          /* vertical padding only */
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
}
.fleet-card {
  height: 100%;
  
}
.tours-image {
  height: 200px;         /* adjust: 180–240 looks good */
  overflow: hidden;
  border-radius: 18px 18px 0 0; /* if you want rounded top */
}

.tours-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* magic: no stretching */
  display: block;
background-color: var(--bg-card);
  border-radius: 16px;
  border: 2px solid #677da0 !important; /* darker + forced */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
  position: relative;
}

.tours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.45);
  border-color: var(--accent-deep) !important;
  
}

/* make tour images look right */
.tours-image {
  height: 270px;
  overflow: hidden;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Force spacing between rows no matter what */
.tours-grid > [class*="col-"] {
  margin-bottom: 10px;
}
.policy-content{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 26px 24px;
  line-height: 1.9;
  font-size: 16px;
}

.policy-content h2,
.policy-content h3{
  margin-top: 22px;
  margin-bottom: 10px;
  font-weight: 800;
}

.policy-content ul{
  padding-inline-start: 22px;
  margin: 10px 0 18px;
}

.policy-content li{
  margin-bottom: 8px;
}

html[dir="rtl"] .policy-content{
  text-align: right;
}

html[dir="ltr"] .policy-content{
  text-align: left;
}
/* ===== Contact page table layout polish ===== */
.contact-table{
  width: min(100%, 1100px);
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 18px;      /* space between the two table cells */
}

/* left & right blocks become “cards” */
.contact-table > tbody > tr > td{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 22px;
  vertical-align: top;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

/* if you have nested tables inside */
.contact-table table{
  width: 100%;
  border-collapse: collapse;
}

.contact-table td{
  padding: 6px 0;
}

/* Typography */
.contact-table .inner-title{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}

.contact-table .feature-title{
  font-weight: 700;
  margin-top: 10px;
  display: block;
}

.contact-table .inner-sub{
  line-height: 1.8;
  opacity: .85;
}

/* ===== Inputs: works with or without your class ===== */
.contact-input,
.contact-table input[type="text"],
.contact-table input[type="email"],
.contact-table textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}

.contact-table textarea{
  resize: vertical;
  min-height: 120px;
}

.contact-input:focus,
.contact-table input[type="text"]:focus,
.contact-table input[type="email"]:focus,
.contact-table textarea:focus{
  border-color: rgba(0, 47, 178, .7);
  box-shadow: 0 0 0 3px rgba(0, 47, 178, .12);
}

/* Submit button */
.contact-btn,
.contact-table input[type="submit"]{
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  background-color:#00228e;
  color: #fff;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
  box-shadow: 0 6px 16px rgba(0, 34, 142, 0.25);
}
.contact-btn:hover,
.contact-table input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 34, 142, 0.35);
  background-color: #001c75;
}

/* active = press */
.contact-btn:active,
.contact-table input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 34, 142, 0.25);
  background-color: #00195f;
}

/* Let bootstrap's btn colors win if you use them */
.contact-table input[type="submit"].btn{
  width: 100%;
}

/* RTL support */
html[dir="rtl"] .contact-table{
  direction: rtl;
}
html[dir="rtl"] .contact-table td{
  text-align: right;
}
html[dir="rtl"] .contact-table .inner-sub{
  text-align: right;
}

/* Phone numbers stay LTR */
.contact-table .ltr{
  direction: ltr;
  text-align: left;
}

/* Mobile: stack the two columns */
@media (max-width: 992px){
  .contact-table,
  .contact-table tbody,
  .contact-table tr,
  .contact-table td{
    display: block;
    width: 100%;
  }

  .contact-table{
    border-spacing: 0;
  }

  .contact-table > tbody > tr > td{
    margin-bottom: 16px;
  }
}
.map-card{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
}

/* this creates rounded corners on the map itself */
.map-embed{
  border-radius: 14px;
  overflow: hidden;
}

/* responsive map height */
.map-embed iframe{
  width: 100%;
  height: 420px;   /* change if you want taller/shorter */
  border: 0;
  display: block;
}
/* =========================
   TOURS SECTION (FULL CSS)
   ========================= */

/* wrapper for the grid (apply this class to the row) */
.tours-grid {
  margin-top: 10px;
}

/* force spacing between rows */
.tours-grid > [class*="col-"] {
  margin-bottom: 18px;
}

/* the card itself (apply tours-card on your <article>) */
.tours-card {
  background-color: var(--bg-card, #ffffff);
  border: 2px solid #677da0;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  position: relative;
}

.tours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
  border-color: var(--accent-deep, #002fb2);
}

/* image wrapper */
.tours-image {
  height: 270px;              /* adjust 220–300 */
  overflow: hidden;
  padding: 0;
  flex: 0 0 auto;
}

/* image inside wrapper */
.tours-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* NO stretching */
  object-position: center;
  display: block;
}

/* body */
.tours-body {
  padding: 18px 18px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* title */
.tours-title {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0;
}

/* description */
.tours-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* OPTIONAL: make titles centered but body readable */
html[dir="rtl"] .tours-title,
html[dir="ltr"] .tours-title {
  text-align: center;
}

html[dir="rtl"] .tours-text { text-align: right; }
html[dir="ltr"] .tours-text { text-align: left; }
/* Card */
.fleet-card {
  position: relative;
  height: 100%;
  overflow: hidden; /* 🔒 nothing leaks */
  border-radius: 18px;
}

/* Badge */
.fleet-badge {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;               /* match card width */
  max-width: 100%;           /* never exceed */
  
  background-color: #ff0000;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;

  padding: 6px 10px;
  line-height: 1.2;



  display: flex;                 /* 👈 */
  align-items: center;           /* 👈 vertical center */
  justify-content: center;       /* 👈 horizontal center */
  
  border-radius: 16px 16px 0 0; /* smooth top */
  z-index: 2;
}

/* Image wrapper */
.fleet-image {
  width: 90%;
  height: 220px;
  overflow: hidden;
    display: flex;                 /* 👈 */
  align-items: center;           /* 👈 vertical center */
  justify-content: center;       /* 👈 horizontal center */
  margin: 0 auto;
}

/* Image itself */
.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* ✅ NO CUTTING */
  display: block;
  align-items: center;           /* 👈 vertical center */
  justify-content: center;       /* 👈 horizontal center */
  
}
.fleet-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}
.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  opacity: 0.9;
}

/* Image wrapper */
.serv-image{
  width: 100%;
  height: 220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}

.serv-image img{
  max-width: 100%;
  max-height: 100%;
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}
/* Slightly larger Arabic text everywhere */
html[dir="rtl"] body {
  font-size: 1.4em; /* start small: 1.05–1.1 */
}
html[dir="rtl"] .booking-card,
html[dir="rtl"] .booking-card * {
  direction: rtl;
  text-align: right;
}
/* English (LTR) → align left */
html[dir="ltr"] .section-headline {
  text-align: left;
}

/* Arabic (RTL) → align right */
html[dir="rtl"] .section-headline {
  text-align: right;
}
/* English header: push content LEFT */
html[dir="ltr"] .site-header .header-inner{
  padding-right: 180px;
  padding-left: 30px;
}

/* Arabic header: push content RIGHT */
html[dir="rtl"] .site-header .header-inner{
  padding-left: 80px;
  padding-right: 30px;
}
/* reduce the blank space between labels and date/time inputs */
.booking-table td{
  padding: 6px 8px;
  vertical-align: middle;
}

.booking-hr{
  margin: 8px 0;
}

/* small spacer row */
.booking-space{
  height: 6px;
  padding: 0 !important;
}
.booking-table-wrap{
  border: none;
  padding:0;
  
}

/* make the table behave nicely */
.booking-table{
  border-collapse: separate;
  border-spacing: 0 7px; /* vertical gaps between rows */
}

/* each row looks like a section */
.booking-table td{
  vertical-align: top;
}

/* if you use your existing .bf cells, this makes them consistent */
.booking-table .bf{
  padding: 10px 6px;
}

/* labels */
.booking-table .form-label,
.booking-table .feature-title{
  font-weight: 800;
  color: #0f172a;
}

/* inputs/selects inside table */
.booking-table input.form-select1,
.booking-table select.form-select1,
.booking-table textarea{
  width: 100%;
  border: 1px solid #d6deea;
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease;
}

.booking-table input.form-select1:focus,
.booking-table select.form-select1:focus,
.booking-table textarea:focus{
  border-color:#00228e;
  box-shadow:0 0 0 3px rgba(0,34,142,.12);
}

/* button style */
.booking-table .booking-btn{
  display:inline-block;
  width: 80%;
  text-align:center;
  background:#00228e;
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  font-weight:800;
  text-decoration:none;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.booking-table .booking-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.booking-table .booking-btn:active{
  transform: translateY(0px) scale(.98);
  opacity:.92;
}

/* RTL tweaks */
html[dir="rtl"] .booking-table .form-label,
html[dir="rtl"] .booking-table .feature-title{
  text-align:right;
}
.adv-toggle-cell{
  padding: 6px 0 10px;
}

.adv-toggle{
  width: 100%;
  border: 1px solid rgba(103,125,160,.5);
  background: rgba(255,255,255,.06);
  color: inherit;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

html[dir="rtl"] .adv-toggle{
  flex-direction: row-reverse;
}
.adv-toggle-cell{
  text-align: center !important;
}

.adv-toggle{
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px;

  width: 100%;
  max-width: 280px;

  text-align: center !important;
}
.form-select1{
margin-bottom: -20px;
}
/* Reduce space between label and date/time inputs */
.bf-pickdate + tr td,
.bf-dropdate + tr td {
  padding-top: 2px !important;   /* default is usually 12–16px */
}
.form-select1[type="date"],
.form-select1[type="time"] {
  margin-top: -12px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  fill: #fff;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover .social-icon {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  font-size: 14px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  opacity: 0.9;
}

.footer-item a {
  color: inherit;
  text-decoration: none;
}

.footer-item a:hover {
  text-decoration: underline;
}

.footer-icon {
  width: 18px;
  height: 18px;
  fill: #fff;
  opacity: 0.85;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  flex-wrap:wrap;          /* safe on small screens */
}

.footer-contact{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-item{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.footer-item a{
  color:inherit;
  text-decoration:none;
}

.footer-item a:hover{
  text-decoration:underline;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:12px;
}

.social-icon{
  width:30px;
  height:30px;
  fill:#fff;
  opacity:.9;
}

.social-icon:hover{
  opacity:1;
  transform:translateY(-1px);
}
.footer-left{
padding-left:20px;
}
.footer-credit{
padding-right:20px;
}
/* ONLY affects search.php */
.search-page {
  height: calc(100vh - 10px); /* adjust if your header space differs */
  overflow: hidden;           /* IMPORTANT: prevents outer page scroll */
}

/* table must fill wrapper */
.search-page .search-layout {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* remove weird spacing */
.search-page td {
  padding: 0;
  vertical-align: top;
}

/* iframes fill their cells */
.search-page iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Extras dropdowns only */
.fleet-card select {
  margin-top: 8px;
  padding: 8px 12px;
  min-width: 70px;
  border-radius: 10px;          /* softer, matches cards */
  border: 1px solid #cfd6e4;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background-color: #fff;
  color: #0a1f44;
  appearance: none;             /* remove ugly native arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  cursor: pointer;
  background-image: ▴;
}

/* hover + focus polish */
.fleet-card select:hover {
  border-color: #0b2ea8;
}

.fleet-card select:focus {
  outline: none;
  border-color: #0b2ea8;
  box-shadow: 0 0 0 2px rgba(11, 46, 168, 0.15);
}
.required {
  color: #ff0000;
  font-weight: 600;
}
/* ========== PROTECTION PAGE (Layth theme) ========== */

.wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 110px; /* bottom space for the fixed action bar */
}

/* Top title area */
.topbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin: 10px 0 16px;
}

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

.backBtn{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--border-soft);
  background: var(--bg-card);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.backBtn:hover{ transform: translateY(-1px); }

h1{
  margin:0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--text-main);
}

.note{
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  max-width: 720px;
}
.infoDot{
  width:18px;
  height:18px;
  border-radius:999px;
  border:1px solid var(--border-soft);
  background:#fff;
  display:grid;
  place-items:center;
  font-size:12px;
  color: var(--text-muted);
  flex: 0 0 auto;
  margin-top: 1px;
}

/* Cards layout */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

@media (max-width: 992px){
  .cards{ grid-template-columns: 1fr; }
}

/* Card styling: match your site */
.card{
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.07);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position:relative;
  cursor:pointer;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

.card.selected{
  border-color: rgba(0,34,142,.35);
  box-shadow: 0 18px 48px rgba(0,34,142,.14);
}

.cardHead{
  padding: 18px 18px 10px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.planTitle{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.planTitle h2{
  margin:0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.stars{
  font-size: 12px;
  color: var(--brand-blue-light);
  letter-spacing: 1px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
  background: rgba(51,78,165,.12);
  border: 1px solid rgba(51,78,165,.20);
}

.radioWrap{
  display:flex;
  align-items:flex-start;
  gap:8px;
  padding-top: 2px;
}

.radio{
  width:18px;
  height:18px;
  accent-color: var(--brand-blue);
  cursor:pointer;
}

/* Deductible line */
.deduct{
  padding: 0 18px 12px;
  color: var(--text-muted);
  font-size: 13px;
  border-bottom: 1px solid var(--border-soft);
}
.deduct b{ color: var(--text-main); }

/* Features */
.features{
  padding: 14px 18px 12px;
}

.feat{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #edf0f6;
  font-size: 14px;
  color: var(--text-main);
}
.feat:last-child{ border-bottom: 0; }

.left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.icon{
  width:22px;
  height:22px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 12px;
  flex: 0 0 auto;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.icon.ok{
  color: var(--brand-blue);
  border-color: rgba(0,34,142,.20);
  background: rgba(0,34,142,.06);
}

.icon.bad{
  color: var(--text-muted);
  border-color: rgba(107,114,128,.25);
  background: rgba(107,114,128,.08);
}

.hint{
  width:18px;
  height:18px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  display:grid;
  place-items:center;
  color: var(--text-muted);
  font-size: 12px;
  flex: 0 0 auto;
}

/* Price row */
.priceRow{
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border-soft);
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 10px;
}

.price{
  font-size: 22px;
  font-weight: 900;
  color: var(--brand-blue);
}
.per{
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.strike{
  margin-left: 8px;
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 700;
}
.includedTag{
  font-weight: 900;
  color: var(--brand-blue);
  font-size: 13px;
}

/* Booking overview box */
.overview{
  margin-top: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.07);
  padding: 16px 18px;
}

.overview h3{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
}

.ovItem{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
  color: var(--text-main);
  font-size: 13px;
}
.ovItem:first-of-type{ border-top: 0; }

.ovLeft{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.check{
  width:18px;
  height:18px;
  border-radius: 8px;
  background: rgba(0,34,142,.08);
  border: 1px solid rgba(0,34,142,.20);
  color: var(--brand-blue);
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 12px;
  flex: 0 0 auto;
  margin-top: 1px;
}

/* Bottom action bar (Previous / Next) */
.bottom-actions{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1020;
  background: rgba(243,244,246,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-soft);
  padding: 12px 0;
}

.bottom-actions .inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.bottom-actions .mini-total{
  font-size: 14px;
  color: var(--text-main);
  font-weight: 700;
}
.bottom-actions .mini-total span{
  color: var(--brand-blue);
  font-weight: 900;
}

.btn-flat{
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor:pointer;
}

.btn-flat:hover{
  border-color: rgba(0,34,142,.25);
}

.btn-primary2{
  border: 0;
  background: linear-gradient(135deg, var(--accent-deep), var(--brand-blue-light));
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800;
  cursor:pointer;
  box-shadow: 0 12px 26px rgba(0,34,142,.18);
}

.btn-primary2:disabled{
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
}
/* only local styles for this page */
.protection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.protection-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px;
  cursor:pointer;
  transition: all .2s ease;
}
.protection-card:hover{
  border-color:#334ea5;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.protection-card.is-selected{
  border:2px solid #00228e;
  box-shadow:0 12px 28px rgba(0,34,142,.18);
}
.protection-title{
  font-weight:800;
  font-size:16px;
  color:#0f172a;
}
.protection-sub{
  margin-top:6px;
  color:#6b7280;
}
@media(max-width: 900px){
  .protection-grid{ grid-template-columns:1fr; }
}
.protection-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.protection-stars{
  margin-top:6px;
  color:#0f172a;
  font-size:14px;
}

.pill{
  display:inline-block;
  margin-left:8px;
  padding:2px 8px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:#eef2ff;
  color:#00228e;
  border:1px solid #c7d2fe;
}

.protection-priceTag{
  font-weight:800;
  color:#0f172a;
  background:#f3f4f6;
  border:1px solid #e5e7eb;
  padding:6px 10px;
  border-radius:12px;
  white-space:nowrap;
}

.protection-priceTag.included{
  background:#ecfdf5;
  border-color:#a7f3d0;
  color:#065f46;
}

.per{
  font-weight:600;
  color:#6b7280;
  font-size:12px;
}

.protection-deduct{
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  background:#f9fafb;
  border:1px solid #e5e7eb;
  color:#111827;
  font-size:14px;
}

.protection-feats{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.pf{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:14px;
  color:#111827;
}

.pf span:first-child{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:900;
  flex-shrink:0;
  margin-top:1px;
}

.pf.ok span:first-child{
  background:#ecfdf5;
  border:1px solid #a7f3d0;
  color:#065f46;
}

.pf.bad span:first-child{
  background:#fef2f2;
  border:1px solid #fecaca;
  color:#b91c1c;
}

.strikeRow{
  margin-top:12px;
  color:#6b7280;
  font-size:13px;
}

.strike{
  text-decoration:line-through;
  opacity:.85;
}
/* ===== Confirmation Page ===== */

.confirmation-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.confirmation-box {
  max-width: 650px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  text-align: center;

  /* 🔥 FONT FIX */
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Title */
.confirmation-box h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.2px;
}

/* Message */
.confirmation-box p {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Button */
.confirmation-box .btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
}
/* ===== Confirmation Page ===== */

.confirmation-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.confirmation-box {
  max-width: 650px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  text-align: center;

  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.confirmation-box h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-main);
}

.confirmation-box p {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

.confirmation-btn {
  width: 220px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
}
