/* Pricing Page Specific Styles */

/* Hero Section */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f5f0 0%, #e8e1d4 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.pricing-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.pricing-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-hero .hero-content p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-hero .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pricing-hero .hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.pricing-hero .hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-hero .floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pricing-hero .floating-icon {
    position: absolute;
    font-size: 2rem;
    color: #e67e22;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.pricing-hero .icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.pricing-hero .icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.pricing-hero .icon-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.pricing-hero .icon-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 100px 0;
    background-color: #fff;
}

.pricing-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-button {
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #e9ecef;
    color: #495057;
}

.tab-button.active {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #f1f2f6;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #3498db;
}

.pricing-card.popular {
    border-color: #3498db;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f2f6;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.price-note {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 0.9rem;
}

.pricing-actions {
    margin-top: 25px;
}

/* Package Deals Section */
.package-deals {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #f1f2f6;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.package-card.popular {
    border-color: #3498db;
    transform: scale(1.05);
}

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

.package-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f2f6;
}

.package-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.package-price .price {
    font-size: 2.5rem;
    color: #3498db;
}

.package-price .original-price {
    font-size: 1.5rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.package-description {
    color: #7f8c8d;
    font-style: italic;
}

.package-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.package-features i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 0.9rem;
}

.package-actions {
    margin-top: 30px;
}

/* Price Calculator Section */
.price-calculator {
    padding: 100px 0;
    background-color: #fff;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select:focus {
    border-color: #3498db;
    outline: none;
}

#calculate-btn {
    margin-top: 10px;
    align-self: flex-start;
}

.calculator-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}

.result-placeholder {
    color: #95a5a6;
}

.result-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.result-content {
    width: 100%;
}

.estimated-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.estimate-note {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 4rem;
    opacity: 0.9;
}

.guarantee-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.guarantee-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* FAQ Section */
.pricing-faq {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #5d6d7e;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-hero .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-hero .hero-content {
        max-width: 100%;
    }
    
    .pricing-hero .hero-buttons {
        justify-content: center;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pricing-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular,
    .package-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover,
    .package-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .pricing-hero {
        padding: 100px 0 60px;
    }
    
    .pricing-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .pricing-cards,
    .package-cards {
        grid-template-columns: 1fr;
    }
    
    .calculator-container {
        padding: 25px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}