body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

.hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, #fff 100%), 
              url('7fVB8tjHu4gPvyWY.png') center/cover no-repeat;

}

/* Fade effect using gradient */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #fff 100%);
  pointer-events: none;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  text-align: left;
}

.hero h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  text-align: left;
}

.follow-us a {
  margin-right: 10px;
  text-decoration: none;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
}

.cta-btn {
  background-color: #0078d7;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
}

.quote-form {
  background-color: #7E92A0;
  max-width: 800px;
  margin-top: -50px; /* Slight overlap for seamless transition */
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  z-index: 1;
  position: relative;
}

.quote-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0078d7;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="checkbox"],
input[type="date"] {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.submit-btn {
  background-color: #0078d7;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
}

.site-footer {
  background-color: #7E92A0;
  padding: 4rem 8%;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

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

.brands-main-footer {
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  display: flex;
  justify-content: space-between;
  row-gap: 20px;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: row;
  unicode-bidi: isolate;
  caret-color: #000;
  color: #000;
}

@media (max-width: 600px) {
  .brands-main-footer {
    flex-direction: column;
  }
}

.brands-main-footer__item {
  flex-shrink: 1;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #0078d7;
}

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

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

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

.footer-column ul li a:hover {
  color: #0078d7;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #666;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem; /* Adjust as needed */
  position: relative;
}

.right-group {
  display: flex;
  gap: 1rem; /* Space between menu and phone */
  margin-left: auto;
}

.site-header.transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 1rem 0;
  z-index: 1000;
}

.site-header.transparent .logo,
.site-header.transparent .phone-number,
.site-header.transparent .burger-menu span {
  color: rgb(228, 226, 226);
}

.header-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 2rem;
  max-width: 100%;
}

.logo {
  font-family: 'Great Vibes', cursive; /* Apply the Great Vibes font */
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
  justify-self: start;
}

.trustpilot {
  justify-self: center;
}

.trustpilot img {
  height: 20px;
}

.phone-number a {
    font-size: 1rem;
    text-decoration: none;
    color: white;
    justify-self: end;
}

/* Burger Icon */
.burger-menu {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to X */
.burger-menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.open span:nth-child(2) {
  opacity: 0;
}

.burger-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.mobile-nav.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

/* Transparent Compact Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85); /* semi-transparent white */
  backdrop-filter: blur(10px);
  z-index: 999;
  padding-top: 6rem;
  text-align: center;
  animation: fadeIn 0.3s ease forwards;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}

.mobile-nav li {
  margin-bottom: 2rem;
}

.mobile-nav a {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

/* Slide-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Close Button */
.close-btn {
  font-size: 2rem;
  color: white;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  z-index: 1000;
}

.how-it-works-link {
  text-align: center;
  margin: 3rem 0;
}

.how-it-works-link a {
  font-size: 1.2rem;
  color: #0078d7;
  text-decoration: none;
  cursor: pointer;
}

/* Show burger on desktop too */
@media (min-width: 769px) {
  .burger-menu {
    display: flex;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease-in-out;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #0078d7;
  text-align: center;
}

.modal-content ol {
  padding-left: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

.info-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
  padding: 4rem 5%;
  background-color: #fff;
}

.block {
  flex: 1 1 45%;
  max-width: 500px;
  padding: 2rem;
  text-align: center;
}

.block h3 {
  color: #0078d7;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.block p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.why-xclusive {
  background-color: #f3f4f6; /* Soft neutral tone similar to Above9 */
  padding: 5rem 8%;
  font-family: 'Segoe UI', sans-serif;
}

.why-xclusive .content {
  max-width: 1200px;
  margin: 0 auto;
}

.content p {
  margin-bottom: 50px;
}

.why-xclusive h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.why-xclusive ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.why-xclusive li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.why-xclusive li strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0078d7;
}

.reviews {
  font-family: 'Segoe UI', sans-serif;
  background-color: #71717a;
  padding-bottom: 20px;
}

.reviews-content {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap:10px;
}

.review-box-link {
  margin: auto;
  text-decoration: none;
  color: inherit;
}

.review-box {
  background-color: #e5e7eb;
  margin: auto;
  padding: 30px;
  border-radius: 22px;
  height: 200px;
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
}

@media (max-width: 600px) {
  .reviews-content {
    flex-direction: column;
  }
}

.review-box-link:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* More pronounced shadow */
  transform: translateY(-5px); /* Move element up by 5px */
  border-radius: 22px;
}

.review-box h3 {
  margin-top: 0;
}

.reviews h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.review-box p {
  margin: 0;
  padding: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Number of lines to show */
  -webkit-box-orient: vertical;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .phone-number,
  .trustpilot {
    display: none;
  }

  .header-container {
    grid-template-columns: 1fr auto;
  }

  .logo {
    left: 1.5rem;
  } 

}

textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-row-radio {
  display: flex;
  flex-direction: row;
}

#radio-button-return {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 20px;
  height: 20px;
}

#radio-button-one-way {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 20px;
  height: 20px;
}

.return {
  display: flex;
  justify-content: left;
  text-align: center;
  margin-bottom: 20px;
  align-items: center;
  margin-right: 20px;
}

.return input {
  margin: 0;
  padding: 0;
}

.return-label {
  margin-left: 10px;
}

.form-row-dates {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row-dates input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-row-dates select {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Traveler Selector Styles */
.traveler-selector {
  position: relative;
  font-family: Arial, sans-serif;
  width: 220px;
}

.dropdown-toggle {
  width: 100%;
  padding: 10px;
  padding: 0.6rem;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 10;
}

.traveler-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
}

.traveler-row span {
  flex: 1;
}

.traveler-row .minus,
.traveler-row .plus {
  width: 30px;
  height: 30px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 18px;
}

.traveler-row .count {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
}