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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.pexels.com/photos/358319/pexels-photo-358319.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.8));
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 24px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.plane-icon {
    width: 32px;
    height: 32px;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.phone-icon {
    width: 20px;
    height: 20px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    display: block;
    color: #fbbf24;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    margin: 32px auto;
    max-width: 600px;
}

.cta-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 24px;
}

.cta-button {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cta-note {
    font-size: 14px;
    margin-top: 16px;
    opacity: 0.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #fbbf24;
    margin: 0 auto 16px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-card p {
    opacity: 0.9;
}

/* Airlines Section */
.airlines-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
    color: #1f2937;
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.airline-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.airline-card img {
    width: 100%;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.airline-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 12px;
}

.airline-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
}

.airline-call-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.airline-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.airline-call-btn .phone-icon {
    width: 16px;
    height: 16px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: white;
}

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

.review-container {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.star {
    width: 32px;
    height: 32px;
    color: #fbbf24;
}

.customer-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 24px;
}

#reviewText {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.6;
}

#reviewName {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

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

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

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: #374151;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2563eb;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo h4 {
    font-size: 24px;
    font-weight: bold;
}

.footer-section h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

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

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-phone {
        display: none;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .cta-button span {
        font-size: 16px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .airlines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .cta-box {
        padding: 24px;
    }
    
    .review-container {
        padding: 32px 24px;
    }
    
    .airlines-grid {
        grid-template-columns: 1fr;
    }
}