/* Pricing Page Specific Styles */

/* Base Typography - Ensure consistency with main styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

/* Pricing Hero Section */
.pricing-hero {
    padding: 180px 0 80px;
    background: #F3F1EC;
    text-align: center;
}

.pricing-hero-content h1 {
    margin-bottom: 1rem;
    color: #67879F;
}

.pricing-hero-content p {
    font-size: 1.2rem;
    color: #938875;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #67879F;
}

/* Pricing Tiers Section */
.pricing-tiers {
    padding: 80px 0;
    background: #fff;
}

/* Consistent spacing for subsequent sections */
.pricing-tiers.rentals-section {
    padding: 80px 0;
}

/* Service Category Styling */
.service-category {
    text-align: center;
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.5rem;
    color: #67879F;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.category-description {
    font-size: 1.2rem;
    color: #938875;
    max-width: 600px;
    margin: 0 auto;
}

/* Rentals Section Background */
.rentals-section {
    background: #DDEBEB;
    border-top: 3px solid #67879F;
}

.rentals-section .category-title {
    color: #67879F;
}

/* Service Category Divider */
.service-category::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #DBC39D, #F3F1EC);
    margin: 20px auto 0;
    border-radius: 2px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
}

/* Rentals section: maintain consistent card width with 2 items */
.rentals-section .tiers-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.rentals-section .tiers-grid .tier-card {
    flex: 0 0 380px;
    max-width: 420px;
}

.tier-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #DDEBEB;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #67879F;
}

.tier-card.featured {
    border-color: #DBC39D;
    transform: scale(1.05);
}

.tier-card.premium {
    border-color: #938875;
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #DBC39D, #F3F1EC);
    color: #67879F;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.tier-card.premium .tier-badge {
    background: linear-gradient(135deg, #F3F1EC, #DBC39D);
    color: #67879F;
}

.tier-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tier-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DBC39D 0%, #F3F1EC 100%);
    border-radius: 2px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tier-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #67879F;
    line-height: 1.4;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.tier-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #67879F;
    font-family: 'Playfair Display', Georgia, serif;
}

.tier-card.premium .price {
    color: #67879F;
}

.price-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.tier-features {
    margin-bottom: 2.5rem;
}

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

.tier-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #938875;
}

.tier-features i {
    color: #48bb78;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tier-description {
    background: #F3F1EC;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 4px solid #67879F;
}

.tier-card.premium .tier-description {
    border-left-color: #938875;
}

.tier-description p {
    margin: 0;
    font-style: italic;
    color: #938875;
}

.tier-note {
    background: #F3F1EC;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 4px solid #67879F;
}

.tier-note p {
    margin: 0;
    font-style: italic;
    color: #938875;
}

.tier-card .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: none; /* Hide buttons temporarily */
    margin-top: auto;
}

/* Contact Section - Uses global styles from styles.css */

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

    .pricing-tiers {
        padding: 40px 0 60px;
    }

    .pricing-tiers.rentals-section {
        padding: 60px 0;
    }

    .pricing-hero-content h1 {
        font-size: 2.8rem;
    }

    .category-title {
        font-size: 2.2rem;
    }

    .service-category {
        margin-bottom: 3rem;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rentals-section .tiers-grid {
        flex-direction: column;
        align-items: center;
    }

    .rentals-section .tiers-grid .tier-card {
        flex: none;
        width: 100%;
        max-width: none;
    }

    .tier-card {
        padding: 2rem;
    }

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

    .tier-header h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }

    .contact-card {
        padding: 2rem;
    }

    .featured-card {
        transform: none;
    }

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

    .contact-decoration {
        display: none;
    }

    .trust-indicators {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 110px 0 30px;
    }

    .pricing-tiers {
        padding: 30px 0 50px;
    }

    .pricing-tiers.rentals-section {
        padding: 50px 0;
    }

    .pricing-hero-content h1 {
        font-size: 2.3rem;
    }

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

    .category-title {
        font-size: 1.9rem;
    }

    .service-category {
        margin-bottom: 2.5rem;
    }

    .tier-card {
        padding: 1.5rem;
    }

    .tier-separator {
        width: 60px;
        height: 3px;
    }

    .price {
        font-size: 1.6rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .trust-indicators {
        gap: 1.5rem;
    }
}

/* Animation for tier cards */
.tier-card {
    animation: fadeInUp 0.6s ease-out;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}