/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Manrope', sans-serif;
  color: #111827;
}

/* Full-width header background */
.header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ---------- Header Styling ---------- */
.header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Header inner layout */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image */
.logo-button {
  display: inline-block;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: none; /* remove underline */
}
.logo-button img {
  display: block;
  /* any sizing you need, e.g.: */
  width: 150px;
  height: auto;
}

/* Right side of header: links + language dropdown */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Help and navigation links */
.help-link {
  display: flex;
  gap: 1.5rem;
}

.help-link a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.help-link a:hover {
  color: #007bff;
}

/* Language dropdown */
.language-select select {
  padding: 0.4rem 0.75rem;
  font-size: 0.95rem;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.language-select select:focus {
  outline: none;
  border-color: #007bff;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
  }

  .help-link {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .language-select select {
    width: 100%;
  }
}

/* Center all other page content */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 320px;
  padding-right: 2rem;
}

.hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.search-row {
  display: flex;
  align-items: center;
  max-width: 460px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(13,113,186,0.07);
  border: 1px solid #e5eaf3;
  margin: 1.5rem 0;
  padding: 0.2rem 0.2rem 0.2rem 0.4rem;
  gap: 0.5rem;
}

.autocomplete {
  flex: 1;
}

.search-row input[type="text"] {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  padding: 0.7em 0.5em 0.7em 0.2em;
  color: #222;
  outline: none;
}

.search-row input[type="text"]::placeholder {
  color: #b7c9d9;
}

.primary-button {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.7em 1.4em;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  height: 38px;
  box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}

.primary-button:hover,
.primary-button:focus {
  background: #005fcc;
}

@media (max-width: 600px) {
  .search-row {
    max-width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem;
  }
  .primary-button {
    width: 100%;
    justify-content: center;
  }
}

.autocomplete-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border: 1px solid #e5eaf3;
  border-top: none;
  max-height: 170px;
  overflow-y: auto;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 6px 24px rgba(13,113,186,0.08);
}

.autocomplete-item {
  padding: 0.65em 1em;
  cursor: pointer;
  font-size: 1rem;
  color: #1e293b;
}

.autocomplete-item:hover, .autocomplete-active {
  background: #f0f8ff;
  color: #007bff;
}




.hero-right {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }
  .hero-left {
    padding-right: 0;
    text-align: center;
  }
  .search-bar {
    width: 100%;
  }
}

/* Featured Locations Section */
.locations-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 4rem;
}

.location-card {
  flex: 1 1 calc(25% - 20px); /* 4 cards per row with gap */
  max-width: calc(25% - 20px);
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.location-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.location-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #f9f9f9;
}

.location-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.location-text p {
  font-size: 0.9rem;
  color: #555;
}

.location-info button {
  background-color: #007bff;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.location-info button:hover {
  background-color: #005fcc;
}

/* Responsive: stack cards on small screens */
@media (max-width: 768px) {
  .location-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


.faq-section {
  margin-top: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}

.faq-section h2 {
  color: #0d71ba;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.faq-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap; /* Important: force side-by-side */
}

.faq-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 0;
  cursor: pointer;
  text-align: left;
  color: #111827;
}

.faq-answer {
  display: none;
  padding-bottom: 1rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Show answer if open */
.faq-item.open .faq-answer {
  display: block;
}

/* Arrow toggles */
.faq-item.open .faq-question::after {
  content: "▲";
  float: right;
}
.faq-question::after {
  content: "▼";
  float: right;
}

/* Responsive fix */
@media (max-width: 900px) {
  .faq-columns {
    flex-direction: column;
  }

  .faq-column {
    width: 100%;
  }
}

/* Section container */
.how-it-works-section {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 1rem;
  text-align: center;
}

/* Section title */
.how-it-works-title {
  color: #0d71ba;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Flex container for steps */
.how-it-works-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Individual step */
.how-step {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

/* Icons */
.how-icon {
  height: 140px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

/* Step title */
.how-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
  font-weight: 600;
}

/* Step description */
.how-step p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  max-width: 280px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .how-it-works-steps {
    flex-direction: column;
    align-items: center;
  }

  .how-step {
    max-width: 100%;
    padding: 2rem 1rem;
  }

  .how-icon {
    height: 120px;
    margin-bottom: 1rem;
  }

  .how-step h3 {
    font-size: 1.15rem;
  }

  .how-step p {
    font-size: 0.95rem;
  }
}

/* Footer Styles */
.footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e2e8f0;
  padding: 3rem 1rem 1rem;
  font-size: 0.95rem;
  color: #475569;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 280px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex: 1 1 500px;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-column h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #475569;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* PARTNER PAGE */
.partner-hero {
  background: #f1f8ff;
  padding: 4em 1em;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.partner-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  color: #1e293b;
}

.partner-hero p {
  font-size: 1.2rem;
  color: #475569;
}

.benefits-grid {
  display: grid;
  gap: 1.5em;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefit {
  background: #fff;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.form-section p {
  text-align: center;
  color: #475569;
  margin-bottom: 2em;
}

form {
  background: #fff;
  padding: 2em;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

form input,
form textarea {
  width: 100%;
  padding: 1em;
  margin-bottom: 1em;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  background: #3b82f6;
  color: white;
  padding: 0.8em 2em;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

form button:hover {
  background: #2563eb;
}

/* Consistent page container */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Match home page header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.help-link a {
  color: #1e293b;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
}

.language-select select {
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Footer (matches homepage) */
.footer {
  background: #f1f5f9;
  padding: 2rem 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #1e293b;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.4rem;
}

.footer-column a {
  text-decoration: none;
  color: #475569;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Booking Page Styles */
.booking-page {
  padding: 4rem 0;
}
.booking-section {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}
.booking-section h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0d71ba;
  text-align: center;
  margin-bottom: 2rem;
}
.booking-form .form-row {
  margin-bottom: 1.25rem;
}
.booking-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #374151;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #f9fafb;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.2);
}
.booking-form .two-col {
  display: flex;
  gap: 1rem;
}
.booking-form .two-col > div {
  flex: 1;
}
.booking-form textarea {
  resize: vertical;
}
.booking-form .submit-row {
  text-align: center;
}
.booking-form button {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
.booking-form button:hover {
  background-color: #005fcc;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 640px) {
  .booking-form .two-col {
    flex-direction: column;
  }
}

