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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.header {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-login {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-login:hover {
  background: white;
  color: #ff6b35;
}

.btn-cta {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
}

.btn-cta:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.header-tagline {
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.7), rgba(139, 21, 56, 0.7));
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  max-width: 600px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Search Section */
.search-section {
  background: white;
  padding: 2rem 0;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.search-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.tab-btn {
  background: #f8f9fa;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 10px 10px 0 0;
  margin: 0 5px;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
}

.tab-btn i {
  margin-right: 0.5rem;
}

.search-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 1rem 1rem 1rem 45px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  outline: none;
  border-color: #ff6b35;
}

.search-btn {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
  display: block;
  margin: 0 auto;
}

.search-btn:hover {
  transform: translateY(-2px);
}

.search-btn i {
  margin-right: 0.5rem;
}

.hidden {
  display: none;
}

/* Flights Section */
.flights-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.flights-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.flight-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.card-content p {
  color: #666;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.card-btn {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
  width: 100%;
}

.card-btn:hover {
  transform: translateY(-2px);
}

/* Hotels Section */
.hotels-section {
  padding: 4rem 0;
  background: white;
}

.hotels-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.hotel-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

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

.rating {
  margin-bottom: 1rem;
}

.rating i {
  color: #ffc107;
  margin-right: 2px;
}

/* Destinations Section */
.destinations-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.destinations-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.destination-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  transition: transform 0.3s;
}

.destination-card.large {
  grid-column: span 2;
  height: 400px;
}

.destination-card:hover {
  transform: scale(1.02);
}

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

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
}

.destination-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.destination-overlay p {
  margin-bottom: 1rem;
}

.destination-overlay .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
}

/* Auth Section */
.auth-section {
  padding: 4rem 0;
  background: white;
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.auth-tabs {
  display: flex;
}

.auth-tab {
  flex: 1;
  background: #f8f9fa;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.auth-tab.active {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
}

.auth-form {
  padding: 2rem;
}

.auth-form h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-btn {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  font-size: 1rem;
  transition: transform 0.3s;
}

.auth-btn:hover {
  transform: translateY(-2px);
}

.auth-link {
  text-align: center;
  margin-top: 1rem;
  color: #666;
}

.auth-link a {
  color: #ff6b35;
  text-decoration: none;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 2rem;
}

.testimonial.active {
  display: block;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  opacity: 0.8;
}

.testimonial-dots {
  text-align: center;
  margin-top: 2rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
  background-color: white;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: #333;
}

.contact-info p {
  margin-bottom: 2rem;
  color: #666;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item i {
  color: #ff6b35;
  margin-right: 1rem;
  width: 20px;
}

.contact-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-hours h4 {
  margin-bottom: 1rem;
  color: #333;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.contact-btn {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  font-size: 1rem;
  transition: transform 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  margin-right: 0.5rem;
  color: #ff6b35;
}

.footer-section p {
  margin-bottom: 1.5rem;
  color: #ccc;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #ff6b35;
}

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

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

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

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

.social-links {
  display: flex;
  gap: 1rem;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

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

  .nav-menu {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .destination-card.large {
    grid-column: span 1;
    height: 250px;
  }

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

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

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .search-form {
    padding: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

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

.flight-card,
.hotel-card,
.destination-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s;
}

img:not([src]) {
  opacity: 0;
}

/* Additional styles for new pages */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 120px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Search Section for Pages */
.search-section-page {
  background: white;
  padding: 2rem 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

/* Breadcrumb */
.breadcrumb {
  background: #f8f9fa;
  padding: 1rem 0;
  margin-top: 120px;
}

.breadcrumb nav a {
  color: #666;
  text-decoration: none;
  margin-right: 0.5rem;
}

.breadcrumb nav a:hover {
  color: #ff6b35;
}

.breadcrumb nav span {
  color: #333;
  font-weight: 600;
}

/* Autocomplete Styles */
.autocomplete-container {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e9ecef;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.autocomplete-item {
  padding: 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f8f9fa;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
}

.autocomplete-item:hover,
.autocomplete-item.selected {
  background: #f8f9fa;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item .country-flag {
  font-size: 1.2rem;
}

.autocomplete-item .country-info {
  flex: 1;
}

.autocomplete-item .country-name {
  font-weight: 600;
  color: #333;
}

.autocomplete-item .country-code {
  font-size: 0.8rem;
  color: #666;
}

/* Filters Section */
.filters-section {
  padding: 2rem 0;
  background: #f8f9fa;
}

.filters-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

.filters-sidebar {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 140px;
}

.filters-sidebar h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.5rem;
}

.filter-group {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.1rem;
}

.price-range {
  margin-bottom: 1rem;
}

.price-slider {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #e9ecef;
  outline: none;
  -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6b35;
  cursor: pointer;
}

.price-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.checkbox-group label {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
  color: #666;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: #ff6b35;
}

.rating-filter label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* Results Container */
.results-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.results-header h3 {
  color: #333;
  font-size: 1.3rem;
}

.sort-options select {
  padding: 0.5rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

/* Flight Results */
.flight-results {
  padding: 1rem;
}

.flight-result-card {
  display: flex;
  align-items: center;
  padding: 2rem;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  margin-bottom: 1rem;
  transition: all 0.3s;
  background: white;
}

.flight-result-card:hover {
  border-color: #ff6b35;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.flight-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.airline-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}

.airline-info img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.flight-details {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.departure,
.arrival {
  text-align: center;
}

.departure .time,
.arrival .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.departure .airport,
.arrival .airport {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
}

.flight-duration {
  text-align: center;
  flex: 1;
}

.flight-duration .duration {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.flight-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}

.flight-line .line {
  width: 100px;
  height: 2px;
  background: #e9ecef;
  position: relative;
}

.flight-line i {
  position: absolute;
  color: #ff6b35;
  background: white;
  padding: 0 0.5rem;
}

.flight-duration .stops {
  font-size: 0.8rem;
  color: #666;
}

.flight-price {
  text-align: center;
  min-width: 150px;
}

.flight-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 0.25rem;
}

.flight-price .price-type {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
}

.select-flight-btn {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
}

.select-flight-btn:hover {
  transform: translateY(-2px);
}

/* Hotel Results */
.hotels-results-section {
  padding: 2rem 0;
  background: #f8f9fa;
}

.hotel-results {
  padding: 1rem;
}

.hotel-result-card {
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.hotel-result-card:hover {
  transform: translateY(-2px);
}

.hotel-image {
  position: relative;
  width: 300px;
  height: 200px;
}

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

.hotel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ff6b35;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hotel-badge.luxury {
  background: #8b1538;
}

.hotel-badge.budget {
  background: #28a745;
}

.hotel-info {
  flex: 1;
  padding: 1.5rem;
}

.hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.hotel-header h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotel-rating .stars {
  color: #ffc107;
}

.hotel-rating .rating-score {
  background: #1e3a8a;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.hotel-location i {
  color: #ff6b35;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #666;
}

.amenity i {
  color: #28a745;
}

.hotel-description p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hotel-reviews {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-score {
  background: #28a745;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.review-count {
  font-size: 0.8rem;
  color: #666;
}

.hotel-price {
  padding: 1.5rem;
  border-left: 1px solid #e9ecef;
  text-align: center;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-info {
  margin-bottom: 1.5rem;
}

.original-price {
  text-decoration: line-through;
  color: #666;
  font-size: 0.9rem;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  margin: 0.25rem 0;
}

.price-per {
  font-size: 0.8rem;
  color: #666;
}

.total-price {
  font-size: 0.9rem;
  color: #333;
  margin-top: 0.5rem;
}

.select-hotel-btn {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
  width: 100%;
}

.select-hotel-btn:hover {
  transform: translateY(-2px);
}

/* Load More */
.load-more {
  text-align: center;
  padding: 2rem;
}

.load-more-btn {
  background: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.load-more-btn:hover {
  background: #ff6b35;
  color: white;
}

/* Flight Detail Styles */
.flight-detail-section {
  padding: 2rem 0;
  background: #f8f9fa;
  margin-top: 120px;
}

.flight-detail-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
}

.flight-summary {
  margin-bottom: 2rem;
}

.flight-summary h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.flight-summary p {
  color: #666;
  font-size: 1.1rem;
}

.flight-detail-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.flight-header .airline-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flight-header .airline-info img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.flight-header .airline-info h3 {
  margin-bottom: 0.25rem;
  color: #333;
}

.flight-header .airline-info p {
  color: #666;
  font-size: 0.9rem;
}

.class-badge {
  background: #1e3a8a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.flight-timeline {
  margin-bottom: 2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timeline-item .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  min-width: 80px;
}

.timeline-item .location h4 {
  color: #333;
  margin-bottom: 0.25rem;
}

.timeline-item .location p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.timeline-connector .duration {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.flight-path {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

.path-line {
  width: 100px;
  height: 2px;
  background: #ff6b35;
  position: relative;
}

.flight-path i {
  color: #ff6b35;
  margin: 0 0.5rem;
}

.timeline-connector .flight-info {
  color: #666;
  font-size: 0.9rem;
}

.flight-amenities {
  margin-bottom: 2rem;
}

.flight-amenities h4 {
  margin-bottom: 1rem;
  color: #333;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.amenity i {
  color: #28a745;
}

.baggage-info,
.seat-selection {
  margin-bottom: 2rem;
}

.baggage-info h4,
.seat-selection h4 {
  margin-bottom: 1rem;
  color: #333;
}

.baggage-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.baggage-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  transition: border-color 0.3s;
}

.baggage-option:hover {
  border-color: #ff6b35;
}

.baggage-type {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.baggage-type i {
  color: #ff6b35;
  font-size: 1.5rem;
}

.baggage-type h5 {
  margin-bottom: 0.25rem;
  color: #333;
}

.baggage-type p {
  color: #666;
  font-size: 0.9rem;
}

.baggage-price {
  font-weight: 700;
  color: #ff6b35;
  font-size: 1.1rem;
}

.seat-selection p {
  color: #666;
  margin-bottom: 1rem;
}

.seat-btn {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
}

.seat-btn:hover {
  transform: translateY(-2px);
}

.return-flight {
  margin-top: 2rem;
}

.return-flight h3 {
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ff6b35;
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 140px;
  height: fit-content;
}

.booking-summary {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-summary h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.3rem;
}

.trip-summary {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.trip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.trip-route {
  font-weight: 600;
  color: #333;
}

.trip-date {
  font-size: 0.9rem;
  color: #666;
}

.trip-price {
  font-weight: 700;
  color: #ff6b35;
}

.price-breakdown {
  margin-bottom: 2rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #666;
}

.price-item.extras {
  color: #28a745;
}

.price-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  padding-top: 1rem;
  border-top: 2px solid #e9ecef;
  margin-top: 1rem;
}

.passenger-info {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.passenger-info h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

.passenger-info p {
  color: #666;
}

.continue-btn {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.continue-btn:hover {
  transform: translateY(-2px);
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.benefit i {
  color: #28a745;
}

/* Checkout Styles */
.checkout-section {
  padding: 2rem 0;
  background: #f8f9fa;
  margin-top: 120px;
}

.checkout-progress {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress-step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s;
}

.progress-step.active span {
  background: #ff6b35;
  color: white;
}

.progress-step.completed span {
  background: #28a745;
  color: white;
}

.progress-step p {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
}

.checkout-header {
  margin-bottom: 2rem;
}

.checkout-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

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

.checkout-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.checkout-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.3rem;
}

.checkout-card h3 i {
  color: #ff6b35;
}

.passenger-form {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.passenger-form:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.passenger-form h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.1rem;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6b35;
}

.form-group small {
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.8rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-method.active {
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.05);
}

.payment-method input[type="radio"] {
  margin-right: 1rem;
  accent-color: #ff6b35;
}

.payment-method label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

.payment-method i {
  font-size: 1.2rem;
  color: #ff6b35;
}

.card-form {
  margin-top: 2rem;
}

.card-input {
  position: relative;
}

.card-input input {
  padding-right: 120px;
}

.card-icons {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 0.5rem;
}

.card-icons i {
  font-size: 1.5rem;
  color: #666;
}

.terms-section {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.terms-section .checkbox-group {
  margin-bottom: 1rem;
}

.terms-section .checkbox-group:last-child {
  margin-bottom: 0;
}

.terms-section label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  color: #666;
  line-height: 1.5;
}

.terms-section input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: #ff6b35;
}

.terms-section a {
  color: #ff6b35;
  text-decoration: none;
}

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

.pay-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  margin-bottom: 2rem;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pay-btn:hover {
  transform: translateY(-2px);
}

.pay-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

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

.security-item i {
  color: #28a745;
}

.help-section {
  text-align: center;
}

.help-section h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

.help-section p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.help-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.help-contacts a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.help-contacts a:hover {
  background: rgba(255, 107, 53, 0.1);
}

/* Confirmation Styles */
.confirmation-section {
  padding: 2rem 0;
  background: #f8f9fa;
  margin-top: 120px;
}

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

.confirmation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon i {
  font-size: 2.5rem;
  color: white;
}

.confirmation-header h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
}

.confirmation-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.booking-reference {
  background: #e8f5e8;
  color: #28a745;
  padding: 1rem 2rem;
  border-radius: 10px;
  display: inline-block;
  font-size: 1.1rem;
}

.confirmation-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
}

.confirmation-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.confirmation-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.3rem;
}

.confirmation-card h3 i {
  color: #ff6b35;
}

.flight-segment {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.flight-segment:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.segment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.segment-header h4 {
  color: #333;
  font-size: 1.1rem;
}

.flight-number {
  background: #f8f9fa;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.airport-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.departure,
.arrival {
  text-align: center;
}

.departure .time,
.arrival .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.departure .airport,
.arrival .airport {
  font-size: 1rem;
  color: #333;
  margin: 0.25rem 0;
}

.departure .date,
.arrival .date {
  font-size: 0.9rem;
  color: #666;
}

.flight-duration {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.flight-duration i {
  color: #ff6b35;
  font-size: 1.2rem;
}

.flight-duration span {
  font-weight: 600;
  color: #333;
}

.airline-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.airline-info img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.passengers-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.passenger-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.passenger-info h4 {
  color: #333;
  margin-bottom: 0.25rem;
}

.passenger-info p {
  color: #666;
  font-size: 0.9rem;
}

.seat-info {
  font-weight: 600;
  color: #ff6b35;
}

.important-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.info-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: #666;
  line-height: 1.5;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
  font-size: 1rem;
}

.action-btn:hover {
  transform: translateY(-2px);
}

.action-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
}

.action-btn.secondary {
  background: white;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

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

.confirmation-sidebar {
  position: sticky;
  top: 140px;
  height: fit-content;
}

.confirmation-summary {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.confirmation-summary h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.3rem;
}

.payment-details {
  margin-bottom: 2rem;
}

.payment-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #666;
}

.payment-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  padding-top: 1rem;
  border-top: 2px solid #e9ecef;
  margin-top: 1rem;
}

.payment-method {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.next-steps {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.next-steps h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.3rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 30px;
  height: 30px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: #333;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: #666;
  font-size: 0.9rem;
}

.help-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
  margin-bottom: 1rem;
}

.help-contact:hover {
  background: #f8f9fa;
}

.help-contact i {
  color: #ff6b35;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.help-contact h4 {
  margin-bottom: 0.25rem;
  color: #333;
}

.help-contact p {
  color: #666;
  font-size: 0.9rem;
}

/* Profile Styles */
.profile-section {
  padding: 2rem 0;
  background: #f8f9fa;
  margin-top: 120px;
  min-height: calc(100vh - 120px);
}

.profile-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

.profile-sidebar {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 140px;
}

.profile-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff6b35;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.profile-info p {
  color: #666;
  margin-bottom: 0.5rem;
}

.member-since {
  font-size: 0.8rem;
  color: #999;
  background: #f8f9fa;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.profile-nav {
  display: flex;
  flex-direction: column;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #666;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  margin-bottom: 0.5rem;
}

.nav-item:hover {
  background: #f8f9fa;
  color: #ff6b35;
}

.nav-item.active {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
}

.nav-item.logout {
  margin-top: 1rem;
  border-top: 1px solid #e9ecef;
  padding-top: 1.5rem;
}

.nav-item.logout:hover {
  background: #ffe6e6;
  color: #dc3545;
}

.nav-item i {
  width: 20px;
  text-align: center;
}

.profile-main {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.profile-content {
  display: none;
  padding: 2rem;
}

.profile-content.active {
  display: block;
}

.content-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.content-header h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

.reservations-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.reservations-tabs .tab-btn {
  background: #f8f9fa;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #666;
  transition: all 0.3s;
}

.reservations-tabs .tab-btn.active {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
}

.reservations-content {
  position: relative;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.reservation-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid #ff6b35;
}

.reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.reservation-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #333;
}

.reservation-type i {
  color: #ff6b35;
}

.reservation-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.reservation-status.confirmed {
  background: #e8f5e8;
  color: #28a745;
}

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

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

.reservation-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.reservation-route h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.reservation-route p {
  color: #666;
}

.reservation-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
}

.info-item .label {
  color: #666;
}

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

.reservation-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.empty-state i {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.empty-state h3 {
  color: #333;
  margin-bottom: 1rem;
}

.profile-form {
  max-width: 800px;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 2rem;
}

.form-section h3 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
}

.save-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s;
}

.save-btn:hover {
  transform: translateY(-2px);
}

.cancel-btn {
  background: white;
  color: #666;
  border: 2px solid #e9ecef;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.cancel-btn:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.favorite-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

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

.favorite-content {
  padding: 1.5rem;
}

.favorite-content h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.favorite-content p {
  color: #666;
  margin-bottom: 1rem;
}

.favorite-content .rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.favorite-content .rating i {
  color: #ffc107;
}

.favorite-content .rating span {
  margin-left: 0.5rem;
  font-weight: 600;
  color: #333;
}

.favorite-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.favorite-actions .action-btn.secondary {
  padding: 0.5rem;
  min-width: auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.settings-sections {
  max-width: 800px;
}

.settings-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.settings-section:last-child {
  border-bottom: none;
}

.settings-section h3 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.setting-item:last-child {
  margin-bottom: 0;
}

.setting-info h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.setting-info p {
  color: #666;
  font-size: 0.9rem;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ff6b35;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.account-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
}

/* Active navigation link */
.nav-menu a.active {
  color: #fff;
  font-weight: 600;
  position: relative;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

/* Button loading state */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

  .flight-detail-container,
  .checkout-container,
  .confirmation-content {
    grid-template-columns: 1fr;
  }

  .booking-sidebar,
  .confirmation-sidebar {
    position: static;
  }

  .profile-container {
    grid-template-columns: 250px 1fr;
  }
}

@media (max-width: 768px) {
  .filters-container {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: static;
    order: 2;
  }

  .results-container {
    order: 1;
  }

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

  .flight-info {
    flex-direction: column;
    gap: 1rem;
  }

  .flight-details {
    flex-direction: column;
    gap: 1rem;
  }

  .hotel-result-card {
    flex-direction: column;
  }

  .hotel-image {
    width: 100%;
    height: 200px;
  }

  .hotel-price {
    border-left: none;
    border-top: 1px solid #e9ecef;
    min-width: auto;
  }

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

  .profile-sidebar {
    position: static;
    order: 2;
  }

  .profile-main {
    order: 1;
  }

  .profile-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.5rem;
  }

  .nav-item {
    white-space: nowrap;
    margin-bottom: 0;
  }

  .checkout-progress {
    gap: 1rem;
  }

  .progress-step span {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .progress-step p {
    font-size: 0.8rem;
  }

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

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

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .flight-result-card,
  .hotel-result-card {
    padding: 1rem;
  }

  .checkout-card,
  .confirmation-card {
    padding: 1rem;
  }

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

  .reservation-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .favorites-grid {
    grid-template-columns: 1fr;
  }

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

  .setting-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .account-actions {
    max-width: none;
  }
}

/* Additional styles for auth pages and offers */

/* Auth Section Styles */
.auth-section {
  padding: 4rem 0;
  background: #f8f9fa;
  margin-top: 120px;
  min-height: calc(100vh - 120px);
}

.auth-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  background: #f8f9fa;
}

.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  color: #666;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-tab.active {
  background: linear-gradient(135deg, #ff6b35, #8b1538);
  color: white;
}

.auth-form {
  padding: 2rem;
}

.auth-form h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.5rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: #ff6b35;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 3px;
  margin-right: 0.5rem;
  position: relative;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #ff6b35;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.forgot-password {
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  text-decoration: underline;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-strength {
  margin-top: 0.5rem;
}

.strength-bar {
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.strength-fill {
  height: 100%;
  width: 0%;
  background: #ff4757;
  transition: all 0.3s;
}

.strength-text {
  font-size: 0.8rem;
  color: #ff4757;
}

.social-login {
  margin: 2rem 0;
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
  color: #666;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e9ecef;
}

.divider span {
  background: white;
  padding: 0 1rem;
  font-size: 0.9rem;
}

.social-buttons {
  display: flex;
  gap: 1rem;
}

.social-btn {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.social-btn.google:hover {
  border-color: #db4437;
  color: #db4437;
}

.social-btn.facebook:hover {
  border-color: #4267b2;
  color: #4267b2;
}

.auth-link {
  text-align: center;
  margin-top: 2rem;
  color: #666;
}

.auth-link a {
  color: #ff6b35;
  text-decoration: none;
}

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

/* Benefits Section */
.login-benefits,
.register-benefits {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-benefits h3,
.register-benefits h3 {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefit-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.benefit-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Terms Section */
.terms-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.terms-section .checkbox-container {
  margin-bottom: 1rem;
  align-items: flex-start;
}

.terms-section .checkbox-container:last-child {
  margin-bottom: 0;
}

.terms-section a {
  color: #ff6b35;
  text-decoration: none;
}

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

/* Flash Deals Section */
.flash-deals-section {
  padding: 4rem 0;
  background: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #333;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-header h2 i {
  color: #ff6b35;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #666;
}

.timer {
  display: flex;
  gap: 1rem;
}

.time-unit {
  text-align: center;
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-width: 60px;
}

.time-unit .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.time-unit .label {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Deal Cards */
.deal-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.deal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.deal-details span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.deal-details i {
  color: #ff6b35;
}

.deal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.deal-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.deal-features i {
  color: #28a745;
}

/* Package Cards */
.package-card .package-type {
  background: #1e3a8a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.package-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #666;
}

.package-includes span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.package-includes i {
  color: #ff6b35;
}

/* Newsletter Section */
.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 2rem;
}

.newsletter-content p {
  margin-bottom: 2rem;
  color: #666;
  font-size: 1.1rem;
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.newsletter-benefits .benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.newsletter-benefits .benefit i {
  color: #ff6b35;
}

.newsletter-form .form-group {
  display: flex;
  max-width: 400px;
  margin: 0 auto 1rem;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #ff6b35;
}

.newsletter-disclaimer {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
}

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

  .login-benefits,
  .register-benefits {
    order: -1;
  }
}

@media (max-width: 768px) {
  .auth-section {
    padding: 2rem 0;
  }

  .auth-form {
    padding: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .countdown-timer {
    flex-direction: column;
    gap: 0.5rem;
  }

  .timer {
    gap: 0.5rem;
  }

  .time-unit {
    min-width: 50px;
    padding: 0.5rem;
  }

  .time-unit .number {
    font-size: 1.2rem;
  }

  .newsletter-benefits {
    flex-direction: column;
    gap: 1rem;
  }

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

@media (max-width: 480px) {
  .social-buttons {
    flex-direction: column;
  }

  .deal-details,
  .deal-features,
  .package-includes {
    flex-direction: column;
    gap: 0.5rem;
  }
}
