/* Pricing Section */
/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.pricing-section {
    padding: 6rem 0;
    background-color: var(--color-light);
    font-family: var(--font-primary);
    color: var(--color-text);
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.pricing-section .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
}

.pricing-section .section-header p {
    color: var(--color-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--color-primary);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-card-header {
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    position: relative;
}

.pricing-card-header h3 {
    color: white;
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.price {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.price span {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0.2rem;
}

.pricing-card-header p {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    color: white;
}

.pricing-card-body {
    padding: 2rem 1.5rem;
    background: white;
}

.price-breakdown {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.price-breakdown h4,
.included h4,
.excluded h4 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-breakdown ul,
.included ul,
.excluded ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.price-breakdown li span {
    font-weight: 600;
    color: var(--color-primary);
}

.included,
.excluded {
    margin-bottom: 1.5rem;
}

.included li,
.excluded li {
    display: flex;
    align-items: flex-start;
    padding: 0.3rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.included li i,
.excluded li i {
    margin-right: 0.7rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.included li i {
    color: var(--color-secondary);
}

.excluded li i {
    color: #dc3545;
}

.pricing-card-footer {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--color-primary);
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(45, 80, 22, 0.05);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid var(--color-primary);
}

.pricing-note p {
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.pricing-note strong {
    color: var(--color-primary);
}

/* Contact Section */
.pricing-contact {
    background: linear-gradient(rgba(45, 80, 22, 0.05), rgba(45, 80, 22, 0.02));
    padding: 4rem 2rem;
    margin: 3rem 0;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.pricing-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-contact h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-contact p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-whatsapp, .btn-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 200px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-email {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: #25D366;
}

.btn-email:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-whatsapp i,
.btn-email i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.response-time {
    color: var(--color-text);
    font-size: 0.95rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.response-time i {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 767px) {
    .pricing-contact {
        padding: 3rem 1.5rem;
    }
    
    .pricing-contact h2 {
        font-size: 1.8rem;
    }
    
    .pricing-contact p {
        font-size: 1rem;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-whatsapp, .btn-email {
        width: 100%;
    }
    .pricing-section {
        padding: 4rem 0;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 1rem;
    }
    
    .pricing-section .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-note {
        margin: 2rem 1rem 0;
        padding: 1.2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
