/* assets/css/index.css */

/* Base Styles */
:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary-color: #6b7280;
  --light-color: #f9fafb;
  --dark-color: #111827;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
  .search-box {
    max-width: 950px;
    margin: 0 auto;
  }
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

.btn-link {
  background: none;
  color: var(--primary-color);
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.text-center {
  text-align: center;
}
.hero-content {
    /* height: 27px; */
    padding: 10px;
    text-align: center;
    top: 30px;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

/* Value Proposition */
.value-proposition {
    background: white;
}

.value-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Travel Inspiration */
.inspiration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

/* Countdown Timer */
.deals-countdown {
    background: linear-gradient(135deg, #2196F3, #00BCD4);
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    min-width: 80px;
}

.countdown-item span {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

/* World Map */
.world-map-container {
    position: relative;
}

.world-map {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.map-highlight {
    position: absolute;
    background: rgba(33, 150, 243, 0.3);
    border-radius: 50%;
    border: 2px solid #2196F3;
    pointer-events: none;
    transition: all 0.3s ease;
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 150px;
}

.stat-item h3 {
    color: #2196F3;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Travel Requirements */
.requirements-search {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.requirement-card {
    text-align: center;
    padding: 1.5rem;
    height: 100%;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.requirement-icon {
    font-size: 2rem;
    color: #2196F3;
    margin-bottom: 1rem;
}

/* Sustainability */
.sustainability-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.sustainability-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.search-section
{
  background: url('../images/search-box/AdobeStock_423642596_Video_HD_Preview.gif') center center/cover no-repeat;
  height: 93vh;
  position: relative;
}
/* .search-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 1, 1, 0.2);
  backdrop-filter: blur(2px);
  z-index: 1;
} */
.search-section > * {
  position: relative;
  z-index: 2;
}

.gifText {
  position: relative;
  top: 45px;
  font-size: 2rem;
  font-weight: 800;
  color: #000000;
  text-align: center;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 1px 0 #fff;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.2;
}

.search-box {
  top: 50px;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.search-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}

.search-tabs button {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.search-tabs button.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-content {
  display: none;
  padding: 1.5rem;
}

.tab-content.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* Sections */

.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.section-subtitle {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.view-all {
  margin-top: 1rem;
}

/* Featured Flights */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 15px;
}

.flight-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
}

.flight-details{
  display: flex;
  justify-content: space-around;
  padding: auto;
}

.flight-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.flight-card:hover .flight-card-inner {
  transform: rotateY(180deg);
}

.flight-card-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flight-header {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.5rem 0;
}

.airline-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: 1rem;
}

.flight-info {
  flex: 1;
}

.airline-name {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.flight-number {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* .flight-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
} */

.departure,
.arrival {
  text-align: center;
}

.time {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.airport-code {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.city {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.duration {
  flex: 1;
  padding: 40px 1rem;
  text-align: center;
}

.duration-line {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.duration-line .line {
  flex: 1;
  height: 1px;
  background-color: #d1d5db;
}

.duration-line i {
  margin: 0 0.5rem;
  color: var(--primary-color);
}

.duration-text {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.flight-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.price-container {
  text-align: left;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-label {
  display: block;
  font-size: 0.8rem;
  color: var(--secondary-color);
}

.book-btn {
  padding: 0.5rem 1rem;
}

/* Popular Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.destination-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
}

.destination-image {
  position: relative;
  height: 100%;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: white;
  z-index: 2;
}

.destination-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.destination-info p {
  margin-bottom: 1rem;
}

.price-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

.price-badge span {
  font-weight: 700;
}

.explore-btn {
  display: inline-block;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 1.5rem;
  height: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.user-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.user-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.rating {
  color: var(--warning-color);
}

.testimonial-body {
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-footer {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  height: 100%;
}

.blog-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: #e0e7ff;
  color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.read-more {
  padding: 0;
  font-weight: 500;
}

/* Newsletter Section */

.newsletter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(202, 202, 202);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.newsletter-content {
  text-align: center;
  margin-bottom: 2rem;
}

.newsletter-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.newsletter-form {
  max-width: 500px;
  width: 100%;
}

.input-group {
  display: flex;
  margin-bottom: 1rem;
}

.input-group input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.input-group button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-check {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.form-check input {
  margin-right: 0.5rem;
}

.form-check a {
  color: var(--primary-color);
  text-decoration: underline;
}

.newsletter-image {
  max-width: 300px;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Welcome Modal */
.modal-content {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.welcome-content {
  padding: 2rem;
  text-align: center;
}

.welcome-image {
  max-width: 150px;
  margin: 0 auto 1.5rem;
}

.welcome-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.welcome-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.welcome-code {
  background: #e0e7ff;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.welcome-code strong {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.welcome-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.welcome-footer small {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #e0e7ff;
  /* color: var(--primary-color); */
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 80vh;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1.1rem;
  }
  
  .search-section {
    margin-top: -30px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .flight-card {
    margin-bottom: 1.5rem;
  }
  
  .newsletter-container {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-slideshow {
    height: 70vh;
    max-height: 500px;
  }
  
  .slide-content h2 {
    font-size: 1.75rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .search-tabs {
    flex-direction: column;
  }
  
  .search-tabs button {
    border-bottom: 1px solid #e5e7eb;
    border-left: 3px solid transparent;
    text-align: left;
  }
  
  .search-tabs button.active {
    border-bottom: 1px solid #e5e7eb;
    border-left: 3px solid var(--primary-color);
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .flight-header {
    flex-direction: column;
    text-align: center;
  }
  
  .airline-logo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .flight-price {
    flex-direction: column;
    gap: 1rem;
  }
  
  .price-container {
    text-align: center;
  }
  
  .welcome-content {
    padding: 1.5rem;
  }
  
  .welcome-buttons .btn {
    width: 100%;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}
/* Mobile App CTA */
.app-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 80px 0;
    /* border-radius: 8px; */
    overflow: hidden;
    /* margin: 80px 0; */
}

.app-content {
    display: flex;
    align-items: center;
}

.app-text {
    flex: 1;
    padding-right: 50px;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-text h2 span {
    color: #3498db;
}

.app-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-stars {
    color: #f1c40f;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-3px);
}

.app-store-btn {
    background: black;
    color: white;
}

.play-store-btn {
    background: white;
    color: black;
}

.btn-icon {
    font-size: 1.8rem;
    margin-right: 10px;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-size: 0.7rem;
}

.btn-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.app-image {
    flex: 1;
    position: relative;
    border-radius: 5px;
}

.app-image img {
    width: 100%;
    /* max-width: 300px; */
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    mix-blend-mode: lighten;
}

.app-highlight {
    position: absolute;
    top: -35px;
    right: -65px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.highlight-text {
    margin-top: 10px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

  .bg-gradient-primary-to-secondary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
  }
  
  .hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
  }
  
  .hover-lift-sm:hover {
    transform: translateY(-1px);
  }
  
  .social-btn {
    width: 40px;
    height: 40px;
    transition: all 0.2s ease;
  }
  
  .hover-underline {
    position: relative;
  }
  
  .hover-underline:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #4e73df;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .modal-content {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }
  
  .modal.show .modal-content {
    animation: fadeInUp 0.3s ease;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/*Passenger add modal*/

.passenger-selector select {
    cursor: pointer;
    background-color: white;
}

.modals {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modals-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.passenger-category {
    margin-top: 20px;
}

.category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.category-row h4 {
    margin: 0;
    font-size: 16px;
}

.category-row p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.counter {
    display: flex;
    align-items: center;
}

.counter button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
}

.counter span {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
}

.btn-confirm {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #2196f3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
