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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #f8fafc;
    color: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .dropdown-menu li a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

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

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

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2563eb;
}

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

.btn-sign-in, .btn-register {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sign-in {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-sign-in:hover {
    background: #2563eb;
    color: white;
}

.btn-register {
    background: #2563eb;
    color: white;
}

.btn-register:hover {
    background: #1d4ed8;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    margin-top: 80px;
    padding: 3rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(1200px circle at 20% 20%, rgba(255,255,255,0.18), transparent 55%),
                radial-gradient(900px circle at 85% 30%, rgba(255,255,255,0.14), transparent 60%),
                linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.hero-content-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    min-height: 620px;
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.hero-right {
    flex: 1;
    color: white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-right {
    flex: 1;
    color: white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    margin-bottom: 2rem;
}

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

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* New Glassmorphism Form Styles - Exact as Provided */
.form-wrapper{
  width:100%;
  height: auto;
  max-width: none;
  backdrop-filter:blur(15px);
  background: rgba(255,255,255,0.25);
  border-radius:20px;
  padding:35px;
  box-shadow:0 18px 55px rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.3);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-wrapper h2{
  text-align:center;
  margin-bottom:25px;
  color:#fff;
  font-weight:600;
  letter-spacing:1px;
  font-size: 1.8rem;
}

.section{
  margin-bottom:20px;
}

.section-title{
  color:#fff;
  font-size:14px;
  margin-bottom:8px;
  font-weight:500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.form-wrapper input, .form-wrapper select{
  width:100%;
  padding:12px 14px;
  border:none;
  border-radius:12px;
  background: rgba(255,255,255,0.85);
  font-size:14px;
  outline:none;
  transition:0.3s;
  font-family: 'Inter', sans-serif;
}

.form-wrapper input:focus, .form-wrapper select:focus{
  transform:scale(1.02);
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.95);
}

.radio-group{
  display:flex;
  gap:20px;
  color:#fff;
  font-size:14px;
  flex-wrap: wrap;
}

.radio-group input{
  margin-right:6px;
  width: auto;
  padding: 0;
  background: none;
}

.radio-group label{
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.radio-group label:hover{
  opacity: 0.8;
}

.form-wrapper button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:14px;
  background:#1d3557;
  color:#fff;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
  margin-top:10px;
  font-family: 'Inter', sans-serif;
}

.form-wrapper button:hover{
  background:#0b2545;
  transform:translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media(max-width:700px){
  .grid{
    grid-template-columns:1fr;
  }
  
  .radio-group{
    flex-direction: column;
    gap: 10px;
  }
  
  .form-wrapper{
    padding:25px;
  }
  
  .form-wrapper h2{
    font-size:1.5rem;
  }
}

/* Booking Form */
.booking-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: #333;
}

.trip-type {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.radio-option input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

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

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.input-wrapper input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-options {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.btn-search {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-search i {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Enhanced Destinations Section */
.destinations-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.destinations-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    position: relative;
    display: inline-block;
}

.destinations-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.destinations-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.destination-card-enhanced {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.destination-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.destination-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card-enhanced:hover .destination-image-wrapper img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-start;
    padding: 1rem;
}

.destination-badge {
    background: #dc2626;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.destination-badge.hot-deal {
    background: #ea580c;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

.destination-badge.trending {
    background: #7c3aed;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.destination-badge.luxury {
    background: #f59e0b;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.destination-badge.beach {
    background: #0891b2;
    box-shadow: 0 4px 10px rgba(8, 145, 178, 0.3);
}

.destination-badge.nature {
    background: #059669;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

.destination-content-enhanced {
    padding: 1.5rem;
}

.destination-content-enhanced h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.destination-description {
    margin-bottom: 1rem;
}

.destination-description p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.95rem;
}

.destination-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.stat i {
    color: #2563eb;
    font-size: 0.8rem;
}

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

.destination-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #059669;
}

.destination-price .original-price {
    font-size: 1.1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.btn-explore {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #111827;
}

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

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

 .footer-section h3,
 .footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

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

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

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.social-links a:hover {
    background: #2563eb;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
}

.modal h3 {
    margin-bottom: 2rem;
    color: #1f2937;
}

.passenger-selector {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.passenger-row label {
    font-weight: 500;
    color: #4b5563;
}

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

.counter button {
    width: 30px;
    height: 30px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.counter button:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.counter span {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

.class-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.class-selector label {
    font-weight: 500;
    color: #4b5563;
}

.class-selector select {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-done {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: background 0.3s;
}

.btn-done:hover {
    background: #1d4ed8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials .container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.testimonials .container p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Carousel Styles */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 33.333%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    justify-content: center;
    text-align: center;
}

.testimonial-info {
    text-align: center;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: white;
}

.testimonial-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.rating {
    color: #ffd700;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.rating i {
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

.trip-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq .container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq .container p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #64748b;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #64748b;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: -20px;
    }
    
    .next-btn {
        right: -20px;
    }
    
    .testimonials .container h2,
    .faq .container h2 {
        font-size: 2rem;
    }
    
    .testimonial-info h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-content {
        font-size: 0.95rem;
    }
    
    .testimonial-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero responsive */
    .hero-content-new {
        grid-template-columns: 1fr;
        min-height: 600px;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        order: 2;
        height: auto;
    }

    .hero-right {
        order: 1;
        height: auto;
    }

    .hero-image {
        height: 400px;
        max-width: 500px;
    }

    .form-wrapper {
        height: auto;
        max-width: 750px;
        margin: 0 auto;
    }

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

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

    .hero-image {
        max-width: 350px;
        transform: none;
    }

    .hero-image:hover {
        transform: none;
    }

    .booking-form-new {
        padding: 1.5rem;
    }

    .trip-type {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

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

    .social-links {
        justify-content: center;
    }

    /* Banner responsive */
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .banner-timer {
        justify-content: center;
    }

    .banner-text h2 {
        font-size: 1.5rem;
    }

    /* Trips responsive */
    .trips-grid {
        grid-template-columns: 1fr;
    }

    /* Help section responsive */
    .help-grid {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .btn-emergency {
        width: 100%;
    }

    /* Destinations responsive */
    .destinations-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destination-stats {
        gap: 1rem;
    }
}

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

    .features h2,
    .destinations-header h2,
    .newsletter h2,
    .recommended-trips h2,
    .customer-help h2 {
        font-size: 2rem;
    }

    .booking-form-new {
        padding: 1rem;
    }

    .banner-text h2 {
        font-size: 1.3rem;
    }

    .timer-block {
        min-width: 50px;
        padding: 0.75rem 0.5rem;
    }

    .timer-block span {
        font-size: 1.2rem;
    }

    .destinations-header h2::after {
        width: 40px;
    }

    .destination-card-enhanced {
        border-radius: 12px;
    }

    .destination-content-enhanced {
        padding: 1rem;
    }

    .destination-content-enhanced h3 {
        font-size: 1.2rem;
    }

    .destination-price .price {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Hide return date for one-way trips */
.return-group.hidden {
    display: none;
}

/* Promotional Banner Styles */
.promo-banner {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #f59e0b 100%);
    padding: 2rem 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.banner-text h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-banner {
    background: white;
    color: #dc2626;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.timer-block {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    min-width: 60px;
}

.timer-block span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.timer-block small {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Recommended Trips Section */
.recommended-trips {
    padding: 5rem 0;
    background: white;
}

.recommended-trips h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.recommended-trips > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.trip-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

.trip-content {
    padding: 1.5rem;
}

.trip-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.trip-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.trip-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trip-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.trip-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

.trip-price .original-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.trip-price .discount {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-book-trip {
    width: 100%;
    padding: 0.75rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-book-trip:hover {
    background: #1d4ed8;
}

/* Customer Help Section */
.customer-help {
    padding: 5rem 0;
    background: #f8f9fa;
}

.customer-help h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.customer-help > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.help-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.help-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.help-icon i {
    font-size: 1.5rem;
    color: white;
}

.help-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.help-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

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

.contact-info strong {
    color: #1f2937;
    font-size: 1rem;
}

.contact-info small {
    color: #9ca3af;
    font-size: 0.85rem;
}

.btn-help {
    padding: 0.5rem 1.5rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-help:hover {
    background: #1d4ed8;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.emergency-icon {
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon i {
    font-size: 1.5rem;
    color: white;
}

.emergency-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-emergency {
    background: white;
    color: #dc2626;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

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