/* ===================================
   Pricing Page Specific Styles
   =================================== */

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-hero h2 {
    color: white;
    font-size: 3.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.5em;
    margin: 0;
    opacity: 0.95;
}

/* Main Content */
.content {
    padding: 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    margin: -60px auto 60px;
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    border: 3px solid #005a29;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95em;
    box-shadow: 0 4px 10px rgba(0, 90, 41, 0.3);
}

.pricing-card h3 {
    color: #005a29;
    font-size: 2.2em;
    margin: 20px 0;
    font-weight: 700;
}

.price-container {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 2em;
    color: #005a29;
    font-weight: 600;
    margin-top: 15px;
}

.price {
    font-size: 5em;
    color: #005a29;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1.2em;
    color: #666;
    align-self: flex-end;
    margin-bottom: 12px;
}

.pricing-description {
    font-size: 1.2em;
    line-height: 1.7;
    color: #555;
    margin: 25px 0;
}

.whats-included {
    text-align: left;
    margin: 35px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.whats-included h4 {
    color: #005a29;
    font-size: 1.5em;
    margin: 0 0 20px 0;
    text-align: center;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #005a29;
    font-size: 1.6em;
    font-weight: bold;
    line-height: 1.1;
}

/* Value Section */
.value-section {
    margin: 80px 0;
    text-align: center;
}

.value-section h3 {
    color: #005a29;
    font-size: 2.5em;
    margin-bottom: 50px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 90, 41, 0.15);
}

.value-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.value-item h4 {
    color: #005a29;
    font-size: 1.5em;
    margin: 15px 0;
    font-weight: 600;
}

.value-item p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    margin: 80px 0;
    padding: 50px 30px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    border-radius: 12px;
}

.comparison-section h3 {
    color: #005a29;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 15px;
    align-items: center;
    padding: 15px;
}

.comparison-header {
    font-weight: 600;
    border-bottom: 3px solid #005a29;
    margin-bottom: 10px;
}

.comparison-row {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.comparison-row:hover {
    background: #f8f9fa;
}

.compare-label {
    font-size: 1.15em;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.compare-column {
    text-align: center;
}

.compare-column h4 {
    font-size: 1.3em;
    margin: 0;
}

.compare-others h4 {
    color: #666;
}

.compare-us {
    background: linear-gradient(135deg, #e8f5e8, #f0f7f4);
    border-radius: 8px;
    padding: 10px;
}

.compare-us h4 {
    color: #005a29;
    font-weight: 700;
}

.compare-value {
    font-size: 1.1em;
    color: #555;
}

.compare-value.highlight {
    color: #005a29;
    font-weight: 600;
    font-size: 1.2em;
}

/* Testimonial Section */
.testimonial-section {
    margin: 80px 0;
    text-align: center;
}

.testimonial-section h3 {
    color: #005a29;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.image-rotator {
    position: relative;
    overflow: hidden;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.image-rotator img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-rotator img.active {
    opacity: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #999;
    transform: scale(1.2);
}

.dot.active {
    background: #005a29;
    width: 35px;
    border-radius: 6px;
}

/* Guarantee Section */
.guarantee-section {
    margin: 80px 0;
    padding: 50px;
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 90, 41, 0.3);
}

.guarantee-section h3 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 5em;
    margin-bottom: 25px;
}

.guarantee-text {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.guarantee-highlight {
    font-size: 1.4em;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
}

.faq-section h3 {
    color: #005a29;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid #005a29;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    color: #005a29;
    font-size: 1.4em;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 80px 0 60px;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.final-cta h3 {
    color: #005a29;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.4em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.button-primary {
    background: linear-gradient(135deg, #005a29 0%, #007a39 100%);
    color: white;
}

.button-primary:hover {
    background: linear-gradient(135deg, #003d1e 0%, #005a29 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 90, 41, 0.3);
}

.button-large {
    font-size: 1.4em;
    padding: 20px 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-hero h2 {
        font-size: 2.5em;
    }
    
    .hero-tagline {
        font-size: 1.2em;
    }
    
    .pricing-section {
        margin: -40px auto 40px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .price {
        font-size: 4em;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .compare-label {
        text-align: center;
        font-weight: 600;
        color: #005a29;
    }
    
    .image-rotator {
        height: 400px;
    }
    
    .guarantee-section {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 40px 15px;
    }
    
    .pricing-hero h2 {
        font-size: 2em;
    }
    
    .hero-tagline {
        font-size: 1.1em;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 3.5em;
    }
    
    .whats-included {
        padding: 20px;
    }
    
    .image-rotator {
        height: 300px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .button-large {
        font-size: 1.2em;
        padding: 16px 35px;
    }
}
