/* Pricing Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.pricing-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 100 100"><defs><pattern id="money" patternUnits="userSpaceOnUse" width="100" height="100"><text x="25" y="30" font-size="20" fill="white" opacity="0.1">₺</text><text x="75" y="70" font-size="20" fill="white" opacity="0.1">₺</text></pattern></defs><rect width="100" height="100" fill="url(%23money)"/></svg>');
    opacity: 0.3;
}

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

.pricing-breadcrumb {
    margin-bottom: 35px;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.pricing-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pricing-breadcrumb a:hover {
    color: white;
    transform: translateX(-3px);
}

.pricing-breadcrumb i {
    margin: 0 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.pricing-breadcrumb span {
    color: white;
    font-weight: 600;
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Pricing Content */
.pricing-content {
    padding-bottom: 80px;
}

/* Pricing Sections */
.pricing-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(var(--primary-rgb), 0.1);
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 100%;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.price-card.featured {
    border: 1px solid var(--primary-color);
    background: rgba(var(--primary-rgb), 0.02);
}

.price-card.vip {
    border: 1px solid #ffd700;
    background: rgba(255, 215, 0, 0.02);
}

.route-card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    width: 100%;
}

.location-icon {
    width: 45px;
    height: 45px;
    background: #f0c040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    color: white;
    font-size: 1.3rem;
}

.route-details-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.route-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.route-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

.route-price-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    text-align: right;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.route-price-display.no-price {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}


/* CTA Section */
.pricing-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.pricing-cta::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 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .pricing-hero {
        padding: 60px 0;
    }

    .pricing-hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .price-card {
        padding: 20px;
        gap: 15px;
    }


    .route-info h5 {
        font-size: 1.2rem;
    }

    .route-price {
        font-size: 1.8rem;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 50px 0;
        margin-bottom: 60px;
    }

    .pricing-hero-title {
        font-size: 2.25rem;
    }

    .pricing-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-card {
        padding: 15px;
        text-align: left;
    }

    .route-card-content {
        gap: 12px;
    }

    .location-icon {
        width: 40px;
        height: 40px;
    }

    .location-icon i {
        font-size: 1.1rem;
    }

    .route-title {
        font-size: 1rem;
    }

    .route-subtitle {
        font-size: 0.85rem;
    }

    .route-price-display {
        font-size: 1.8rem;
    }

    .route-price-display.no-price {
        font-size: 0.8rem;
    }

    .pricing-cta {
        padding: 40px 25px;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 15px 25px;
    }

    .pricing-content {
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .pricing-hero-title {
        font-size: 1.9rem;
    }

    .pricing-section {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .price-card {
        padding: 15px;
    }

    .route-image {
        width: 80px;
        height: 60px;
    }

    .route-info h5 {
        font-size: 1.1rem;
    }

    .route-info > span {
        font-size: 0.9rem;
    }

    .route-price {
        font-size: 1.6rem;
        padding: 8px 12px;
    }

    .pricing-cta {
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }
}

/* Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-card {
    animation: fadeInUp 0.6s ease-out;
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }
.price-card:nth-child(4) { animation-delay: 0.4s; }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Price Card Click Effect */
@keyframes cardClick {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

.price-card:active {
    animation: cardClick 0.2s ease;
}

/* Special Discount Badge */
.price-card::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 25px solid #28a745;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card.featured::after {
    opacity: 1;
    border-top-color: var(--primary-color);
}

.price-card.vip::after {
    opacity: 1;
    border-top-color: #ffd700;
}

/* Price Pulse Animation */
@keyframes pricePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
