/* ------------------------
        Root variables
        ------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900;1,100..900&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap");

:root {
  /* Colors */
  --color-primary: #fe943d;
  --color-primary-heading: #1d2c4b;
  --color-primary-text: #3f3f3f;
  --color-primary-dark: #ff7201;
  --color-primary-icon: #ff7200;
  --color-primary-icon-bg: #ffe7d3;
  --color-primary-light: #e6f0ff;
  --color-secondary: #1f2c47;
  --color-secondary-1: #1884be;
  --color-secondary-2: #371a8e;
  --color-border: #1357d6;
  --color-secondary-light: #e6fffb;
  --color-white: #ffffff;
  --color-black: #111827;

  /* Typography */
  --font-primary: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  --font-secondary: "Roboto Slab", serif;
  --color-gray-50: #f9fafb;

  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;

  /* Typography */
  --font-primary: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  --font-secondary: "Roboto Slab", serif;
  --fs-xs: clamp(0.7rem, 1.5vw, 0.8rem);
  --fs-sm: clamp(0.85rem, 2vw, 0.95rem);
  --fs-base: clamp(1rem, 2.5vw, 1.1rem);
  --fs-lg: clamp(1.125rem, 3vw, 1.3rem);
  --fs-xl: clamp(1.25rem, 4vw, 1.6rem);
  --fs-2xl: clamp(1.5rem, 5vw, 2rem);

  /* Layout */
  --container-max: 1200px;
  --navbar-height: 70px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  /* Layout */

  --navbar-height: 70px;

  /* Radii & shadows */
  --radius-sm: 7px;
  --radius-md: 7px;
  --radius-lg: 7px;

  /* Transitions */
  --trans-fast: 180ms ease;
  --trans-base: 250ms ease;
  --trans-slow: 350ms ease;

  /* z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ------------------------
        Reset & base
        ------------------------ */
.my-site-wrapper {
  background-color: red;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  margin: 0;
  background: var(--color-gray-50);
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--trans-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

input,
select,
textarea {
  font-family: inherit;
  height: 50px;
}

.site {
  margin: 0 auto;
}

#screen-1 {
  background: #371a8e;
  background: linear-gradient(144deg,
      rgba(55, 26, 142, 1) 0%,
      rgba(24, 132, 190, 1) 96%);
}

#screen-2 {
  background: #371a8e;
  background: linear-gradient(144deg,
      rgba(55, 26, 142, 1) 0%,
      rgba(24, 132, 190, 1) 96%);
}

/* #screen-3 {
  background: #371a8e;
  background: linear-gradient(
    144deg,
    rgba(55, 26, 142, 1) 0%,
    rgba(24, 132, 190, 1) 96%
  );
} */
#screen-4 {
  background: #371a8e;
  background: linear-gradient(144deg,
      rgba(55, 26, 142, 1) 0%,
      rgba(24, 132, 190, 1) 96%);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Figtree", sans-serif;

  margin-top: 0;
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: 20px;
  color: #1d2c4b;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.feature-hero h3 {
  font-size: 20px;
  color: white;
  font-weight: 700;
  margin-bottom: unset;
}

h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-2);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-3);
}

hr.divider {
  border: 0;
  height: 1px;
  background: #dfdfdf;
  margin: var(--space-4) 0;
}

.form-item {
  flex: 1;
}

.satisfaction-banner {
  background-color: var(--color-secondary-2);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 69px;
  gap: 20px;
  color: var(--color-white);
  min-height: 46px;
  width: 100%;
  flex-wrap: nowrap;
  box-shadow: var(--shadow-md);
}

.sb-profiles {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  height: 40px;
  min-width: 100px;
  flex-shrink: 0;
  padding-right: 25px;
}

.sb-profile-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  border: 3px solid var(--color-secondary-2);
  background: var(--color-white);
}

.sb-profile-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-profile-ring:nth-child(1) {
  left: 0px;
  z-index: 4;
}

.sb-profile-ring:nth-child(2) {
  left: 25px;
  z-index: 3;
}

.sb-profile-ring:nth-child(3) {
  left: 50px;
  z-index: 2;
}

.sb-profile-ring:nth-child(4) {
  left: 75px;
  z-index: 1;
}

.sb-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sb-text-content h4 {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  line-height: 14px;
}

.sb-text-content p {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray-100);
  margin: 0;
  white-space: nowrap;
}

/* Header */
header.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: var(--color-white);
  padding: 13px 21px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  height: 68px;
  padding-left: 15px;
  padding-right: 50px;
}

.brand {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.brand h1 {
  font-size: var(--fs-xl);
  margin: 0;
  font-weight: 700;
}

.brand .logo {
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.brand .logo img {
  max-height: 50px;
  width: auto;
}

nav {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--color-gray-700);
}

.nav-link:hover {
  color: var(--color-primary);
}

.cart-btn {
  position: relative;
  font-size: var(--fs-lg);
  color: var(--color-gray-700);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--color-error);
  color: var(--color-white);
  font-size: 11px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------
          HAMBURGER MENU STYLES 
         ------------------------ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;

  align-items: flex-end;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger .bar:last-child {
  width: 60%;
}

/* Screen containers */
.screen {
  display: none;
  animation: fadeIn var(--trans-slow);
}

#screen-2 {
  padding: 20px;
}

.screen.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all var(--trans-fast);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 22px;
  letter-spacing: 3%;
  border-radius: 40px;

  height: 60px;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  /* border-color: var(--color-primary); */
}

.btn-secondary:hover {
  background: var(--color-primary-light);
}

.btn-success {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-success:hover {
  background: #00a690;
}

.btn-link {
  padding: 0;
  background: transparent;
  color: var(--color-primary);
  border: none;
  font-weight: 500;
}

.btn-link:hover {
  color: var(--color-primary-dark);
}

.btn-link.btn-sm {
  font-size: var(--fs-sm);
  margin-left: var(--space-2);
}

.btn-sm {
  padding: var(--space-2) var(--space-3);
  font-size: var(--fs-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-lg);
}

/* Form elements */
.form-group {}

.form-row {
  display: flex;
  gap: var(--space-3);
}

.form-row.col {
  flex-direction: column;
  align-items: stretch;
}

.form-row > * {
  flex: 1;
}

@media (min-width: 30px) and (max-width: 500px) {
.no-flex {
  flex: unset;
}
}

label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: var(--space-1);
  display: block;
}

.input,
select,
textarea {
  width: 100%;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid #1357d6;
  background: var(--color-white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

input::placeholder {
  color: #bababa;
  opacity: 1;
}

.input:focus,
select:focus,
textarea:focus {
  outline: none;
  /* border-color: var(--color-primary); */
  box-shadow: 0 0 0 3px rgba(254, 148, 61, 0.1);
}

.input.error,
select.error,
textarea.error {
  border-color: var(--color-error);
}

/* Input with icon */
.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper .input-icon {
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-400);
  pointer-events: none;
}

.input-icon-wrapper .input {}

.form-row select.input,
.form-row input[type="date"].input,
.form-row input[type="time"].input,
.airport-select select.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-white);
  /* border-left: 1px solid #1357d6; */
  border-radius: 8px;
  padding: 10px 12px;
  padding-right: 30px;
  font-size: var(--fs-base);
  height: 50px;
  position: relative;
}

.form-row select.input,
.airport-select select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.date-input-container {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  padding: 0;
  height: 50px;
}

.date-input-container .input {
  flex-grow: 1;
  border: none;
  padding: 10px 12px;
  height: 100%;
  border-radius: 0 8px 8px 0;
}

.date-input-container i.fas {
  padding: 0 10px;
  color: var(--color-gray-500);
}

.date-time-wrapper {
  display: flex;
  justify-content: center;
  /* align-items: center; */

  border: 1px solid var(--color-border);

  border-radius: var(--radius-md);
  /* overflow: hidden; */
  height: 50px;
  /* Set a fixed height */
}

.date-time-wrapper input {
  border-radius: 0 !important;
}

.search-form .form-row {
  padding-left: 6px !important;
}

.search-form {
  gap: 10px;
}

.date-time-wrapper .icon-wrapper {
  background-color: #d4d4d4;
  border-radius: 6px 0 0 6px;
  /* The actual gradient */
  background-image: linear-gradient(to bottom, white, #d4d4d4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.icon-wrapper svg {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-self: center;

  height: 16px;
  width: 16px;
}

.date-time-wrapper i.fas {
  background: #f7f7f7;
  color: #4a5568;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.date-time-wrapper .input {
  border: none;
  border-radius: 0;
  flex-grow: 1;
  padding: 0 10px;
  height: 100%;
}

.date-time-wrapper select.input {
  border-left: 1px solid var(--color-gray-300);
  background-position: right 5px center;
  padding-right: 25px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
  cursor: pointer;
}

/* Optional: style input */
input[type="date"] {
  padding: 8px 12px;
  font-size: 16px;
}

.collapsible-section {
  margin-top: var(--space-5);
}

.collapsible-header {
  padding: 0;
  display: block;
  cursor: default;
}

.collapsible-header h4 {
  margin: 0 0 var(--space-2) 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
}

.collapsible-toggle {
  display: flex;
  gap: 15px;
}

.collapsible-toggle label {
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 8px;
  background: white;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid #1d2c4b;
  flex: 1;
  color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.collapsible-toggle input[type="radio"] {
  display: none;
}

/* ACTIVE state (when selected) */
.collapsible-toggle input[type="radio"]:checked+span,
.collapsible-toggle label:has(input[type="radio"]:checked) {
  background: var(--color-secondary);
  /* Dark blue/secondary color from screenshot */
  color: var(--color-white);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.collapsible-content {
  padding: 0;
  /* Removed padding */
  border-top: none;
  /* Removed border */
  display: none;
}

.collapsible-content .form-row,
.collapsible-content .form-group {
  padding-top: 10px;
}

.collapsible-content.active {
  display: block;
  margin-top: var(--space-4);
  /* Add space above active content */
}

/* Cards */

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--trans-fast);
  margin-top: 34px;
  padding-bottom: 22px;
  padding: 32px 24px 22px 24px;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.personal-info {
  margin-top: 18px;
  background-color: blue;
  margin-left: 26px;
  margin-right: 26px;
}

.card h3 {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 13px;
}

.card-header {
  border-bottom: 1px solid var(--color-gray-200);
}

.card-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.card-header h2 {
  font-size: 25px;
  font-weight: 700;
}

.book-summary-header h2 {
  font-size: 25px !important;
  font-weight: 700 !important;
}

.booking-summary-card {
  background-color: #00a690 !important;
}

.booking-summary-card span {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.card-body {
  margin-top: 0;
}

.card-body .form-row,
.card-body .form-group {
  padding-top: 10px;
}

.card-footer {
  padding: var(--space-4);
  border-top: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

.collapsible-cards {
  padding: 25px;
}

#booking-details .price-line strong {
  font-size: 14px;
  font-weight: 400;
}

#booking-details .price-line {
  font-size: 14px;
  font-weight: 600;
}

#grand-total {
  font-size: 24px;
  font-weight: 700;
}

.total {
  font-size: 16px;
  font-weight: 500;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-gray-500);
}

.text-primary {
  color: var(--color-primary);
}

.text-success {
  color: var(--color-success);
}

.text-warning {
  color: var(--color-warning);
}

.text-error {
  color: var(--color-error);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: var(--space-1);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--space-1);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: var(--space-1);
}

.p-2 {
  padding: var(--space-2);
}

.p-3 {
  padding: var(--space-3);
}

.p-4 {
  padding: var(--space-4);
}

.p-5 {
  padding: var(--space-5);
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner-sm {
  width: 1.2em;
  height: 1.2em;
  border-width: 2px;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: var(--color-primary);
}

/* Toast notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: var(--z-tooltip);
}

.toast {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 300px;
  animation: slideIn var(--trans-base);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.toast-success {
  border-left: 4px solid var(--color-success);
}

.toast-error {
  border-left: 4px solid var(--color-error);
}

.toast-warning {
  border-left: 4px solid var(--color-warning);
}

.toast-info {
  border-left: 4px solid var(--color-primary);
}

/* Hero section */
.hero {
  color: var(--color-white);
  padding: var(--space-8) 0;
  border-radius: var(--radius-lg);
  position: relative;
  /* overflow: hidden; */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/hero-bg.svg') no-repeat bottom;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 25px;
  font-weight: 800;
  line-height: 25px;
  text-align: center;
  margin-bottom: 26px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  opacity: 0.9;
}

/* Features grid */
.features {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.hero-features {
  gap: 10px !important;
  margin-top: 27px !important;
  padding-left: 40px;
}

.icon-features {
  gap: 35px;
}

.icon-features .feature {
  gap: 13px;
}

.icon-features .feature h3 {
  padding-top: 17px;
  margin-bottom: 0;
}

.icon-features .feature p {
  padding-top: 11px;
}

.featured-img {
  padding: 46px 26px 57px 26px;
}

.featured-img .feature-1 {
  padding-bottom: 21px;
}

/* .featured-img img {
  padding-bottom: 21px;
  border-radius: 15px;
} */
.feature {
  text-align: left;
}

.benefits {
  gap: 35px;
}

.benefits .feature h3 {
  padding-top: 17px;
  max-width: 260px;
}

.benefits .feature p {
  padding-top: 11px;
  font-size: 16px;
  font-weight: 300;
}

.features h3 {
  font-size: 20px;
  font-weight: 700;
}

.feature-icon {
  width: 80px;
  height: 80px;

  background: var(--color-primary-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2rem;
}

.feature-hero .feature-icon {
  background: none;
  width: 24px;
  height: 24px;
}

.feature-hero .feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-hero {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px !important;
  margin: 0;
}

.feature-hero-text>p {
  font-size: 15px;
}

.feature-hero .feature-hero-text {
  gap: 0;
}

.featured-img h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1d2c4b;
}

.featured-img {
  background-color: #e9f5ff;
  display: flex;
  align-items: center;
}

.featured-img {
  gap: 30px;
}

.featured-img img {
  border-radius: 15px;
}

/* Search form */
.search-card {
  background: white;

  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: var(--space-6) 0;

  color: var(--color-black);
  margin: 20px;
  display: flex;
  flex-direction: column;

  padding: 21px 27px;
  border-radius: 25px;
}

.search-form input::placeholder {
  color: #bababa;
}

#search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.search-card h3 {
  text-align: center;
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
  padding-bottom: 21px;
  margin: 0;
}

.search-card input {
  border: 1px solid #1357d6;
  border-left: 0px;
  border-bottom: 0px;
}

.search-btn {
  background: linear-gradient(to right, #ff943d, #ff7200);
  font-size: 14px;
  font-weight: 700;
  padding: 12px !important;
  gap: 5px !important;
  letter-spacing: 3%;
}

/* ------------------------
          Loading Screen
          ------------------------ */
.loader-container {
  max-width: 600px;
  margin: var(--space-12) auto;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-radius: 15px;
}

.loader-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--color-gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--space-5);
}

.loader-progress-bar-inner {
  width: 0%;
  height: 100%;
  background: var(--color-primary);
  transition: width var(--trans-slow) ease;
}

.loader-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loader-step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-gray-400);
  /* Pending state */
  transition: color var(--trans-base);
}

.loader-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-gray-200);
  color: var(--color-gray-400);
  transition: all var(--trans-base);
}

.loader-step-icon .spinner-sm {
  display: none;
}

/* Active state */
.loader-step.active {
  color: var(--color-black);
}

.loader-step.active .loader-step-icon {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.loader-step.active .loader-step-icon .spinner-sm {
  display: block;
}

.loader-step.active .loader-step-icon .fas {
  display: none;
}

/* Complete state */
.loader-step.complete {
  color: var(--color-black);
}

.loader-step.complete .loader-step-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.loader-step.complete .loader-step-icon .fa-check {
  display: block;
}

.loader-step.complete .loader-step-icon .spinner-sm,
.loader-step.complete .loader-step-icon .fa-circle {
  display: none;
}

.loader-footer {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-gray-200);
  text-align: center;
}

.loader-footer .feefo-logo {
  font-weight: bold;
  font-size: var(--fs-lg);
  color: #f5c51f;
}

.loader-footer .feefo-rating {
  color: #f5c51f;
  margin: 0 var(--space-1);
}

.loader-footer p {
  margin: 0;
  color: var(--color-gray-500);
  font-size: var(--fs-sm);
}

/* ------------------------
          Results Screen
          ------------------------ */

/* Search criteria bar */
.search-filters {
  background-color: #e8f7ff;
  padding: 20px 25px 14px 25px;
}

.search-criteria-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  padding: 6px 14px 6px 20px;
  border-radius: 45px;
  box-shadow: var(--shadow-md);
  margin: var(--space-4) 0;
  border: 2px solid #ff7200;
}

.search-criteria-info {
  display: flex;
  align-items: center;

  gap: var(--space-3);
}

.search-criteria-icon {
  width: 40px;
  height: 40px;

  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.search-criteria-details h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #1e2c49;
}

.search-criteria-details p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #8b8b8b;
}

.search-criteria-action .btn-sm {
  font-size: var(--fs-lg);
  padding: var(--space-2);
}

.modify-search-btn-dynamic {
  color: #1e2c49;
}

/* Filters bar */
.filters-bar {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.filter-btn {
  border-radius: var(--radius-md);
  color: #316cdb;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  gap: 6px;
}

.filter-btn:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-400);
}

.filter-btn.active {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Results grid */
.results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-5);
  margin: var(--space-5) 0;
  margin: 20px;
}

/* ------------------------
        
          ------------------------ */
.result-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
  width: 100%;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.rc-header {
  /* background-color: #00476e; */
  padding: 20px;
  text-align: center;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.rc-logo-wrapper {
  overflow: hidden;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-logo-wrapper img {
  width: auto;
  max-height: 80px;
  object-fit: contain;

  padding: 5px;
  border-radius: 5px;
}

.rc-header-text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Body Content */
.rc-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Title & Rating Row */
.rc-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.rc-title {
  font-size: 20px;
  font-weight: 800;
  color: #0d1d3b;
  margin: 0;
  line-height: 1.2;
  max-width: 65%;
}

.rc-rating-box {
  text-align: right;
}

.rc-stars {
  color: #ff7b00;
  /* Orange stars */
  font-size: 14px;
}

.rc-review-count {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
  display: block;
}

/* Price Row */
.rc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.rc-price-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rc-badge {
  background-color: #00ad06;
  /* Bright Green */
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.rc-day-price {
  font-size: 20px;
  font-weight: 600;
  color: #0d1d3b;
  line-height: 1;
}

.rc-day-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

.rc-price-right {
  font-size: 20px;
  font-weight: 800;
  text-align: right;
}

.rc-total-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d1d3b;
}

.rc-bought-count {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.rc-bought-count .fas {
  color: var(--color-error);
}

/* Features List */
.rc-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 400;
  color: #1e2c49;
}

.rc-check-icon {
  color: #00ad06;
  /* Green check */
  margin-top: 3px;
  flex-shrink: 0;
}

/* Buttons Row */
.rc-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-card-outline {
  flex: 1;
  padding: 12px;
  border: 1px solid #ff7b00;
  background: white;
  color: #1e2c49;
  font-size: 14px;
  border-radius: 30px;
  /* Pill shape */
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}

.btn-card-outline:hover {
  background: #fff5ea;
}

.btn-card-fill {
  flex: 1;
  padding: 12px;
  border: 1px solid #ff7b00;
  background: linear-gradient(to right, #ff943d, #ff7200);
  font-size: 14px;
  color: white;
  border-radius: 30px;
  /* Pill shape */
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}

.btn-card-fill:hover {
  background: linear-gradient(to right, #ff7200 #ff943d);
}

/* ------------------------
        NEW: Map Screen
        ------------------------ */
.map-container {
  position: relative;
  width: 100%;
  height: 600px;
  background: var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-4);
  border: 1px solid var(--color-gray-300);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-pin {
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-fast);
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.map-pin:hover {
  transform: rotate(-45deg) scale(1.1);
  z-index: 10;
}

.map-pin i {
  transform: rotate(45deg);
}

.map-pin-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-fast);
  pointer-events: none;
}

.map-pin:hover .map-pin-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ------------------------
          Checkout Screen
          ------------------------ */
.summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin: var(--space-5) 0;
  margin: 0 26px;
  padding-bottom: 20px;
}

.summary-sidebar {
  background: var(--color-white);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--navbar-height) + var(--space-4));
  align-self: start;
  /* Fix for sticky */
  margin-top: 34px;
}

.summary-sidebar .payment-card .form-group,
.summary-sidebar .payment-card .form-row {
  padding-top: 10px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px dashed var(--color-gray-200);
}

.price-line:last-of-type {
  border-bottom: none;
}

.price-line.total {
  font-weight: 600;
  font-size: var(--fs-lg);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-gray-300);
}

.addon-options {
  gap: 6px;
}

.addon-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: 6px;
  border-radius: 0;
  border: none;
  border-bottom: 1px dashed var(--color-gray-200);
}

.addon-option:last-of-type {
  border-bottom: none;
}

.addon-option input[type="checkbox"] {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.addon-option label {
  margin-bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  color: var(--color-black);
}

.addon-option label span:first-child {
  text-decoration: underline dotted var(--color-gray-400);
  text-underline-offset: 4px;
}

.addon-option label span:first-child strong {
  font-weight: 600;
  color: var(--color-error);
}

.addon-option .addon-price {
  font-weight: 600;
  color: var(--color-black);
}

.summary-sidebar .price-line.total {
  border-top: 1px solid var(--color-gray-300);
  margin-top: var(--space-4);
}

.summary-sidebar .price-line.total>div:first-child {
  font-weight: normal;
  font-size: var(--fs-base);
}

.summary-sidebar .price-line.total>div:last-child {
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--color-black);
}

.summary-sidebar .price-line.total+p {
  text-align: right;
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-top: var(--space-1);
}

.payment-methods {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.payment-method {
  border: 1px solid #e1e1e1;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
  cursor: pointer;
  transition: all var(--trans-fast);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.payment-method:hover {
  border-color: #9cd5ff;
  background: #f0f7ff;
}

.payment-method.active {
  border-color: #3182ce;
  background: #f0f7ff;
  color: #3182ce;
  font-weight: 600;
}

.payment-method i.fas {
  font-size: 1.2rem;
}

.payment-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: var(--space-4) var(--space-2);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  background: var(--color-white);

  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 10px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.payment-icons img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.payment-icons>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icons-2 img {
  width: 160px;
}

.security-badges {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.security-badge {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid #007bff;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  gap: 5px;
}

.security-badge.ssl {
  border-color: #333;
  color: #333;
}

.security-badge.price {
  border-color: #007bff;
  color: #007bff;
  background-color: #e6f0ff;
}

.security-badge i {
  font-size: 1.2em;
}

.payment-details {
  display: none;
  margin-top: var(--space-4);
}

.payment-details.active {
  display: block;
}

.coupon-form {
  display: flex;
  gap: var(--space-2);
}

.coupon-form .input {
  flex-grow: 1;
}

.coupon-form .btn {
  flex-shrink: 0;
}

.read-more {
  border: 1px solid var(--color-primary-dark);
  color: #1d2c4b;
  font-weight: 600;
  border-radius: 4px !important;
  margin-top: 20px;
}

/* Reviews slider */
.reviews {
  position: relative;

  padding: 57px 26px 37px 26px;
  background-color: white;
}

.reviews h2 {
  text-align: left;
  font-size: 25px;
  font-weight: 800;
  color: #1d2c4b;
}

.reviews-container {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.review {
  min-width: 300px;
  flex: 0 0 350px;
  /* box-shadow: 0 0 20px 0 #00000033;
          border-radius: 20px; */
}

.review-card {
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-500);
}

.review-name {
  font-size: 20px;
  font-weight: 700;
}

.review-rating {
  color: var(--color-primary-dark);
}

.review-text {
  color: var(--color-gray-500);
  font-style: italic;
}

.reviews-controls {
  display: flex;
  justify-content: end;
  gap: var(--space-3);
  margin-top: var(--space-4);
  color: var(--color-secondary);
}

.review-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-primary-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.reviews-control:hover i {
  color: var(--color-primary-dark);
}

.review-control:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.review {
  flex: 0 0 calc(33.33% - 16px);
  min-width: 280px;
}

.drop-off-wrapper input {
  border-radius: 10px;
  border: none;
}

#pickup-date input {
  border: none;
}

.date-time-wrapper input {
  border: none;
}

@media (min-width: 320px) and (max-width: 800px) {
  header.topbar {
    padding-right: 20px;
  }

  .hero-title {
    font-size: 21px;
  }

  .search-card h3 {
    font-size: 18px;
  }

  .brand .logo img {
    max-height: 44px;
  }

}

@media (max-width: 370px) {
  .search-card {
    padding: 21px 10px;
  }
}

@media (max-width: 768px) {
  .review {
    flex: 0 0 100%;
  }
}

.middle-section {
  background-color: white;
  padding: 45px 66px 45px 45px;
}

/* Footer */
footer {
  background: #0a1120;
  background: linear-gradient(162deg,
      rgba(10, 17, 32, 1) 0%,
      rgba(55, 26, 142, 1) 96%);
  padding: var(--space-8) 0;
  margin-top: var(--space-10);
  padding: 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.footer-section h4 {
  margin-bottom: var(--space-3);
  color: #ff7200;
  font-size: var(--fs-lg);
}

.footer-links {
  list-style: none;
  padding: 0;
}

footer .nav-link {
  color: white;
}

.footer-links li {
  margin-bottom: var(--space-2);

  color: #d4d4d4;
  font-size: 14px;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 5px;
}

.social-links i {
  background-color: white;
  padding: 5px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  color: #1d2c4b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links svg {
  height: 50px;
  width: 50px;
  padding: 10px;
  border-radius: 100%;
  fill: #1d2c4b;
}

.footer-bottom {
  /* border-top: 1px solid var(--color-gray-200); */
  padding-top: var(--space-4);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: #d4d4d4b2;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-base);
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-gray-200);
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--space-4);
}

.loading-content p {
  font-size: var(--fs-lg);
  color: var(--color-gray-700);
  font-weight: 500;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-base);
  padding: var(--space-4);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform var(--trans-base);

  padding: 0;
  position: relative;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  border-bottom: none;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: white;
  padding-top: var(--space-10);
}

.modal-header h2 {
  font-size: 13px;
}

.modal-header h3 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.header-modal-content h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1b2c4a;
}

.modal-header p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}

.modal-body {
  padding: 0 var(--space-5) var(--space-5) var(--space-5);
  text-align: center;
}

.modal-footer {
  padding: var(--space-4);
  border-top: none;
  display: flex;
  justify-content: center;
}

.modal-footer .modal-book-now {
  background: linear-gradient(to right, #ff943d, #ff7200) !important;
}

.modal-book-btn {
  background: linear-gradient(to right, #ff943d, #ff7200) !important;
  padding: 9px 25px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  z-index: 10;
  opacity: 0.8;
}

#newsletter-modal .form-group {
  margin-top: var(--space-5);
}

#newsletter-modal .input {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px;
  height: 60px;
  font-size: 1.1rem;
  padding: 0 var(--space-4);
  border-radius: 8px;
  text-align: left;
}

#newsletter-modal .btn-primary {
  background: linear-gradient(to right, #ff943d, #ff7200) !important;
  box-shadow: 0 5px 15px rgba(255, 114, 1, 0.3);
  font-weight: 700;
  width: 100%;
  max-width: 300px;
  border-radius: 40px;

  height: 55px;
  margin-top: 20px;
  margin-bottom: -40px;
}

#newsletter-modal .btn-primary:hover {
  box-shadow: 0 5px 20px rgba(255, 114, 1, 0.5);
}

#newsletter-modal h3 {
  font-size: 25px;
  font-weight: 700;
}

#newsletter-modal p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

#newsletter-modal h3,
#newsletter-modal p {
  color: white;
}

.modal-header-newsletter {
  background: linear-gradient(144deg,
      rgba(55, 26, 142, 1) 0%,
      rgba(24, 132, 190, 1) 96%);
  border: none;
  border-radius: 25px;
  padding: 35px 27px !important;
  text-align: center;
}

#newsletter-modal .modal-content {
  background: none;
  border: none;
  margin-top: 67px;
}

#newsletter-modal .input {
  border: none;
  box-shadow: none;
  padding: 15px 20px;
  height: 55px;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  /* left: 50%; */
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 33px 21px 33px 26px;
  width: 100%;

  /* display: flex;
  flex-direction: column;
  align-items: center; */
  gap: var(--space-3);
  z-index: var(--z-fixed);

  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all var(--trans-slow);
}

.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner svg {
  width: 110px;
  height: 110px;
}

.cookie-banner h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.cookie-banner p {
  margin: 0;
  font-size: var(--fs-md);
}

.cookie-banner a {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
  /* flex-wrap: wrap; */
  margin-top: var(--space-2);
  /* min-width: 170px; */
}

.cookie-banner-actions button {
  padding: 14px 21px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  /* min-width: 170px; */
}

.btn-primary-cookie {
  background: linear-gradient(to right, #ff943d, #ff7200);
  color: white;
  border: none;
}

.btn-secondary-cookie {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid #1e2c49;
}

.cookie-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.cookie-img-content {
  text-align: left;
  display: flex;

  flex-direction: column;
}

.img-wrapper {
  min-width: 110px;
}

@media (max-width: 480px) {
  .cookie-banner {
    width: 100%;
  }

  .cookie-banner h2 {
    font-size: 16px;
  }

  .cookie-banner p {
    font-size: 14px;
  }

  .cookie-banner-actions button {
    font-size: 12px;
  }
}

#search-form input::placeholder,
#search-form select::placeholder {
  color: lightgray;
  /* Standard syntax */
}

#search-form input::-webkit-input-placeholder,
#search-form select::-webkit-input-placeholder {
  color: lightgray;
}

#search-form .input {
  border-left: 1px solid var(--color-border) !important;
  background-color: unset !important;
}

/* ------------------------
      
         MODAL POPUP STYLES 
         ------------------------ */

/* The Modal Backdrop */
.modal-popup {
  position: fixed;
  z-index: var(--z-modal);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Hide scroll on backdrop */
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--trans-base) ease;
}

.modal-popup.show {
  display: flex;
  opacity: 1;
}

/* Modal Content Box */
.modal-content {
  background-color: var(--color-white);
  margin: auto;
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90%;
  transform: scale(0.95);
  transition: transform var(--trans-base) ease;
  border-radius: 15px;
}

.modal-popup.show .modal-content {
  transform: scale(1);
}

/* Modal Header */
.modal-header {
  padding: var(--space-4) var(--space-5) var(--space-2);
  border-bottom: 1px solid var(--color-gray-200);
  position: relative;
}

.modal-header h2 {
  font-weight: 700;
  /* color: var(--color-black); */
  margin: 0;
}

.modal-header p {
  font-size: var(--fs-base);
  color: var(--color-gray-700);
  margin: 0;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--color-gray-500);
  cursor: pointer;
  transition: color var(--trans-fast);
}

.modal-close-btn:hover {
  color: var(--color-black);
}

.modal-rating {
  display: block;
  flex-direction: column;
  align-items: flex-end;
  /* position: absolute;
  top: 0px;
  right: 30px; */
}

.header-modal-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 0;
}

.header-modal-content .popup-content {
  margin-right: 0;
}

.modal-rating .fas-star {
  color: var(--color-primary-dark);
  z-index: 999;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.modal-rating .stars {
  color: var(--color-primary-dark);
}

.modal-rating .modal-reviews {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.modal-header>div:first-child {
  /* margin-right: 120px; */
  text-align: left;
  padding-bottom: 20px;
  padding-top: 40px;
}

/* Tab Navigation */
.modal-tabs {
  display: flex;
  flex-wrap: wrap;
  padding: 20px var(--space-5);
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-gray-200);
  margin-top: 13px;
}

.tab-btn {
  padding: var(--space-2) var(--space-4);
  margin-right: var(--space-2);
  margin-bottom: var(--space-2);
  border: 1px solid var(--color-gray-300);
  border-radius: 30px;
  font-size: 10px;
  font-weight: 400;
  line-height: 22px;
  color: #8b8b8b;
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--trans-fast);
  flex-shrink: 0;
  padding: 4px 18px;
}

.tab-btn:hover {
  border-color: var(--color-primary);
  color: #316cdb;
}

.tab-btn.active {
  background: #316cdb;
  border-color: var(--color-border);
  color: var(--color-white);
}

/* Tab Content */
.modal-body {
  padding: 0 var(--space-5);
  overflow-y: auto;
  flex-grow: 1;
}

.tab-content {
  display: none;
  padding-bottom: var(--space-4);
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

.car-park-details {
  text-align: left;
}

.car-park-details h3 {
  color: #1b2c4a;
  font-size: 16px;

  margin-bottom: var(--space-3);
}

.car-park-details p {
  font-size: 12px;
  font-weight: 400;
  color: #1b2c4a;
  margin-bottom: var(--space-4);
}

/* Modal Footer (Price & Button) */
.modal-footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-shrink: 0;
  background-color: #e8f7ff;
}

.modal-price {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: #316cdb;
  margin: 0;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: bold;
}

/* .modal-footer .btn-primary {
  width: auto;
  flex-grow: 1;
  max-width: 250px;
  height: 50px;
} */
.modal-footer .model-book-now {
  padding: 8px 24px;
  background: linear-gradient(to right, #ff943d, #ff7200);
}

@media (max-width: 280px) {
  .pickup-wrapper {
    flex-direction: column;
  }

  .drop-off-wrapper {
    flex-direction: column;
  }

  #search-form {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .summary {
    /* display: block; */
  }

  .hero-features {
    padding-left: 20px;
  }

  .featured-img {
    flex-direction: column;
  }

  .payment-icons-2 img {
    height: 35px;
    width: 140px;
  }

  .satisfaction-banner {
    padding: var(--space-2) var(--space-3);
  }

  .sb-profiles {
    height: 32px;
    min-width: 80px;
    padding-right: 20px;
  }

  .sb-profile-ring {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }

  .sb-profile-ring:nth-child(1) {
    left: 0px;
  }

  .sb-profile-ring:nth-child(2) {
    left: 20px;
  }

  .sb-profile-ring:nth-child(3) {
    left: 40px;
  }

  .sb-profile-ring:nth-child(4) {
    left: 60px;
  }

  /* .sb-text-content h4 {
    font-size: var(--fs-sm);
  } */
  /* .sb-text-content p {
    font-size: var(--fs-xs);
  } */
  .modal-popup {
    padding: 0 16px 16px 16px;
  }

  body {
    margin: 0;
  }

  .hero,
  .features,
  .search-card,
  .results,
  .satisfaction-banner,
  footer {
    /* margin-top: var(--space-4); */
    /* margin-bottom: var(--space-4); */
  }

  .search-card {
    margin: 0px;
  }

  .search-card {
    display: block;
  }

  #search-form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .pickup-wrapper {
    display: flex;
  }

  .drop-off-wrapper {
    display: flex;
  }
}

/* Responsive Modal */
@media (max-width: 500px) {
  .modal-content {
    width: 100%;
    max-width: none;
    height: 80%;
    max-height: none;
    border-radius: 15px;
  }

  .modal-header {
    padding: var(--space-4) var(--space-4) var(--space-2);
  }

  .modal-tabs {
    padding: 0 var(--space-4);
  }

  .modal-body {
    padding: 0 var(--space-4);
  }

  .modal-footer {
    padding: var(--space-4);
  }

  .modal-footer .btn-primary {
    max-width: none;
  }

  .modal-rating {
    right: 40px;
  }

  .modal-close-btn {
    top: 20px;
    right: 15px;
  }
}

/* MOBILE & SMALL TABLETS */
@media (max-width: 640px) {
  .search-criteria-bar {
    align-items: flex-start;
    justify-content: space-between;
    align-items: center;
  }

  .search-criteria-action {
    text-align: right;
  }

  .payment-methods {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (min-width: 481px) and (max-width: 640px) {
  .satisfaction-banner {
    padding: var(--space-3);
    max-width: 100%;
  }
}

@media (min-width: 320px) and (max-width: 380px) {
  .hero {
    padding: 15px;
  }
}

@media (min-width: 380px) and (max-width: 768px) {
  .hero {
    padding: 25px;
  }
}

/* Responsive Header */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .featured-img {
    flex-direction: column;
  }

  nav {
    position: absolute;
    top: var(--navbar-height);
    right: 0;
    width: 60%;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-md);
    top: 68px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--trans-base);
  }

  nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #search-form {
    display: flex;
    flex-direction: column;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    width: 100%;
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Still Mobile — 1 COLUMN */
  .results {
    grid-template-columns: 1fr;
  }


  .features {
    grid-template-columns: 1fr;
  }

  .feature-hero {
    gap: 15px !important;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .form-row {
    gap: 6px;
  }

  .form-row>* {
    margin-bottom: unset;
  }

  .collapsible-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .coupon-form {
    /* flex-direction: column; */
  }

  .coupon-form .btn {
    width: 100%;
  }

  .coupon-form .btn {
    width: 30%;
  }

  /* .cookie-banner {
    flex-direction: row;
  } */

  .form-row select.input,
  .form-row input[type="date"].input,
  .form-row input[type="time"].input {
    padding-right: 0;
  }

  .form-row select.input {
    padding: 0 30px 0px 10px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) and (max-width: 912px) {
  .results {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 912px) {
  #search-form {
    flex-direction: column;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
    #search-form {
    flex-direction: row !important;
  }
}
@media (min-width: 1024px) {
  .summary {
    grid-template-columns: 2fr 1fr;
  }

  /* LAPTOP — 1fr 1fr 1fr */
  .results {
    grid-template-columns: 1fr 1fr 1fr;
  }



  /* .site {
    max-width: 1500px;
  } */
  .btn-primary {
    height: 50px;
    margin-top: 20px;
  }

  .lpg-mt {
    margin-top: 20px;
  }
}

/* .picker-wrapper {
  position: relative;
  width: 100%;
} */
.drop-off-wrapper,.pickup-wrapper {
  position: relative;
}

.input-box {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  background: #fff;
}

/* Calendar */
.calendar {
  position: absolute;
  background: #f5f5f5;
  border-radius: 7px;
  padding: 18px;
  z-index: 15000;
  left: 0;
  top: 31%;
  width: 100%;
}

/* .calendar {
    margin-top: -1px;
    position: absolute;
    width: 175%;
    background: #f5f5f5;
    border-radius: 7px;
    padding: 18px;
    z-index: 15000;
    margin-left: 73%;
} */

.hidden {
  display: none;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.nav-btn {
  border: none;
  background: #fff;
  padding: 0px 10px;
  font-weight: 100;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
}

.cal-weekdays,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.cal-weekdays span {
  color: #1d2c4b;
  font-size: 13px;
  font-weight: 600;
}

.cal-days div {
  padding: 6px;
  margin: 2px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1d2c4b;
  background-color: #fff;
  transition: 0.2s;
}

.cal-days div:hover {
  background: #e4ecff;
}

/* Today styling */
.cal-days .today {
  background: #ff8a00 !important;
  color: #fff;
  font-weight: bold;
}

/* Inactive days from previous/next month */
.cal-days .inactive {
  color: #c6c6c6;
  cursor: default;
  background-color: #f5f5f5;
}

/* Selected date styling */
.cal-days .selected {
  background: #ff7b00 !important;
  color: #fff;
  font-weight: bold;
}

/* Month & Year header */
/* .dtCalMonth,
.dtCalYear {
  background-color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  padding: 5px 8px;
  color: #1d2c4b;
} */

.dtCalMonth,
.dtCalYear {
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.dtCalMonth::after,
.dtCalYear::after {
  content: "";
  position: absolute;
  right: 4px;  
  bottom: 4px; 
  width: 0;
  height: 0;
  border-left: 6px solid transparent; 
  border-top: 6px solid #ff8a00;     
  transform: rotate(91deg);  
}

/* Responsive */
/* @media (min-width: 320px) and (max-width: 380px) {
  .picker-wrapper {
    width: 155px;
  }
} */
 /* @media (min-width: 320px) and (max-width: 500px) {
.date-col{
width: 62%;
}
.time-col{
width: 38%
}
 } */
/* @media (min-width: 320px) and (max-width: 500px) {
  .picker-wrapper {
    width: 200px;
  }
} */

@media (min-width: 320px) and (max-width: 500px) {
  .cal-days div {
    padding: 3px;
  }
}

.custom-select {
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Trigger (closed state) */
.custom-select-trigger {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 45px 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-border) !important;
  /* blue border like screenshot */
  background-color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  color: #9ca3af;
  /* placeholder gray */
  cursor: pointer;
  position: relative;
  height: 50px;
}

/* Arrow icon */
.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 46%;
  transform: translateY(-50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-left: 2px solid #111827;
  border-bottom: 2px solid #111827;
  background: none;
}

/* Dropdown list container */
.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  display: none;
  z-index: 999;
}

/* Individual option */
.custom-option {
  padding: 12px 16px;
  font-size: 15px;
  color: #111827;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

/* Hover + active states */
.custom-option:hover {
  background: #1d2c4b;
  /* light blue hover */
  color: #e6fffb;
}

/* Optional: selected state class if you want to style it */
.custom-option.selected {
  background: #1d2c4b;
  color: #fff;
}

/* Mobile-friendly sizing */
@media (max-width: 640px) {
  .custom-select-trigger {
    padding: 16px 48px 16px 18px;
    font-size: 16px;
  }

  .custom-option {
    font-size: 16px;
  }
}

/* ------------------------
      
      DIMMED PAGE STYLES 
      ------------------------ */
#overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 100;
}

.search-wrapper {
  position: relative;
  z-index: 101;
  /* background: #fff; */
  /* padding: 16px; */
  border-radius: 8px;
}

/* scrollar on time field */
.custom-select-time .custom-options {
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
}