/* ========================================
   DETAY SAYFALARI CSS
   - Günlük Araba Kiralama
   - Havalimanı Araç Kiralama
   - Şehir Araç Kiralama
   - Ucuz Araç Kiralama
========================================= */

/* Section Gradient - Detay Özel */
.section-gradient-green {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.package-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Hero Modern Section */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c8102e 0%, #c8102e 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8102e 0%, #c8102e 100%), url('../image/main-hero.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 18, 23, 0.35) 0%, rgba(229, 45, 39, 0.25) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0.15rem 0 2rem 0;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #dc3545, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    color: #ffc107;
    font-size: 1.3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary,
.btn-hero-whatsapp,
.btn-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    justify-content: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #c8102e 0%, #ff6a00 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 45, 39, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #ff6a00 0%, #c8102e 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 45, 39, 0.5);
    color: white;
    text-decoration: none;
}

.btn-hero-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-hero-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.btn-hero-call {
    background: linear-gradient(135deg, #ff5a5f 0%, #ff767b 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 90, 95, 0.15);
    backdrop-filter: blur(10px);
}

.btn-hero-call:hover {
    background: linear-gradient(135deg, #ff767b 0%, #ff5a5f 100%);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

/* Daily Packages Section */
.daily-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 1rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    margin-top: 1rem;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.package-card.popular {
    border-color: #28a745;
    transform: scale(1.05);
}

.package-card.premium {
    border-color: #6f42c1;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    white-space: nowrap;
    z-index: 10;
}

.premium-badge {
    background: linear-gradient(135deg, #6f42c1, #5a3a9a) !important;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3) !important;
}

.package-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.package-duration i {
    color: #007bff;
    font-size: 1.2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 1rem;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #007bff;
}

.package-price .period {
    font-size: 1rem;
    color: #666;
}

.savings {
    background: #e8f5e8;
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.package-features i {
    color: #28a745;
    font-size: 0.9rem;
    width: 16px;
}

.usage-examples {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.usage-examples h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.example-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Quick Booking Steps */
.quick-booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.quick-step:hover {
    transform: translateY(-5px);
}

.step-time {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc3545, #c8102e);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Booking Urgency */
.booking-urgency {
    margin-top: 3rem;
}

.urgency-card {
    background: linear-gradient(135deg, #c8102e, #c8102e);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.3);
}

.urgency-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

.urgency-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.urgency-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.emergency-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-emergency {
    background: rgba(255,255,255,0.9);
    color: #c8102e;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-emergency:hover {
    background: white;
    color: #c8102e;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Flexibility Options */
.flexibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.flexibility-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.flexibility-card:hover {
    transform: translateY(-5px);
}

.flexibility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.flexibility-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.flexibility-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.9rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.flexibility-note {
    background: #fff3cd;
    color: #856404;
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.flexibility-note i {
    color: #dc3545;
}

/* Use Cases */
.use-cases {
    margin-top: 3rem;
}

.use-case-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.use-case-category h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.use-case-category h3 i {
    color: #007bff;
    font-size: 1.3rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.use-case-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-3px);
    background: #e3f2fd;
}

.use-case-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.use-case-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.use-case-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Last Minute Section */
.last-minute-section {
    background: linear-gradient(135deg, #dc3545, #c8102e);
    color: #333;
}

.last-minute-content {
    text-align: center;
}

.deals-header {
    margin-bottom: 3rem;
}

.deals-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.deals-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 800;
}

.deals-header p {
    font-size: 1.2rem;
    color: #333;
    opacity: 0.8;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.deal-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.deal-card:hover {
    transform: translateY(-5px);
    background: white;
}

.deal-card.premium {
    background: rgba(111, 66, 193, 0.1);
    border: 2px solid #6f42c1;
}

.deal-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, #c8102e, #c8102e);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.deal-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.deal-price {
    color: #c8102e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.deal-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.deal-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #e8f4ff;
    color: #007bff;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.deals-cta {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.deals-cta p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-lightning {
    background: linear-gradient(135deg, #c8102e, #c8102e);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.btn-lightning:hover {
    background: linear-gradient(135deg, #c8102e, #c8102e);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
    color: white;
    text-decoration: none;
}

/* CTA Benefits */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-weight: 500;
    font-size: 0.95rem;
}

.benefit-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .btn-hero-primary,
    .btn-hero-whatsapp,
    .btn-hero-call {
        width: 100%;
        max-width: none;
    }
    
    .hero-trust {
        gap: 2rem;
    }
    
    /* CTA Section Mobile */
    .cta-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .cta-actions {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .daily-packages {
        grid-template-columns: 1fr;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .quick-booking-steps {
        grid-template-columns: 1fr;
    }
    
    .flexibility-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
        
    .trust-number {
        font-size: 1.8rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    /* CTA Section Mobile Small */
    .cta-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 15px 24px;
        font-size: 1rem;
        height: auto;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .urgency-card {
        padding: 2rem 1rem;
    }
    
    .urgency-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .urgency-card h3 {
        font-size: 1.5rem;
    }
    
    .flexibility-card {
        padding: 1.5rem;
    }
    
    .flexibility-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .use-case-category {
        padding: 2rem 1.5rem;
    }
    
    .use-case-item {
        padding: 1rem;
    }
    
    .deal-card {
        padding: 1.5rem;
    }
    
    .deals-cta {
        padding: 1.5rem;
    }
}

/* ========================================
   HAVALİMANI ARAÇ KİRALAMA STYLES
========================================= */

/* Airport Cards */
.airport-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.airport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.airport-card .btn-whatsapp,
.airport-card .btn-call {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 320px;
    font-size: 1.1rem;
}

.airport-card.featured {
    border-color: #007bff;
    transform: scale(1.02);
}

.airport-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.airport-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.airport-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.airport-code {
    color: #666;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.airport-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    color: #555;
    font-size: 0.9rem;
}

.feature-item i {
    color: #28a745;
    width: 16px;
}

.airport-time {
    background: #e8f4ff;
    color: #007bff;
    padding: 0.8rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.airport-time i {
    margin-right: 0.5rem;
}

/* Other Airports */
.other-airports {
    margin-top: 3rem;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.other-airports h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.airport-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.airport-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-weight: 500;
}

.airport-item i {
    color: #007bff;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.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: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f4ff, #f0f8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #007bff;
    margin: 0 auto 1.5rem;
    border: 2px solid #007bff;
}

.step-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-note {
    background: #fff3cd;
    color: #856404;
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-align: left;
}

.step-note i {
    color: #dc3545;
    flex-shrink: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-tag {
    background: #e8f4ff;
    color: #007bff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Flight Tracking Section */
.flight-tracking-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

.flight-tracking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tracking-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.flight-tracking-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.flight-tracking-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}

.tracking-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tracking-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tracking-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #dc3545;
    flex-shrink: 0;
}

.tracking-feature h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.tracking-feature p {
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

/* Flight Status Card */
.flight-status-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.flight-status-card h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.flight-route .airport {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.flight-route i {
    color: #dc3545;
    font-size: 1.5rem;
}

.flight-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    text-align: center;
}

.flight-details .detail {
    color: white;
    font-size: 0.9rem;
}

.flight-details .status.on-time {
    color: #28a745;
    font-weight: 600;
}

.tracking-note {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-weight: 500;
}

.tracking-note i {
    color: #28a745;
}

/* Flight Info Form */
.flight-info-form {
    margin-top: 1rem;
}

.form-note {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid #007bff;
    color: #007bff;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-note i {
    color: #007bff;
    font-size: 1.1rem;
}

/* Airport Responsive */
@media (max-width: 768px) {
    .airports-grid {
        grid-template-columns: 1fr;
    }
    
    .airport-card.featured {
        transform: none;
    }
    
    .airport-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .flight-tracking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tracking-features {
        align-items: center;
    }
    
    .tracking-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .flight-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .airport-card {
        padding: 1.5rem;
    }
    
    .airport-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .process-step .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .flight-status-card {
        padding: 1.5rem;
    }
}

/* ========================================
   ŞEHİR ARAÇ KİRALAMA STYLES
========================================= */

/* Districts Grid */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.district-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.district-card:hover {
    transform: translateY(-5px);
}

.district-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.district-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.district-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #e8f4ff;
    color: #007bff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-district {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-district:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Delivery Info */
.delivery-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.delivery-card, 
.traffic-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.delivery-card h3, 
.traffic-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
}

.delivery-item i {
    color: #28a745;
    font-size: 0.9rem;
}

.traffic-tips {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Airport Service Card */
.airport-service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.airport-service-card:hover {
    transform: translateY(-5px);
}

.airport-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.airport-info h3 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.airport-code {
    background: #f8f9fa;
    color: #666;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.airport-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.airport-service, 
.airport-fee {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.airport-service i {
    color: #28a745;
}

.airport-fee i {
    color: #dc3545;
}

.btn-airport {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-airport:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Routes */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.route-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 1rem;
}

.route-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.route-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.route-tag {
    background: #e8f5e8;
    color: #28a745;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.btn-route {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-route:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Landmarks */
.landmarks-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.landmark-item:hover {
    transform: translateY(-2px);
}

.landmark-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6f42c1, #5a3a9a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.landmarks-cta {
    background: linear-gradient(135deg, #6f42c1, #5a3a9a);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.landmarks-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.landmarks-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-landmark {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-landmark:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* City Pricing */
.city-pricing {
    text-align: center;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.pricing-card.city-featured {
    border: 3px solid #007bff;
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,123,255,0.2);
    z-index: 2;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.pricing-display .price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.pricing-display .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #007bff;
}

.pricing-display .period {
    font-size: 1rem;
    color: #666;
}

.pricing-note {
    background: #e8f5e8;
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.95rem;
    display: inline-block;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-features i {
    color: #28a745;
    font-size: 0.9rem;
    width: 16px;
}

.btn-pricing {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 1.5rem;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

.btn-pricing.btn-premium {
    margin-top: 10px;
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.btn-pricing.btn-premium:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.pricing-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 auto 2rem auto;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    text-align: center;
}

.included-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.service-item {
    background: #e8f5e8;
    color: #28a745;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.service-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Other Cities */
.other-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.other-city-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.other-city-card:hover {
    transform: translateY(-5px);
}

.city-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    margin: 0 auto 1rem;
}

.city-stats {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.city-price {
    font-size: 1.1rem;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-city {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-city:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Şehir Sayfası Butonları */
.btn-call {
    background: linear-gradient(135deg, #c8102e 0%, #c8102e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-call:hover {
    background: linear-gradient(135deg, #c8102e 0%, #c8102e 100%);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* City Responsive */
@media (max-width: 900px) {
    .delivery-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-district,
    .btn-airport,
    .btn-route,
    .btn-landmark,
    .btn-call {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .districts-grid,
    .routes-grid,
    .landmarks-showcase,
    .other-cities {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem 1rem;
    }
    
    .pricing-info {
        padding: 1.5rem 1rem;
    }
    
    .action-buttons {
        gap: 0.8rem;
    }
}

/* ========================================
   UCUZ ARAÇ KİRALAMA STYLES
========================================= */

/* Price Categories */
.price-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.price-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.price-category-card.popular {
    border-color: #28a745;
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.category-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.price-category-card .price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.price-category-card .price-display .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #007bff;
}

.price-category-card .price-display .period {
    font-size: 1rem;
    color: #666;
}

.category-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.category-features i {
    color: #28a745;
    font-size: 0.9rem;
    width: 16px;
}

/* Discount Tiers */
.discount-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tier-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 2px solid #f0f0f0;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.popular {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff8e1, #ffffff);
}

.tier-card.premium {
    border-color: #007bff;
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

.tier-card.exclusive {
    border-color: #c8102e;
    background: linear-gradient(135deg, #ffebee, #ffffff);
}

.tier-header {
    margin-bottom: 1.5rem;
}

.tier-header i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.tier-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.discount-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.discount-badge.base {
    background: #f8f9fa;
    color: #666;
}

.discount-badge:not(.base) {
    background: linear-gradient(135deg, #c8102e, #c8102e);
    color: white;
}

/* Guarantee Section */
.guarantee-section {
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.guarantee-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.guarantee-item i {
    font-size: 1.5rem;
    color: #dc3545;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.company-column h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.company-badge {
    padding: 6px 16px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.company-badge.our {
    background: #28a745;
    color: white;
}

.company-badge.other {
    background: #c8102e;
    color: white;
}

.vs-divider {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    align-items: center;
    text-align: center;
}

.feature-name {
    font-weight: 600;
    color: #333;
    text-align: left;
}

.our-price {
    font-weight: 700;
    color: #28a745;
    font-size: 1.1rem;
}

.competitor-price {
    font-weight: 600;
    color: #c8102e;
}

/* Urgency Indicators */
.urgency-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff3cd;
    color: #856404;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.urgency-item i {
    color: #c8102e;
}

/* Ucuz Araç Responsive */
@media (max-width: 768px) {
    .price-categories {
        grid-template-columns: 1fr;
    }
    
    .price-category-card.popular {
        transform: none;
    }
    
    .discount-tiers {
        grid-template-columns: 1fr;
    }
    
    .guarantee-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .feature-name {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #ddd;
        padding-bottom: 0.5rem;
    }
    
    .urgency-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
