/* Import Inter font for better typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: #f8fafc;
  color: #1f2937;
  line-height: 1.6;
}

/* Header with logo */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #05488B;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 300px;
  height: 120px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #374151;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #05488B;
  background-color: rgba(5, 72, 139, 0.1);
  transform: translateY(-2px);
}

/* Hero section - adapted from CheapTickets design */
.ct-hero {
  background: #05488B;
  padding: 54px 0 64px 0;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  text-align: left;
}

.ct-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ct-hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 36px;
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.ct-hero-title span {
  color: #FFC62B;
  font-weight: 800;
  letter-spacing: 0;
}

/* Hero tabs styling */
.ct-hero-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  max-width: 400px;
}

.ct-hero-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', Arial, sans-serif;
}

.ct-hero-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ct-hero-tab.active {
  background: #fff;
  color: #05488B;
  font-weight: 600;
}

.ct-hero-tab svg {
  width: 18px;
  height: 18px;
}

.ct-hero-form {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-hero-radio-row {
  display: flex;
  gap: 18px;
  font-size: 18px;
  margin-bottom: 5px;
  align-items: center;
}

.ct-hero-radio-row label {
  cursor: pointer;
  font-weight: 500;
}

.ct-hero-radio-row input[type="radio"] {
  accent-color: #FFC62B;
  margin-right: 7px;
}

.ct-hero-form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
}

.ct-hero-location-row {
  gap: 0;
}

.ct-input {
  flex: 1;
  font-size: 19px;
  border-radius: 28px;
  border: none;
  outline: none;
  padding: 18px 28px;
  margin: 0;
  color: #222;
  background: #fff;
  font-weight: 500;
  transition: box-shadow 0.15s;
}

.ct-input:focus {
  box-shadow: 0 0 0 2px #FFC62B66;
}

.ct-hero-location-row .ct-input:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ct-hero-location-row .ct-input:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ct-swap-btn {
  background: #fff;
  border: none;
  border-radius: 0;
  outline: none;
  width: 48px;
  min-width: 48px;
  height: 54px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  top: 0;
  z-index: 1;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

.ct-hero-form-row .ct-input {
  min-width: 0;
}

.ct-hero-form-row .ct-input:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ct-hero-form-row .ct-input:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 1px solid #f0f0f0;
}

.ct-search-btn {
  margin-left: 14px;
  background: #FFC62B;
  border: none;
  border-radius: 18px;
  width: 64px;
  min-width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow .18s;
}

.ct-search-btn:hover {
  box-shadow: 0 4px 18px 0 #FFC62B55;
  background: #ffd761;
}

/* Features section */
.features-section {
  background: #f8fafc;
  padding: 3rem 0;
  border-top: 1px solid #e5e7eb;
}

.feature-cards {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 18px 0;
}

.feature-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ededed;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 24px 24px 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 260px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-weight: 700;
  font-size: 1.16rem;
  margin-bottom: 5px;
  color: #232323;
  line-height: 1.3;
}

.feature-desc {
  color: #484848;
  font-size: 1rem;
  line-height: 1.4;
}

/* Main content area */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Flight search results styling - keeping existing functionality */
#searchResults {
  margin-top: 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#flightResultsContainer .border {
  border: 1px solid #e5e7eb;
}

#flightResultsContainer .rounded-lg {
  border-radius: 12px;
}

#flightResultsContainer .shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#flightResultsContainer .hover\:shadow-lg:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Autocomplete results styling */
#autocompleteResults {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
}

/* Utility classes for existing JavaScript functionality */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-red-600 {
  color: #dc2626;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-500 {
  color: #6b7280;
}

.text-blue-600 {
  color: #2563eb;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.hover\:bg-blue-600:hover {
  background-color: #2563eb;
}

.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}

.text-white {
  color: #fff;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.transition-colors {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.transition-shadow {
  transition: box-shadow 0.15s ease-in-out;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.cursor-pointer {
  cursor: pointer;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.flex-1 {
  flex: 1;
}

/* Loading spinner animation */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.inline-block {
  display: inline-block;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.border-4 {
  border-width: 4px;
}

.border-blue-500 {
  border-color: #3b82f6;
}

.border-t-transparent {
  border-top-color: transparent;
}

.rounded-full {
  border-radius: 9999px;
}

/* Responsive design */
@media (max-width: 900px) {
  .header {
    padding: 1rem 0;
  }

  .header-container {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    width: 250px;
    height: 100px;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
  }

  .ct-hero {
    padding: 2rem 0;
  }

  .ct-hero-container {
    padding: 0 1rem;
  }

  .ct-hero-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .ct-hero-tabs {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .ct-hero-tab {
    font-size: 14px;
    padding: 10px 16px;
  }

  .ct-hero-tab svg {
    width: 16px;
    height: 16px;
  }

  .ct-hero-form {
    padding: 0 10px;
  }

  .ct-hero-form-row, 
  .ct-hero-location-row {
    flex-direction: column;
    gap: 8px;
  }

  .ct-hero-location-row .ct-input,
  .ct-hero-location-row .ct-input:first-child,
  .ct-hero-location-row .ct-input:last-child {
    border-radius: 28px !important;
    border-left: none;
    border-right: none;
  }

  .ct-swap-btn {
    display: none; /* Hide swap button on mobile for simplicity */
  }

  .ct-search-btn {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-left: 0;
    align-self: flex-end;
  }

  .main-content {
    padding: 1rem;
  }

  .nav-menu {
    display: none; /* Simple responsive - hide nav on mobile */
  }

  /* Features section responsive */
  .features-section {
    padding: 2rem 0;
  }

  .feature-cards {
    flex-direction: column;
    gap: 14px;
    margin: 12px 0;
  }

  .feature-card {
    min-width: 0;
    width: 100%;
    padding: 20px 16px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-desc {
    font-size: 0.95rem;
  }

  /* Benefits section responsive */
  .benefits-section {
    padding: 2.5rem 0;
  }

  .benefits-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .benefits-cards {
    flex-direction: column;
    gap: 14px;
    margin: 12px 0;
  }

  .benefits-card {
    min-width: 0;
    width: 100%;
    padding: 20px 16px;
  }

  .benefits-icon {
    width: 48px;
    height: 48px;
  }

  .benefits-title-text {
    font-size: 1.1rem;
  }

  .benefits-desc {
    font-size: 0.95rem;
  }

  /* Footer responsive */
  .travel-footer-top {
    flex-wrap: wrap;
    gap: 18px;
    padding: 24px 18px 10px 18px;
  }

  .footer-col {
    min-width: 155px;
    flex: 1 1 calc(50% - 9px);
  }

  .travel-footer-currency {
    margin: 12px 0 0 18px;
  }

  .travel-footer-bottom {
    padding: 18px 18px 0 18px;
  }

  .footer-logos {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .ct-hero-title {
    font-size: 28px;
  }

  .ct-input {
    font-size: 16px;
    padding: 14px 20px;
  }

  .ct-hero-radio-row {
    font-size: 16px;
    flex-wrap: wrap;
  }

  /* Footer mobile responsive */
  .travel-footer-top {
    flex-direction: column;
    gap: 22px;
    padding: 24px 18px 10px 18px;
  }

  .footer-col {
    min-width: 100%;
    flex: 1;
  }
}

/* Benefits section */
.benefits-section {
  background: #fff;
  padding: 4rem 0;
  border-top: 1px solid #e5e7eb;
}

.benefits-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #05488B;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.benefits-cards {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 18px 0;
}

.benefits-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ededed;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 24px 24px 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 260px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefits-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-icon svg {
  width: 100%;
  height: 100%;
}

.benefits-title-text {
  font-weight: 700;
  font-size: 1.16rem;
  margin-bottom: 5px;
  color: #232323;
  line-height: 1.3;
}

.benefits-desc {
  color: #484848;
  font-size: 1rem;
  line-height: 1.4;
}

/* Additional styles for coming soon page compatibility */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.image-container {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Travel Footer */
.travel-footer {
  background: #fafafb;
  border-top: 1px solid #ebebeb;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  color: #222;
  margin-top: 36px;
  padding: 0 0 16px 0;
}

.travel-footer-top {
  display: flex;
  gap: 40px;
  padding: 38px 0 18px 0;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 0px;
  min-width: 180px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #05488B;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #222;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  text-decoration: underline;
  color: #05488B;
}

.travel-footer-currency {
  display: flex;
  align-items: center;
  margin: 16px 0 0 36px;
  font-size: 1.05rem;
  font-weight: 500;
  gap: 10px;
}

.travel-footer-currency img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #eee;
  margin-right: 8px;
}

.social-links {
  display: none !important; /* Hidden as requested */
}

.travel-footer-bottom {
  margin: 30px 0 0 0;
  padding: 18px 0 0 0;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright {
  color: #757575;
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.footer-logos img {
  vertical-align: middle;
  opacity: 0.8;
}

.footer-tagline {
  color: #05488B;
  font-style: italic;
  font-size: 0.9rem;
}

/* Flight booking section styles */
.booking-section {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-section h2 {
  color: #05488B;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Map container for hotel booking */
#map {
  height: 400px;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Grid layout for rooms/hotels */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Room/hotel card styles */
.bg-white {
  background-color: #fff;
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.w-full {
  width: 100%;
}

.h-48 {
  height: 12rem;
}

.p-6 {
  padding: 1.5rem;
}

/* Button styles */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s;
}

button:hover {
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

/* Form elements styling */
input[type="text"], 
input[type="email"], 
input[type="password"], 
select {
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="password"]:focus, 
select:focus {
  outline: none;
  border-color: #05488B;
  box-shadow: 0 0 0 3px rgba(5, 72, 139, 0.1);
}

/* Cookie Notice */
.cookie-notice {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  padding: 20px 28px 18px 18px;
  font-size: 1.19rem;
  color: #212120;
  width: max-content;
  min-width: 350px;
  gap: 22px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  border: 2px solid #05488B;
  font-family: 'Inter', Arial, sans-serif;
}

.cookie-notice .cookie-link {
  color: #05488B;
  text-decoration: underline;
  transition: color 0.15s;
  font-weight: 500;
}

.cookie-notice .cookie-link:hover {
  color: #034067;
}

.cookie-accept-btn {
  background: #05488B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.06);
  transition: background 0.15s;
  font-family: 'Inter', Arial, sans-serif;
}

.cookie-accept-btn:hover {
  background: #034067;
  box-shadow: 0 4px 12px 0 rgba(5, 72, 139, 0.3);
}

/* Cookie Notice Responsive */
@media (max-width: 600px) {
  .cookie-notice {
    font-size: 1rem;
    padding: 13px 10px 12px 10px;
    min-width: unset;
    width: calc(100% - 40px);
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .cookie-accept-btn {
    width: 100%;
    padding: 10px 0;
    margin-top: 4px;
  }
}
