* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #262626;
  line-height: 1.6;
}

body.homepage {
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
}

/* header*/
.top-header {
  background: #003580;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-header-content > div:first-child {
  display: flex;
  gap: 20px;
  align-items: center;
}

.currency-selector,
.language-selector {
  display: inline-flex;
}

.currency-selector,
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-selector select,
.language-selector select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.currency-selector select:focus,
.language-selector select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.currency-selector select option,
.language-selector select option {
  background: #003580;
  color: white;
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-link:hover {
  opacity: 0.8;
}

.btn-top-register,
.btn-top-signin {
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-top-register {
  background: white;
  color: #003580;
}

.btn-top-register:hover {
  background: #f0f0f0;
}

.btn-top-signin {
  border: 1px solid white;
  color: white;
}

.btn-top-signin:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* main navigation */
.main-nav {
  background: #003580;
  padding: 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: white;
  padding: 6px;
  border-radius: 8px;
}

.nav-tabs {
  display: flex;
  gap: 4px;
}

.nav-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 24px 24px 0 0;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-tab.active {
  background: white;
  color: #003580;
}

.nav-tab i {
  font-size: 18px;
}

/* search */
.hero-search {
  background: linear-gradient(180deg, #003580 0%, #00224d 100%);
  padding: 60px 0 100px;
  color: white;
}

.hero-content-wrapper {
  max-width: 1100px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Search Container */
.search-container {
  background: #ffb700;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.search-tab {
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 20px;
  color: #003580;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-tab:hover {
  background: rgba(255, 255, 255, 0.2);
}

.search-tab.active {
  background: white;
  border-color: white;
}

.search-form {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr auto;
  gap: 4px;
  background: white;
  padding: 4px;
  border-radius: 4px;
}

.search-field {
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.search-field:hover {
  background: #f5f5f5;
}

.search-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #262626;
  margin-bottom: 4px;
}

.search-field input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #262626;
  background: transparent;
}

.search-field input::placeholder {
  color: #6b6b6b;
}

.search-btn {
  background: #0071c2;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.search-btn:hover {
  background: #00609e;
}

.quick-filters {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.checkbox-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-filter input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* offer section */
.offers-section {
  padding: 30px 0;
  background: white;
}

.section-header {
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 2px;
}

.section-header p {
  font-size: 16px;
  color: #6b6b6b;
  text-align: left;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.offer-card {
  position: relative;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  padding: 24px;
  transition: all 0.3s;
}

.offer-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #008009;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.offer-content {
  flex: 1;
  padding-right: 24px;
}

.offer-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #262626;
}

.offer-content p {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 20px;
}

.btn-offer {
  display: inline-block;
  padding: 12px 24px;
  background: #0071c2;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-offer:hover {
  background: #00609e;
}

.offer-image {
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tredding destination */
.trending-section {
  padding: 60px 0;
  background: white;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
}

.section-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 32px;
  text-align: left;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.destination-large,
.destination-medium {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.destination-large {
  grid-row: span 2;
}

.destination-large:first-child {
  grid-column: 1;
}

.destination-large:nth-child(2) {
  grid-column: 2;
}

.destination-medium {
  grid-row: span 1;
}

.destination-large img,
.destination-medium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.destination-large:hover img,
.destination-medium:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.destination-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.destination-overlay img {
  width: 30px;
  height: 20px;
  border-radius: 2px;
}

/* PROPERTIES SECTION */
.properties-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.properties-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.property-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.property-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.property-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn i {
  font-size: 18px;
  color: #262626;
}

.genius-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #003580;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-info {
  padding: 16px;
}

.property-badge {
  display: inline-block;
  padding: 4px 8px;
  background: #ebf3ff;
  color: #0071c2;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.property-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #262626;
}

.property-location {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 12px;
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.rating-badge {
  background: #003580;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.rating-text {
  font-weight: 700;
  color: #262626;
}

.rating-count {
  color: #6b6b6b;
}

/* TRIP PLANNER SECTION
 */
.trip-planner-section {
  padding: 60px 0;
  background: white;
}

.trip-categories {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.trip-category {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e7e7e7;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #262626;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.trip-category:hover {
  border-color: #0071c2;
  color: #0071c2;
}

.trip-category.active {
  background: #0071c2;
  border-color: #0071c2;
  color: white;
}

.trip-destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trip-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.trip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.trip-info {
  padding: 16px;
  background: white;
  border: 1px solid #e7e7e7;
  border-top: none;
}

.trip-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #262626;
}

.trip-info p {
  font-size: 14px;
  color: #6b6b6b;
}

/* TEAM SECTION
 */
.team-section {
  padding: 40px 0;
  background: #f7f9fc;
}

.team-section .section-header {
  text-align: center;
  margin-bottom: 24px;
}

.team-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.team-section .section-header p {
  font-size: 1rem;
  color: #718096;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 53, 128, 0.12);
}

.team-image {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
}

.team-social a {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0071c2;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.team-social a:hover {
  background: #0071c2;
  color: white;
}

.team-info {
  padding: 20px 16px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.85rem;
  color: #0071c2;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-bio {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.5;
}

/* MAIN FOOTER
 */
.main-footer {
  background: #f5f5f5;
  padding: 48px 0 24px;
  margin-top: 60px;
  border-top: 1px solid #e7e7e7;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #262626;
}

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

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #0071c2;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #00609e;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #e7e7e7;
  color: #6b6b6b;
  font-size: 14px;
}

/* RESPONSIVE DESIGN (Homepage)
 */
@media (max-width: 1024px) {
  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .properties-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trip-destinations {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .search-form {
    grid-template-columns: 1fr;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .trending-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .destination-large,
  .destination-medium {
    grid-row: span 1;
    height: 280px;
  }
  
  .properties-carousel,
  .trip-destinations {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .nav-tabs {
    overflow-x: auto;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .team-section .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-image {
    height: 220px;
  }
}

/* NAVBAR (Old styles for other pages)
 */
.navbar {
  background: #9ecae1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.nav-container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* Logo */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 18px;
  margin: 10px 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-links a.active,
.nav-links a:hover {
  background: #3182bd;
  color: #fff;
}

/* Auth buttons */
.auth-buttons .btn {
  margin-left: 10px;
  padding: 6px 16px;
  background: #3182bd;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
}

.auth-buttons .btn:hover {
  background: #e06c00;
}

/* HERO SECTION
 */
.hero {
  position: relative;
  height: 85vh;
  margin-top: 100px; /* space for navbar */
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  color: white;
  z-index: 5;
}

.hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  margin: 15px 0 25px;
}

.hero-content .btn {
  padding: 12px 28px;
  background: #ff7b00;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.hero-content .btn:hover {
  background: #e06c00;
}

/* POPULAR DESTINATIONS
 */
.featured {
  padding: 60px 0;
}

.destinations-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.destination-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card h3 {
  padding: 10px 15px;
  font-size: 1.1rem;
}

.destination-card p {
  padding: 0 15px 15px;
  color: #666;
}

/* PACKAGES
 */
.packages {
  padding: 60px 0;
}

.packages-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

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

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff2d2d;
  color: white;
  padding: 5px 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
}

.package-card h3,
.package-card p,
.package-card .price {
  padding: 10px 15px;
}

.price small {
  color: #888;
  text-decoration: line-through;
}

/* TEAM SECTION
 */
.team {
  padding: 60px 0;
}

.team-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding-bottom: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.team-card h3 {
  margin-top: 10px;
}

.team-card p.bio {
  color: #666;
  padding: 0 15px;
}

/* FOOTER
 */
footer {
  background: white;
  padding: 30px 20px;
  text-align: center;
  color: #333;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

/* AUTHENTICATION PAGES
 */
.auth-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #f5f7fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: white;
}

/* Left Side - Visual/Branding */
.auth-visual {
  position: relative;
  background: linear-gradient(135deg, #003580 0%, #0057b8 50%, #0071c2 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.auth-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.signup-visual {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
}

.auth-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.auth-content {
  position: relative;
  z-index: 2;
  color: white;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
  text-decoration: none;
  color: white;
  transition: opacity 0.3s;
}

.auth-logo:hover {
  opacity: 0.8;
}

.auth-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: white;
  padding: 8px;
  border-radius: 12px;
}

.auth-logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.auth-tagline {
  margin-bottom: 50px;
}

.auth-tagline h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.auth-tagline p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.feature-tag i {
  font-size: 1.5rem;
  color: #4ade80;
}

.auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #4ade80;
}

.stat-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Right Side - Form Container */
.auth-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #ffffff;
}

.auth-form-wrapper {
  width: 100%;
  max-width: 480px;
  animation: fadeIn 0.8s ease-out 0.3s backwards;
}

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

.auth-header {
  text-align: center;
  margin-bottom: 35px;
}

.auth-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.auth-header p {
  font-size: 1rem;
  color: #666;
}

/* Social Login Buttons */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
}

.social-btn:hover {
  background: #f9f9f9;
  border-color: #ccc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn i {
  font-size: 1.3rem;
}

.social-btn.google i {
  color: #DB4437;
}

.social-btn.facebook i {
  color: #4267B2;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  color: #999;
  font-size: 0.9rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.divider span {
  padding: 0 15px;
}

/* Form Styles */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: #003580;
  font-size: 1rem;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s;
  background: white;
  color: #333;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #003580;
  box-shadow: 0 0 0 3px rgba(0, 53, 128, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

/* Password Input with Toggle */
.password-input {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input input {
  flex: 1;
  padding-right: 50px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.toggle-password:hover {
  color: #003580;
}

.toggle-password i {
  font-size: 1.1rem;
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 8px;
}

.password-strength p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

.strength-bars {
  display: flex;
  gap: 6px;
  height: 4px;
}

.strength-bar {
  flex: 1;
  background: #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s;
}

.strength-bar.active {
  background: #4ade80;
}

.strength-bar.active.medium {
  background: #fbbf24;
}

.strength-bar.active.weak {
  background: #ef4444;
}

.strength-requirements {
  margin-top: 12px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 3px solid #003580;
}

.strength-requirements p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.strength-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.strength-requirements li {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.strength-requirements li i {
  font-size: 0.8rem;
  color: #ccc;
}

.strength-requirements li.valid i {
  color: #4ade80;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-top: -5px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.forgot-password {
  color: #003580;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.forgot-password:hover {
  color: #0057b8;
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  padding: 16px;
  background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 53, 128, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Terms and Auth Switch */
.auth-terms {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 20px;
  line-height: 1.6;
}

.auth-terms a {
  color: #003580;
  text-decoration: none;
  font-weight: 600;
}

.auth-terms a:hover {
  text-decoration: underline;
}

.auth-switch {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
  font-size: 0.95rem;
  color: #666;
}

.auth-switch a {
  color: #003580;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.auth-switch a:hover {
  color: #0057b8;
  text-decoration: underline;
}

/* Alert Messages */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  animation: slideDown 0.3s ease-out;
}

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

.alert i {
  font-size: 1.2rem;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.alert-info {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

/* Loading State */
.loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .auth-form-container {
    padding: 30px 20px;
  }

  .auth-form-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .auth-header h2 {
    font-size: 1.6rem;
  }

  .social-btn {
    font-size: 0.9rem;
    padding: 12px 16px;
  }

  .form-group input,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 14px;
    font-size: 1rem;
  }
}

/* (Flights, Taxis, Tours, Parks)
 */

/* Page Hero Sections */
.page-hero {
  padding: 80px 20px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero h1 i {
  margin-right: 12px;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* FLIGHTS PAGE STYLES (Updated Design)
 */

/* Flights Hero Section */
.flights-hero {
  background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
  padding: 60px 20px 80px;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.flights-hero-content {
  max-width: 900px;
}

.flights-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Trip Type Selector */
.trip-type-selector {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.trip-type-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-size: 0.95rem;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  font-weight: 500;
}

.trip-type-btn:hover {
  color: #003580;
}

.trip-type-btn.active {
  color: #003580;
  border-bottom-color: #003580;
  font-weight: 600;
}

/* Compact Flight Search Form */
.flight-search-compact {
  background: white;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.search-fields-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-field-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-right: 1px solid #e0e0e0;
  min-height: 60px;
  justify-content: center;
}

.search-field-compact:last-of-type {
  border-right: none;
}

.search-field-compact label {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 4px;
  font-weight: 500;
}

.search-field-compact input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
  background: transparent;
}

.search-field-compact input::placeholder {
  color: #999;
}

.from-field {
  flex: 1.2;
}

.to-field {
  flex: 1.2;
}

.dates-field {
  flex: 1.5;
}

.travelers-field {
  flex: 1.3;
}

.swap-btn {
  background: white;
  border: 1px solid #e0e0e0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.swap-btn:hover {
  background: #f5f5f5;
  border-color: #003580;
  color: #003580;
}

.search-btn-compact {
  background: #0071c2;
  color: white;
  border: none;
  padding: 0 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  height: 50px;
}

.search-btn-compact:hover {
  background: #005fa3;
}

/* Famous Airports Section */
.famous-airports-section {
  padding: 60px 20px;
  background: white;
}

.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.airport-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  overflow: hidden;
}

.airport-card:hover {
  border-color: #0071c2;
  box-shadow: 0 4px 16px rgba(0, 113, 194, 0.15);
  transform: translateY(-2px);
}

.airport-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.airport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.airport-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0071c2 0%, #005fa3 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.airport-icon i {
  font-size: 1.8rem;
  color: white;
}

.airport-info {
  flex: 1;
}

.airport-info h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.airport-location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.airport-stat {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.airport-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.airport-tags .tag {
  background: #e8f4ff;
  color: #0071c2;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Cheaper Routes Section */
.cheaper-routes-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.routes-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.route-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
  position: relative;
}

.route-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #0071c2;
}

.route-card.featured {
  border-color: #0071c2;
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.route-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #0071c2 0%, #005fa3 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 113, 194, 0.3);
}

.route-badge.alternative {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.route-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.route-cities {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.route-cities .city {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.05rem;
}

.route-cities i {
  color: #0071c2;
  font-size: 0.9rem;
}

.route-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.route-price .from-text {
  font-size: 0.85rem;
  color: #666;
}

.route-price .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0071c2;
}

.route-price .savings {
  background: #d4edda;
  color: #155724;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.route-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.detail-item i {
  color: #0071c2;
  width: 16px;
}

.btn-view-flights {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #0071c2 0%, #005fa3 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-view-flights:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 113, 194, 0.4);
}

.btn-view-flights.alternative-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* Saving Tips */
.saving-tips {
  background: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.saving-tips h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.saving-tips h3 i {
  color: #ffc107;
  font-size: 1.6rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.tip-card {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #0071c2;
  transition: all 0.3s;
}

.tip-card:hover {
  background: #e8f4ff;
  transform: translateX(5px);
}

.tip-card i {
  font-size: 2rem;
  color: #0071c2;
  margin-bottom: 12px;
  display: block;
}

.tip-card h4 {
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.tip-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Airport Guidelines Section */
.airport-guidelines-section {
  padding: 60px 20px;
  background: white;
}

.guidelines-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.guideline-category {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s;
}

.guideline-category:hover {
  border-color: #0071c2;
  box-shadow: 0 4px 16px rgba(0, 113, 194, 0.12);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0071c2 0%, #005fa3 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-icon i {
  font-size: 1.8rem;
  color: white;
}

.guideline-category h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guidelines-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.guidelines-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.guidelines-list li > i {
  color: #28a745;
  margin-top: 3px;
  flex-shrink: 0;
}

.guidelines-list li div {
  flex: 1;
}

.guidelines-list strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.guidelines-list p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Quick Reference Card */
.quick-reference-card {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4ff 100%);
  border-radius: 12px;
  padding: 35px;
  border: 2px solid #0071c2;
}

.quick-reference-card h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-reference-card h3 i {
  color: #0071c2;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.reference-item {
  background: white;
  padding: 18px;
  border-radius: 10px;
  border-left: 4px solid #0071c2;
}

.reference-item strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.reference-item p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: white;
}

.footer-section p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #0071c2;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #0071c2;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* Search Section */
.search-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.search-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.elevated-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  background: #f5f5f5;
  color: #003580;
}

.tab-btn.active {
  background: #003580;
  color: white;
}

.tab-btn i {
  font-size: 1.1rem;
}

/* Flight Search Form */
.flight-search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: #003580;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #003580;
  box-shadow: 0 0 0 3px rgba(0, 53, 128, 0.1);
}

.search-btn-large {
  grid-column: 1 / -1;
  padding: 16px;
  background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}

.search-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 53, 128, 0.4);
}

.search-btn-large i {
  margin-right: 8px;
}

/* Flight Results */
.results-section {
  padding: 40px 20px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.results-header h2 {
  margin: 0;
  font-size: 1.8rem;
  text-align: left;
}

.sort-options {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sort-options label {
  font-weight: 500;
  color: #666;
}

.sort-options select {
  padding: 8px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}

.flights-grid {
  display: grid;
  gap: 20px;
}

.flight-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.flight-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #003580;
  transform: translateY(-2px);
}

.flight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.airline-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.airline-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 8px;
}

.airline-details h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #333;
}

.airline-details p {
  color: #666;
  font-size: 0.9rem;
}

.flight-price {
  text-align: right;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #003580;
  margin-bottom: 4px;
}

.price-label {
  color: #666;
  font-size: 0.85rem;
}

.flight-details {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.flight-time {
  text-align: center;
}

.time-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.location-code {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.flight-duration {
  text-align: center;
  position: relative;
}

.duration-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.duration-line::before,
.duration-line::after {
  content: '';
  height: 2px;
  background: #ddd;
  flex: 1;
}

.duration-text {
  color: #666;
  font-size: 0.9rem;
  white-space: nowrap;
}

.stops-info {
  color: #28a745;
  font-size: 0.85rem;
  font-weight: 500;
}

.stops-info.one-stop {
  color: #ffc107;
}

.stops-info.two-stops {
  color: #dc3545;
}

.flight-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
}

.feature-badge i {
  color: #003580;
}

.flight-actions {
  display: flex;
  gap: 12px;
}

.btn-details {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: 2px solid #003580;
  color: #003580;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-details:hover {
  background: #003580;
  color: white;
}

.btn-book {
  flex: 2;
  padding: 12px;
  background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 53, 128, 0.3);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.4);
}

/* TOURS PAGE STYLES
 */

.filter-bar {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-item {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.filter-item label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-item select {
  padding: 10px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-item select:focus {
  outline: none;
  border-color: #003580;
}

.btn-clear-filters {
  padding: 10px 20px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: auto;
}

.btn-clear-filters:hover {
  background: #e9ecef;
}

/* Tours Grid */
.tours-section {
  padding: 40px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #333;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.tour-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.tour-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  border-color: #f5576c;
}

.tour-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tour-badge.popular {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.tour-badge.new {
  background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wishlist-btn:hover {
  background: #f5576c;
  color: white;
  transform: scale(1.1);
}

.wishlist-btn i {
  font-size: 1.1rem;
}

.tour-content {
  padding: 24px;
}

.tour-header {
  margin-bottom: 16px;
}

.tour-header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.tour-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.9rem;
}

.meta-item i {
  color: #f5576c;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rating-score {
  background: #003580;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
}

.rating-text {
  font-weight: 600;
  color: #333;
}

.rating-count {
  color: #666;
  font-size: 0.9rem;
}

.tour-highlights {
  margin-bottom: 20px;
}

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

.tour-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.tour-highlights li i {
  color: #28a745;
  font-size: 0.85rem;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5576c;
}

.price-amount small {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}

.btn-book-tour {
  padding: 12px 28px;
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

.btn-book-tour:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
}

/* PARKS & ATTRACTIONS PAGE STYLES
 */

.parks-section {
  padding: 40px 20px;
}

.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
}

.park-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.park-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  border-color: #38ef7d;
}

.park-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.park-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.park-card:hover .park-image img {
  transform: scale(1.1);
}

.park-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.park-badge.unesco {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.park-content {
  padding: 26px;
}

.park-header {
  margin-bottom: 16px;
}

.park-header h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.park-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.park-country {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-weight: 500;
  font-size: 0.95rem;
}

.park-country img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.park-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 16px 0;
}

.park-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f0fff4;
  border: 1px solid #38ef7d;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #11998e;
  font-weight: 500;
}

.feature-tag i {
  font-size: 0.9rem;
}

.park-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item label {
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
}

.info-item .value {
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
}

.park-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.park-price {
  display: flex;
  flex-direction: column;
}

.park-price .from-label {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.park-price .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #11998e;
}

.park-price .price small {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}

.btn-book-park {
  padding: 12px 28px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(17, 153, 142, 0.3);
}

.btn-book-park:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 153, 142, 0.4);
}

/* RESPONSIVE DESIGN FOR SERVICE PAGES
 */

@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .tours-grid,
  .parks-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .flight-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .flight-duration {
    order: -1;
  }
}

@media (max-width: 768px) {
  /* Flights Hero */
  .flights-hero h1 {
    font-size: 2rem;
  }

  .search-fields-row {
    flex-direction: column;
    gap: 0;
  }

  .search-field-compact {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .search-field-compact:last-of-type {
    border-bottom: none;
  }

  .swap-btn {
    order: 2;
    margin: 10px auto;
  }

  .from-field {
    order: 1;
  }

  .to-field {
    order: 3;
  }

  .dates-field {
    order: 4;
  }

  .travelers-field {
    order: 5;
  }

  .search-btn-compact {
    order: 6;
    width: 100%;
    margin-top: 10px;
  }

  .airports-grid,
  .routes-comparison,
  .tips-grid,
  .guidelines-container,
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .search-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    justify-content: center;
  }

  .flight-search-form {
    grid-template-columns: 1fr;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .flight-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .flight-actions {
    flex-direction: column;
  }

  .ride-type-selector {
    grid-template-columns: 1fr;
  }

  .vehicle-card {
    flex-direction: column;
    text-align: center;
  }

  .vehicle-features {
    justify-content: center;
  }

  .vehicle-price {
    text-align: center;
  }

  .filter-controls {
    flex-direction: column;
  }

  .filter-item {
    width: 100%;
  }

  .tours-grid,
  .parks-grid {
    grid-template-columns: 1fr;
  }

  .tour-footer,
  .park-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .btn-book-tour,
  .btn-book-park {
    width: 100%;
  }
}

/* DASHBOARD BOOKINGS STYLES
 */

/* Booking Category Section */
.booking-category-section {
  margin-bottom: 40px;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  color: #003580;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e7e7e7;
}

.category-title i {
  font-size: 1.3rem;
}

/* Bookings Grid */
.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

/* Booking Card */
.booking-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e7e7e7;
}

.booking-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.booking-card.past-booking {
  opacity: 0.7;
  background: #f9f9f9;
}

/* Booking Card Header */
.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
}

.booking-type-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.booking-type-icon.flight {
  background: linear-gradient(135deg, #0066cc 0%, #003580 100%);
}

.booking-type-icon.tour {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.booking-type-icon.park {
  background: linear-gradient(135deg, #6f42c1 0%, #9561e2 100%);
}

.booking-type-icon.hotel {
  background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
}

/* Booking Badges */
.booking-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.status-badge i {
  font-size: 0.85rem;
}

.status-badge.paid {
  background: #d4edda;
  color: #155724;
}

.status-badge.pending {
  background: #fff3cd;
  color: #856404;
}

.status-badge.failed {
  background: #f8d7da;
  color: #721c24;
}

.status-badge.refunded {
  background: #d1ecf1;
  color: #0c5460;
}

.status-badge.confirmed {
  background: #d4edda;
  color: #155724;
}

.status-badge.cancelled {
  background: #f8d7da;
  color: #721c24;
}

/* Booking Card Body */
.booking-card-body {
  padding: 20px;
}

.booking-card-body h4 {
  font-size: 1.25rem;
  color: #262626;
  margin-bottom: 8px;
  font-weight: 600;
}

.booking-location {
  color: #717171;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.route-airport {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003580;
}

.booking-route i {
  color: #717171;
  font-size: 0.9rem;
}

/* Booking Details */
.booking-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid #e7e7e7;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #262626;
}

.detail-item i {
  color: #717171;
  font-size: 0.85rem;
  width: 16px;
}

/* Booking Price */
.booking-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 16px;
}

.price-label {
  font-size: 0.9rem;
  color: #717171;
  font-weight: 500;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003580;
}

/* Booking Card Footer */
.booking-card-footer {
  padding: 16px;
  background: #f8f9fa;
  border-top: 1px solid #e7e7e7;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-card-footer button {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-view-details {
  background: #003580;
  color: white;
}

.btn-view-details:hover {
  background: #00244d;
  transform: translateY(-1px);
}

.btn-pay-now {
  background: #28a745;
  color: white;
}

.btn-pay-now:hover {
  background: #218838;
  transform: translateY(-1px);
}

.btn-cancel {
  background: #dc3545;
  color: white;
}

.btn-cancel:hover {
  background: #c82333;
  transform: translateY(-1px);
}

/* Booking Filters */
.booking-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 2px solid #e7e7e7;
  background: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #717171;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: #003580;
  color: #003580;
}

.filter-btn.active {
  background: #003580;
  color: white;
  border-color: #003580;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.empty-state i {
  display: block;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: #262626;
  margin-bottom: 10px;
}

.empty-state p {
  color: #717171;
  margin-bottom: 24px;
}

.empty-state .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #003580;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.empty-state .btn-primary:hover {
  background: #00244d;
  transform: translateY(-2px);
}

/* Loading Spinner */
.loading-spinner {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
}

.loading-spinner i {
  font-size: 3rem;
  color: #003580;
  margin-bottom: 16px;
}

.loading-spinner p {
  color: #717171;
  font-size: 1rem;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  padding: 16px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification i {
  font-size: 1.5rem;
}

.notification.success {
  border-left: 4px solid #28a745;
}

.notification.success i {
  color: #28a745;
}

.notification.error {
  border-left: 4px solid #dc3545;
}

.notification.error i {
  color: #dc3545;
}

.notification.info {
  border-left: 4px solid #17a2b8;
}

.notification.info i {
  color: #17a2b8;
}

/* Section Header for Dashboard */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 1.75rem;
}

/* Responsive Design for Booking Cards */
@media (max-width: 768px) {
  .bookings-grid {
    grid-template-columns: 1fr;
  }

  .booking-details {
    grid-template-columns: 1fr;
  }

  .booking-card-footer {
    flex-direction: column;
  }

  .booking-card-footer button {
    width: 100%;
  }

  .booking-filters {
    width: 100%;
  }

  .filter-btn {
    flex: 1;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
