/* Pricing Header */
.pricing-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/pricing/photographer-price-package.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0 60px;
}

.pricing-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.pricing-header p {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
    letter-spacing: 0.5px;
}

/* Investment Description */
.investment-description {
    padding: 100px 0;
    background: #f8f9fa;
}

.description-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.description-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-content {
    text-align: center;
    margin-top: 3rem;
}

.cta-content .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #000000;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount {
    background: #000000;
    color: white;
    padding: 2px 8px;
    border-radius: 0;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Pricing Plans */
.pricing-plans {
    padding: 80px 0;
    background: #f8f9fa;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    border: 3px solid #e74c3c;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 20px 0 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: #666;
}

.card-header p {
    color: #666;
    font-size: 1rem;
}

.card-features {
    margin-bottom: 2rem;
}

.card-features ul {
    list-style: none;
    padding: 0;
}

.card-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features i {
    color: #27ae60;
    font-size: 1.1rem;
    width: 20px;
}

.card-footer {
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-outline:hover {
    background: #e74c3c;
    color: white;
}

/* Service Packages */
.service-packages {
    padding: 80px 0;
}

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

.service-package {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.package-icon i {
    font-size: 2rem;
    color: white;
}

.service-package h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.package-price {
    margin-bottom: 1.5rem;
}

.package-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}

.package-price .duration {
    font-size: 1rem;
    color: #666;
}

.service-package ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.service-package li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-package li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Add-ons Section */
.add-ons {
    padding: 80px 0;
    background: #f8f9fa;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.add-on-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.add-on-item:hover {
    transform: translateY(-5px);
}

.add-on-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.add-on-icon i {
    font-size: 1.5rem;
    color: white;
}

.add-on-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.add-on-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.add-on-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e74c3c;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .add-ons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-header h1 {
        font-size: 2rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .add-ons-grid {
        grid-template-columns: 1fr;
    }

    .pricing-toggle-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

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

.pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Hover effects for toggle */
.pricing-toggle:hover .slider {
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

/* Price transition animation */
.amount {
    transition: all 0.3s ease;
}

.amount.switching {
    transform: scale(1.1);
    color: #e74c3c;
}
