/* Uçak Bileti Landing Page Özel Stilleri */

/* Urgent Header */
.urgent-header {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    animation: pulse 2s infinite;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.urgent-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
}

.urgent-phone {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.urgent-phone:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Header Modifications */
.nav-cta-large {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-title {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

.cta-subtitle {
    font-size: 10px;
    opacity: 0.7;
}

.cta-button-large {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: rgba(255,255,255,0.3);
}

/* Hero Landing */
.hero-landing {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-plane.png') center/cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30,60,114,0.9), rgba(42,82,152,0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 30px;
}

.title-highlight {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
    color: #ffd700;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.feature-item i {
    color: #28a745;
    font-size: 18px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40,167,69,0.4);
}

.btn-hero-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn-hero-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37,211,102,0.4);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main {
    font-size: 16px;
    font-weight: 800;
}

.btn-sub {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 600;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
}

.trust-text {
    font-size: 14px;
    opacity: 0.8;
}

/* Urgent Strip */
.urgent-strip {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 15px 0;
    color: white;
}

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

.urgent-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
}

.urgent-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.urgent-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

/* Airlines Section */
.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.airline-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.airline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.airline-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.airline-logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.airline-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.airline-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.airline-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.airline-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.airline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

/* Why Choose Landing */
.why-choose-landing {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #28a745;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefit-cta a {
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 20px;
    border: 2px solid #007bff;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.benefit-cta a:hover {
    background: #007bff;
    color: white;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffd700;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 14px;
}

.testimonial-cta a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 20px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.testimonial-cta a:hover {
    background: #ffd700;
    color: #2c3e50;
}

/* Popular Routes Landing */
.popular-routes-landing {
    padding: 80px 0;
    background: #f8f9fa;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

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

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #007bff;
}

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

.route-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.route-price {
    color: #28a745;
    font-weight: 700;
    font-size: 14px;
}

.route-details {
    margin-bottom: 25px;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 14px;
}

.route-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.route-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

.routes-cta {
    text-align: center;
    margin-top: 50px;
}

.routes-cta p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 25px;
}

.btn-primary-large {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40,167,69,0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40,167,69,0.4);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    color: white;
    font-size: 2rem;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

/* FAQ Landing */
.faq-landing {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-cta {
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 20px;
    border: 2px solid #007bff;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.faq-cta:hover {
    background: #007bff;
    color: white;
}

/* Final CTA Landing */
.final-cta-landing {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-final-primary, .btn-final-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.btn-final-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 10px 30px rgba(40,167,69,0.3);
}

.btn-final-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(40,167,69,0.4);
}

.btn-final-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.btn-final-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.4);
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.guarantee-item i {
    color: #ffd700;
    font-size: 20px;
}

/* Floating Call Landing */
.floating-call-landing {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.call-button-floating {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.call-button-floating:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(40,167,69,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-main {
    font-size: 14px;
    font-weight: 800;
}

.call-sub {
    font-size: 12px;
    opacity: 0.9;
}

/* Sticky Bottom CTA */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 15px 0;
    z-index: 999;
    display: none;
}

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

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-weight: 700;
    font-size: 16px;
}

.sticky-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

.sticky-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sticky-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .urgent-content {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }
    
    .nav-cta-large {
        display: none;
    }
    
    .title-highlight {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary, .btn-hero-whatsapp {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-trust {
        gap: 20px;
    }
    
    .urgent-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .urgent-text {
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-final-primary, .btn-final-whatsapp {
        width: 100%;
        max-width: 300px;
    }
    
    .final-guarantees {
        gap: 20px;
    }
    
    .guarantee-item {
        font-size: 14px;
    }
    
    .floating-call-landing {
        display: none;
    }
    
    .sticky-bottom-cta {
        display: block;
    }
    
    .call-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .title-highlight {
        font-size: 1.5rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .airlines-grid {
        grid-template-columns: 1fr;
    }
    
    .airline-card {
        padding: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}
