/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* justify-content: center; */
  background-color: #000;
  font-family: 'Monserrat';
  line-height: 1.6;
  color: #333;
}

header {
  background: #000000;
  position: fixed;
  top: -100px; /* Initially hide the header */
  width: calc(100% - 40px); /* Add 20px space on each side */
  margin: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease-in-out;
  z-index: 1000; /* Ensure the header stays above other content */
  border-radius: 25px; /* Make the header curved */
  font: #028e17;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Logo Styles */
.logo {
  display: inline-block;
  /* background-color: #D3B184; Background color for the frame */
  background-color: #F1B82D; /* Background color for the frame */
  padding: 5px; /* Space between the image and the frame */
  border-radius: 25px; /* Curvy frame */
}

.logo img {
  display: block;
  border-radius: 15px; /* Curvy corners for the image itself */
  height: 50px; /* Adjust as needed */
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

nav ul li a:hover {
  color: #FFF;
}

/* Responsive Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.hero-image {
  background: url('images/circle_logo.png') no-repeat center center;
  background-size: contain;
  background-color: #000;
  height: 100vh; /* <-- this is the REAL fix */
  width: 100%;
}

/* Content box */
.hero-content {
  max-width: 800px;
  padding: 20px;
  /* background: rgba(211, 177, 132, 0.6); semi-transparent gold */
  background: rgb(241, 184, 45, 0.6); /* semi-transparent gold */
  border-radius: 10px;
}

.hero h1,
.hero p { /* Assuming you have headings and paragraphs inside */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adjust the shadow size and color */
}

.hero-content h1 {
  font-size: 32px;
}

.hero-content p {
  font-size: 18px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #000000;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0056b3;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles */
footer {
  background: rgb(241, 184, 45, 0.5);
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
  border-radius: 20px;
}

/* General Styles for Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Specific background color for each social icon */
.facebook-icon {
  background-color: #0867ff;
}

.facebook-icon:hover {
  color: #fff700;
}

.instagram-icon {
  background-color: #cc2d8b; /* Burgundy color */
}

.instagram-icon:hover {
  color: #fff700;
}

.whatsapp-icon {
  background-color: #1fb039;
}

.whatsapp-icon:hover {
  color: #fff700;
}

.deliveroo-icon {
  background-color: #00c7b7; /* Deliveroo color */
}

.deliveroo-icon:hover {
  color: #009f8e;
}

.uber-icon {
  background-color: #000000; /* Uber black color */
}

.uber-icon:hover {
  color: #aaaaaa;
}

.justeat-icon {
  background-color: #ff8000;
}

.justeat-icon:hover {
  color: #ff8000;
}

/* Contact info styles */
.contact-info {
  text-align: center;
  margin-top: 20px;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #555;
}

/* General Section Styles */
.curved-section {
  background-color: #F1B82D;
  color: #fff;
  padding: 20px;
  border-radius: 25px;
  margin: 20px auto;
  max-width: 1000px;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.1);
  text-align: center;
}

.curved-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.curved-section p {
  font-size: 1.2em;
  line-height: 1.6;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.partners-grid .partner {
  background: #fff;
  color: #333;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 40px);
  box-sizing: border-box;
}

.partners-grid .partner img {
  max-width: 100%;
  border-radius: 10px;
}

.partners-grid .partner p {
  margin-top: 10px;
  font-size: 1em;
}

ul {
  list-style-type: disc; /* Default bullet style */
  padding-left: 20px; /* Indent the bullet points */
}

ul li {
  font-weight: bold;
  text-align: left; /* Align text to the left */
}

ul li h1 {
  font-size: 1.5em;
  margin: 0;
}

.quote-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 960px;
}

.quote-form input,
.quote-form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.quote-form button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

.quote-form button:hover {
  background-color: #0056b3;
}

#output {
  margin-top: 20px;
}

/* Hide menu on small screens by default */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.pricing-section {
  max-width: 950px;
  margin: 60px auto;
  padding: 0 30px;
}

.pricing-section h2 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #F1B82D;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  margin: 5px 0;
}

.price {
  font-weight: bold;
  color: white;
  font-size: 1.1rem;
}

.book-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: rgb(0, 140, 255);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.book-btn:hover {
  background-color: #cc7a00;
}

.info-section {
  background: #fff3e0;
  margin-top: 60px;
  padding: 40px 20px;
  border-radius: 10px;
}

.info-section h3 {
  text-align: center;
  color: #000;
}

.info-section ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.info-section li {
  margin: 8px 0;
}

.dropdown-content {
  display: none;
  margin-top: 15px;
  text-align: center;
  transition: all 0.4s ease;
}

.card.active .dropdown-content {
  display: block;
  animation: fadeIn 0.4s ease;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: #000;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.card.active .dropdown-toggle i {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

p {
  color: #000;
}

/* Force proper styling for the Prices page "Additional Information" section */
#about.curved-section {
  background-color: #F1B82D !important; /* your site’s gold tone */
  color: #000 !important; /* readable black text */
  padding: 40px 20px;
  border-radius: 25px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Optional: Make list items clean and matching your theme */
#about.curved-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#about.curved-section li {
  font-size: 1.1em;
  margin: 10px 0;
  color: #111;
}

#additional-info.curved-section {
  background-color: #F1B82D;
  color: #000;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 30px;
}

.split-section .text {
  flex: 1;
}

.split-section .image {
  flex: 1;
}

.split-section img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
}

/* Reverse layout */
.split-section.reverse {
  flex-direction: row-reverse;
}

/* For mobile */
@media (max-width: 768px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
    text-align: center;
  }
}

.services-image {
  width: 100%;
  max-width: 800px; /* keeps it from becoming larger than original */
  height: auto; /* keeps aspect ratio */
  display: block;
  margin: 0 auto; /* center the image */
  border-radius: 20px; /* adjust number for more or less curve */
}

img {
  max-width: 100%; /* responsive */
  height: auto; /* keeps aspect ratio */
  display: block;
}

p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* related resource: styles.css:745:1 */
#additional-info.curved-section {
  opacity: 1;
}

/* related resource: styles.css:745:1 */
#about.curved-section {
  opacity: 1;
}

/* --- SIMPLE PRICING BLOCK --- */
.pricing-simple {
  max-width: 950px;
  margin: 50px auto;
  padding: 40px 25px;
  background: #F1B82D;
  color: #000;
  border-radius: 25px;
}

.pricing-simple h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
}

.pricing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.pricing-list .item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.pricing-list .item h3 {
  margin-bottom: 10px;
  color: #000;
}

.pricing-list ul {
  list-style: none;
  padding: 0;
}

.pricing-list li {
  margin: 6px 0;
}

/* --- FULL TABLE --- */
.pricing-table-section {
  max-width: 950px;
  margin: 50px auto;
  padding: 30px;
}

.pricing-table-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.pricing-table {
  table-layout: fixed;
  word-wrap: break-word;
  width: 100%;
  border-collapse: collapse;
  background: #F1B82D;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: break-word;
  padding: 15px;
  text-align: center;
  color: #000;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.pricing-table tr:nth-child(even) {
  background: #ffe19a;
}

.pricing-table th {
  background: #000;
  color: #fff !important;
}

.nav-links a:hover {
  color: #F1B82D; /* your gold color */
  transition: 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: #F1B82D; /* gold */
  transition: 0.3s ease;
}

.enquiry-form {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.submit-btn {
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.submit-btn:hover {
  background: #333;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 65% 35%; /* left slightly wider than right */
  height: 100vh;
  width: 100%;
  max-width: 1500px; /* optional site max width */
  margin: 0 auto;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 40px;
  background-color: black;
}

.hero-content {
  background: rgba(241, 184, 45, 0.6);
  padding: 20px;
  border-radius: 10px;
  color: white;
  text-align: center;
}

/* Make the enquiry box smaller and aligned with the hero box */
.enquiry-box {
  max-width: 420px; /* overall enquiry container width */
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  background: #F1B82D;
  color: #000;
  align-self: flex-end; /* stick it to the right edge of the right column */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Inputs inside the form should fit the smaller container */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px; /* align with hero box width */
  width: 100%;
  margin: 0;
  height: 100%; /* remove auto-centering */
}

.hero {
  padding: 20px 10px; /* smaller padding */
}

.pricing-table {
  table-layout: fixed;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.menu-toggle .menu-text {
  display: block;
  font-size: 12px;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-text {
  display: inline-block; /* stays the size of the text, not stretched */
  background: rgba(255, 78, 2, 0.852); /* soft dark highlight */
  color: #ffffff; /* font colour */
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 1rem; /* SAME as your paragraph */
  line-height: 1.5;
  opacity: 0; /* hidden before animation */
  border-right: 2px solid #000; /* typewriter cursor */
}

.type-on-scroll.typed {
  opacity: 1; /* visible after animation */
}

/* ============================
 ADMIN PANEL STYLING
 ============================ */

/* Main wrapper */
.admin-wrapper {
  max-width: 1000px;
  margin: 120px auto;
  padding: 30px;
  background: #111;
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Headings */
.admin-wrapper h1,
.admin-wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #F1B82D;
}

/* Login box */
.login-box {
  background: #000;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font-size: 16px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: #F1B82D;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-box button:hover {
  background: #ffcf5a;
}

/* Status text */
.status-line {
  text-align: center;
  margin-top: 10px;
  color: #eee;
  font-size: 14px;
}

/* Bookings section */
.table-box {
  width: 100vw; /* full viewport width */
  margin-left: calc(50% - 50vw); /* pull box to the very left edge */
  margin-right: calc(50% - 50vw); /* pull box to the very right edge */
  background: #000;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Table */
#bookingsTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

#bookingsTable th,
#bookingsTable td {
  padding: 12px;
  border-bottom: 1px solid #333;
  text-align: left;
  color: #fff;
}

#bookingsTable th {
  background: #222;
  color: #F1B82D;
}

#bookingsTable tr:hover {
  background: #1b1b1b;
}

/* Paid / Unpaid tags */
.tag-paid {
  display: inline-block;
  padding: 5px 10px;
  background: #2e7d32;
  color: #fff;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
}

.tag-unpaid {
  display: inline-block;
  padding: 5px 10px;
  background: #c62828;
  color: #fff;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .admin-wrapper {
    margin: 140px 15px;
    padding: 20px;
  }

  #bookingsTable th,
  #bookingsTable td {
    font-size: 14px;
    padding: 8px;
  }
}

#bookingsTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  color: white;
}

#bookingsTable th {
  background: #F1B82D;
  color: black;
  padding: 12px;
  font-weight: bold;
}

#bookingsTable td {
  padding: 10px;
  border-bottom: 1px solid #333;
}

.tag-paid {
  background: green;
  padding: 4px 8px;
  border-radius: 6px;
  color: white;
}

.tag-unpaid {
  background: red;
  padding: 4px 8px;
  border-radius: 6px;
  color: white;
}

/* Smooth fade animation */
.smooth-hide,
.smooth-show {
  transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
  overflow: hidden;
}

.smooth-hide {
  opacity: 0;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
}

.smooth-show {
  opacity: 1;
  height: auto;
}

.input-box {
  display: block;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.input-box label {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.input-box input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fafafa;
  transition: 0.25s;
}

.input-box input:focus {
  border-color: #000;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.smooth-show {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.smooth-show.show {
  opacity: 1;
  transform: translateY(0);
}

.trip-tabs {
  display: flex;
  background: #000;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 15px;
  gap: 4px;
}

.trip-tab {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  color: #fff;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.trip-tab.active {
  background: #1fb039;
  color: #ffffff;
  transform: translateY(-1px);
}

.trip-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

/* Journey Type (Airport / City / Other) */
.journey-type-buttons {
  display: flex;
  background: #000;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 15px;
  gap: 4px;
}

.journey-btn {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.journey-btn.active {
  background: #1fb039;
  color: #ffffff;
}

#returnFields,
#airportExtras,
#waitHoursWrapper,
#hourlyWrapper,
#extraStopAddressWrapper {
  display: none;
}

/* ================================
 PREMIUM CAR CLASS BUTTONS
 ================================ */
.car-class-buttons {
  display: flex;
  background: #000;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 15px;
  gap: 4px;
}

.car-btn {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.car-btn.active {
  background: #1fb039;
  border-color: #1fb039;
  color: #fff;
  transform: translateY(-1px);
}

/* =======================================
 PREMIUM FORM FIELD STYLING
======================================= */
.input-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.input-box label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-box .icon {
  font-size: 18px;
  color: #000;
}

/* Premium dropdown */
.styled-select select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #000;
  background: #fff;
  font-size: 1rem;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: 0.25s;
}

.styled-select select:focus {
  border-color: #1fb039;
  box-shadow: 0 0 6px rgba(0, 128, 0, 0.3);
}

/* Dropdown arrow */
.styled-select {
  position: relative;
}

.styled-select::after {
  content: "\f078"; /* Font Awesome chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 55%;
  transform: translateY(-50%);
  color: #000;
  pointer-events: none;
  font-size: 14px;
}

/* Two dropdowns on same row */
.two-column-row {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .two-column-row {
    flex-direction: column;
  }
}

/* Premium input fields */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="email"],
input[type="tel"],
input[type="number"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #000;
  background: #fff;
  font-size: 1rem;
  transition: 0.25s;
}

input:focus {
  border-color: #1fb039;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 128, 0, 0.3);
}

/* =======================================
 PREMIUM DROPDOWN (Matches Buttons)
======================================= */
.premium-select {
  position: relative;
  width: 100%;
  margin-bottom: 18px;
}

.premium-select select {
  width: 100%;
  padding: 16px;
  background: #000; /* same as tab buttons */
  color: #fff;
  border: 3px solid #000;
  border-radius: 40px; /* round like buttons */
  font-size: 1.1rem;
  font-weight: 600;
  appearance: none; /* hide default arrow */
  cursor: pointer;
  transition: 0.25s ease;
}

/* dropdown arrow */
.premium-select::after {
  content: "\f078"; /* FontAwesome arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Green active state on selection (not placeholder) */
.premium-select select:not([value=""]) {
  background: #1fb039 !important;
  color: #fff;
  border-color: #1fb039;
}

/* Focus effect */
.premium-select select:focus {
  outline: none;
  background: #1fb039;
  border-color: #1fb039;
  color: #fff;
}

.from-to-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.from-to-col {
  flex: 1 1 250px;
}

.from-to-label {
  font-weight: 600;
  margin-bottom: 8px;
}

.from-to-toggle {
  display: flex;
  background: #000;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 10px;
}

.from-to-toggle button,
.trip-tabs .trip-tab,
.car-class-buttons .car-btn,
.journey-type-buttons .journey-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.from-to-toggle button.active,
.trip-tabs .trip-tab.active,
.car-class-buttons .car-btn.active,
.journey-type-buttons .journey-btn.active {
  background: #2ca043; /* your green */
}

.address-wrapper input,
#otherAddressWrapper input {
  width: 100%;
  margin-bottom: 10px;
}

.address-wrapper input {
  padding: 16px;
  border-radius: 40px;
  border: 3px solid #000;
  background: #fff;
  font-size: 1.1rem;
  width: 100%;
}

.enquiry-form {
  max-width: 800px; /* wider form */
  margin: 0 auto; /* centers the whole form */
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center; /* centers internal items */
}

.from-to-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.from-to-col {
  flex: 1;
  min-width: 260px;
}

#cityFromToRow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.enquiry-form > * {
  width: 100%;
}

.from-to-label {
  margin-bottom: 6px;
  font-weight: 600;
}

/* ============================
 PREMIUM INPUT STYLING (MATCHES AIRPORT STYLE)
============================ */
.premium-input,
.premium-select select,
.address-wrapper input,
.enquiry-form input[type="text"],
.enquiry-form input[type="tel"],
.enquiry-form input[type="email"],
.enquiry-form input[type="date"],
.enquiry-form input[type="time"],
.enquiry-form input[type="number"],
.enquiry-form select {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  border: 1px solid #444;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  appearance: none;
  outline: none;
  transition: 0.3s ease;
}

/* Hover + focus */
.premium-select select:focus,
.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: #27ae60;
  box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
}

/* Placeholder style */
.enquiry-form input::placeholder {
  color: #aaa;
}

/* Dropdown arrow replacement */
.premium-select {
  position: relative;
}

.premium-select::after {
  content: "\f078"; /* Font Awesome arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.extras-fieldset {
  border: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0; /* remove big spacing */
  padding: 0;
}

.extras-fieldset .pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid #000;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 0.9rem;
}

/* hide ugly default checkbox */
.extras-fieldset input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
  transition: 0.25s;
}

/* tick shape */
.extras-fieldset input[type="checkbox"]::before {
  content: "✓";
  font-size: 14px;
  color: white;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s;
}

/* checked state */
.extras-fieldset input[type="checkbox"]:checked {
  background: #1fb039;
}

.extras-fieldset input[type="checkbox"]:checked::before {
  opacity: 1;
  transform: scale(1);
}

/* pill also glows green when checked */
.extras-fieldset input[type="checkbox"]:checked + span {
  color: #fff;
}

.extras-fieldset .pill input[type="checkbox"]:checked ~ span {
  color: #fff;
}

.extras-fieldset .pill:has(input[type="checkbox"]:checked) {
  background: #000000;
}

.submit-btn {
  width: 100%;
  background: #27ae60;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #1e8449;
}

/* FIX INPUT TYPE DATE/TIME NATURAL UI */
input[type="date"].premium-input,
input[type="time"].premium-input {
  appearance: auto; /* RESTORES native picker */
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

input[type="date"] {
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10h5v5H7z" opacity=".3"/><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 45px;
  color: #FFF;
}

input[type="time"] {
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.5-13h-1v7l6.12 3.56.5-.86-5.62-3.22z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 45px;
  color: #FFF;
}

/* RESTORE native date & time pickers */
input[type="date"],
input[type="time"] {
  -webkit-appearance: auto !important;
  appearance: auto !important;
  background-color: #111 !important; /* keep black */
  color: #fff !important;
  border: 1px solid #444 !important;
}

/* Keep your custom icons */
input[type="date"],
input[type="time"] {
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 45px;
}

/* FORM GRID LAYOUT */
.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

/* FIX DATE/TIME PICKER VISIBILITY */
input[type="date"],
input[type="time"] {
  background-color: #000 !important;
  color: #fff !important;
  border: 2px solid #000 !important;
}

/* Keep nice rounded field design */
input[type="date"],
input[type="time"] {
  border-radius: 12px;
}

/* Replace icons with clean black icons */
input[type="date"] {
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="22" viewBox="0 0 24 24" width="22" xmlns="http://www.w3.org/2000/svg"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2z"/></svg>');
  background-position: right 12px center;
  background-repeat: no-repeat;
}

input[type="time"] {
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="22" viewBox="0 0 24 24" width="22" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-.5 5h1v6l4.5 2.7-.5.9L11.5 14V7z"/></svg>');
  background-position: right 12px center;
  background-repeat: no-repeat;
}

.enquiry-form {
  max-width: 550px; /* slimmer form */
  gap: 10px; /* reduce spacing */
}

.premium-input,
.premium-select select {
  padding: 10px 14px; /* smaller padding */
  margin-bottom: 8px; /* tighter fields */
}

.from-to-row {
  gap: 12px;
}

.form-row {
  gap: 12px;
}

.from-to-row {
  display: flex;
  width: 100%;
  gap: 15px;
}

.from-to-col {
  flex: 1;
}

/* ======== FORM SECTION ISOLATION ======== */
.booking-section {
  padding: 20px !important;
  max-width: 700px !important;
  margin: 20px auto !important;
  border-radius: 25px !important;
}

/* Prevent compact styles from affecting other curved sections */
.curved-section:not(.booking-section) {
  padding: 40px !important;
  max-width: 1000px !important;
  border-radius: 25px !important;
}

/* ============================================
 ULTRA COMPACT PREMIUM FORM (kept as it affects layout)
 ============================================ */
/* Make entire form narrower & centered */
.enquiry-form {
  max-width: 480px;
  margin: 0 auto;
  gap: 6px !important;
  padding: 0 !important;
}

/* Title spacing */
.curved-section h2 {
  margin-bottom: 10px;
}

/* Compact inputs */
.premium-input,
.premium-select select,
.address-wrapper input,
.enquiry-form input[type="text"],
.enquiry-form input[type="tel"],
.enquiry-form input[type="email"],
.enquiry-form input[type="date"],
.enquiry-form input[type="time"],
.enquiry-form input[type="number"],
.enquiry-form select {
  padding: 8px 10px !important;
  margin-bottom: 6px !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
}

/* FROM/TO Row compact */
.from-to-row,
#cityFromToRow {
  gap: 10px !important;
  margin: 8px 0 !important;
}

.from-to-col {
  min-width: 200px !important;
}

/* Tiny labels */
.from-to-label {
  margin-bottom: 4px !important;
  font-size: 0.85rem !important;
}

/* Compact pill tabs (trip, car class, journey type) */
.trip-tabs,
.car-class-buttons,
.journey-type-buttons,
.from-to-toggle {
  padding: 3px !important;
  gap: 3px !important;
}

.trip-tab,
.car-btn,
.journey-btn,
.from-to-toggle button,
.city-from-btn,
.city-to-btn {
  padding: 6px 8px !important;
  font-size: 0.8rem !important;
}

/* Two-field rows compact */
.form-row {
  gap: 10px !important;
  margin: 0 !important;
}

/* Date/time picker icon spacing */
input[type="date"],
input[type="time"] {
  padding-right: 38px !important;
}

/* Child seat + extra stops compact pills */
.extras-fieldset {
  gap: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.extras-fieldset .pill {
  padding: 6px 10px !important;
  gap: 6px !important;
  font-size: 0.8rem !important;
}

/* Checkbox size smaller */
.extras-fieldset input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
}

/* Remove HUGE spacing under sections */
#waitHoursWrapper,
#returnFields,
#hourlyWrapper,
#extraStopAddressWrapper {
  margin-top: 4px !important;
}

/* Submit button compact */
.submit-btn {
  padding: 10px !important;
  font-size: 1rem !important;
  border-radius: 8px !important;
  margin-top: 10px !important;
}

/* Make airport + city dropdowns smaller and cleaner */
.premium-select select {
  padding: 10px 12px !important;
  border-radius: 24px !important;
  font-size: 0.9rem !important;
}

/* Smaller dropdown arrow */
.premium-select::after {
  right: 15px !important;
  font-size: 12px !important;
}

/* Reduce curved section padding */
.curved-section {
  padding: 15px !important;
  max-width: 700px !important;
}

/* MAKE DATE/TIME PLACEHOLDER VISIBLE */
input[type="date"]::before,
input[type="time"]::before {
  color: #bbb;
}

input[type="date"],
input[type="time"] {
  background-color: #111 !important;
  color: #fff !important;
  border: 2px solid #555 !important;
}

/* FORCE DATE/TIME/TERMINAL/FLIGHT NUMBER TO SAME SIZE AS MOBILE/EMAIL */
#returnDate,
#returnTime,
#terminal,
#flightNumber {
  width: 100% !important;
  padding: 14px 16px !important;
  height: 48px !important;
  background: #111 !important;
  color: #fff !important;
  border-radius: 10px !important;
  border: 1px solid #444 !important;
  font-size: 1rem !important;
  box-sizing: border-box !important;
}

/* Date + time rows aligned with normal fields */
.date-time-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.date-time-row .input-box {
  flex: 1;
}

/* Terminal + Flight number same row */
.flight-row {
  display: flex;
  gap: 12px;
}

.flight-row .input-box {
  flex: 1;
}

/* Additional Notes textarea */
textarea.premium-field {
  min-height: 90px;
  max-height: 160px;
  resize: vertical;
}

/* Keep compact spacing */
.input-box {
  margin-bottom: 8px !important;
}

/* Make ALL 2-field rows behave exactly like phone/email */
/* .form-row:not(#returnFields),
.date-time-row:not(#returnFields),
.flight-row:not(#returnFields) {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  width: 100% !important;
} */

/* Each field takes equal width */
.form-row > *,
.date-time-row > *,
.flight-row > * {
  flex: 1 !important;
}

/* Make date, time, terminal, flight match phone/email perfectly */
input[type="date"],
input[type="time"],
#terminal,
#flightNumber,
#returnDate,
#returnTime {
  height: 48px !important;
  padding: 12px 14px !important;
  border-radius: 10px !important;
  border: 1px solid #444 !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 0.95rem !important;
}

/* ===== Responsive bits ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

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

  .logo {
    order: 1;
  }

  .social-icons {
    order: 2;
  }

  .menu-toggle {
    order: 3;
    display: flex;
    align-items: center;
    gap: 8px;
  }


  .nav-links.active {
    display: flex;
  }

  .hero {
    background-position: center center;
    background-size: contain;
    min-height: 70vh;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    padding: 0;
  }

  .hero-image {
    background: url('images/circle_logo.png') no-repeat center center;
    background-size: contain;
    background-color: #000;
    height: 60vh; /* <-- this is the REAL fix */
    width: 100%;
  }

  .hero-right {
    align-items: stretch;
    padding: 18px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .enquiry-box {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }

  .enquiry-form {
    max-width: 100%;
  }

  .split-section,
  .split-section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    left: auto;
    right: 0; /* attach to the RIGHT side*/
    left: auto; /* disable left alignment */
    width: 60%; /* optional: adjust size */
    border-radius: 15px 15px 15px 15px; /* right-side dropdown shape */
    background-color: rgba(0, 0, 0, 0.75);
    padding: 20px 0;
    z-index: 1000; /* keeps menu on top of all content */
  }

    /* .nav-links {
    position: absolute;
     top: 80px;   /* drop down under button */
    /* right: 0; attach to the RIGHT side */
    /* left: auto; disable left alignment */
    /* width: 60%; optional: adjust size */
    /* border-radius: 15px 15px 15px 15px; right-side dropdown shape */
    /* background-color: rgba(0, 0, 0, 0.75); */
  /* }  */

  .nav-links.active {
    display: flex;
  }

  /* ✅ keep dropdowns visible inside nav-links on mobile */
  .nav-links .dropdown-content {
    position: static;
    background: none;
    box-shadow: none;
    display: none;
  }

  .nav-links li.active .dropdown-content {
    display: block;
  }
}



/* FIX: Only show airport extras inside AIRPORT journeys */
#airportExtras {
    display: none !important;
}

.booking-section.airport-active #airportExtras {
    display: flex !important;
}



/* FIX: Home page enquiry textarea must be black */
.enquiry-form textarea,
textarea.premium-field {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
    border-radius: 10px !important;
    padding: 14px !important;
    font-size: 16px !important;
}


textarea:focus {
  outline: none !important;
  border-color: #27ae60 !important;
  box-shadow: 0 0 6px rgba(39,174,96,0.5) !important;
}


/* ALWAYS keep Date + Time on one row */
.date-time-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
}

.date-time-row > .input-box {
  flex: 1 !important;
}

/* ALWAYS keep Phone + Email on one row */
.phone-email-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
}

.phone-email-row > .input-box {
  flex: 1 !important;
}

/* Terminal + Flight number – one row, but only when Airport is active */
#airportExtras.flight-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
}

#airportExtras.flight-row > .input-box {
  flex: 1 !important;
}

/* Hide airportExtras by default */
#airportExtras {
  display: none !important;
}

/* Show it only when JS enables it */
.booking-section.airport-active #airportExtras {
  display: flex !important;
}

