/* Pegasus Havayolları Özel Stilleri */

/* Pegasus Kırmızı-Sarı Renk Paleti */
:root {
    --pegasus-primary: #dc2626;
    --pegasus-secondary: #fbbf24;
    --pegasus-accent: #f59e0b;
    --pegasus-light: #fef3c7;
    --pegasus-dark: #991b1b;
    --pegasus-gradient: linear-gradient(135deg, #dc2626 0%, #f59e0b 50%, #fbbf24 100%);
}

/* Pegasus Hero Section */
.airline-hero {
    background: var(--pegasus-gradient);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.airline-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="pegasus-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pegasus-grid)"/></svg>');
    opacity: 0.4;
}

.airline-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.1);
    z-index: 1;
}

.airline-hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.airline-logo-large {
    display: flex;
    align-items: center;
    justify-content: center;
}

.airline-logo-large img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Pegasus Logo Container */
.pegasus-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pegasus-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.2em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.pegasus-horse {
    font-size: 4rem;
    color: var(--pegasus-secondary);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.airline-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.airline-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
}

/* Kurumsal Call-to-Action Butonları */
.airline-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.6);
}

.btn-primary i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 18px 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Breadcrumb Pegasus Teması */
.breadcrumb {
    background: linear-gradient(135deg, var(--pegasus-light) 0%, #f1f5f9 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb-nav a {
    color: var(--pegasus-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--pegasus-secondary);
}

.breadcrumb-nav i {
    color: #94a3b8;
    font-size: 0.8rem;
}

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

/* Airline Info Section */
.airline-info {
    padding: 5rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pegasus-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.info-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--pegasus-light) 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
    border-color: var(--pegasus-secondary);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--pegasus-secondary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pegasus-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Contact Section */
.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pegasus-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--pegasus-secondary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--pegasus-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.contact-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pegasus-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #1e293b;
}

.contact-details a {
    color: var(--pegasus-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--pegasus-primary);
}

.contact-details span {
    color: #475569;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Contact Features */
.contact-features {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--pegasus-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.2);
}

/* Services Section */
.airline-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, var(--pegasus-light) 100%);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--pegasus-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--pegasus-gradient);
    border-radius: 2px;
}

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

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--pegasus-secondary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--pegasus-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pegasus-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-item p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item ul li {
    padding: 0.5rem 0;
    color: #1e293b;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.service-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pegasus-secondary);
    font-weight: bold;
}

/* Popular Routes */
.popular-routes {
    padding: 5rem 0;
    background: white;
}

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

.route-card {
    background: linear-gradient(135deg, var(--pegasus-light) 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
    border-color: var(--pegasus-secondary);
}

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

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

.departure h3, .arrival h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pegasus-primary);
    margin-bottom: 0.3rem;
}

.departure span, .arrival span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.route-arrow {
    color: var(--pegasus-secondary);
    font-size: 1.5rem;
}

.route-info {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.route-info p {
    font-weight: 600;
    color: var(--pegasus-primary);
    margin-bottom: 0.3rem;
}

.route-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Routes CTA */
.routes-cta {
    text-align: center;
    padding: 3rem;
    background: var(--pegasus-gradient);
    border-radius: 25px;
    color: white;
}

.routes-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, var(--pegasus-light) 100%);
}

.why-choose .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-choose .feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.why-choose .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--pegasus-secondary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--pegasus-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.why-choose .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pegasus-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-choose .feature-card p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: var(--pegasus-gradient);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.final-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.final-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .airline-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .airline-logo-large img {
        width: 150px;
    }
    
    .airline-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .airline-cta {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .airline-hero-text h1 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
