/* Pricing Page Styles */

.pricing-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 2rem 0;
}

.pricing-hero-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    margin: 0 auto 2.5rem;
    /*max-width: 900px;*/
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.pricing-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #0052a3 50%, #0066cc 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.pricing-hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.pricing-hero-banner p {
    font-size: 1.35rem;
    color: #64748b;
    /*max-width: 700px;*/
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.pricing-trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pricing-trust-signals .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-trust-signals .trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.pricing-trust-signals .trust-badge::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.plan-overview {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.plan-overview h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.plan-overview p {
    font-size: 1.2rem;
    color: #64748b;
   /* max-width: 750px;*/
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-blue);
}

.pricing-card.popular {
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

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

.package-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-features {
    flex: 1;
    margin-bottom: 2rem;
}

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

.package-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.package-features li i {
    color: var(--green);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.package-features li span {
    line-height: 1.5;
}

.package-form {
    margin-top: auto;
}

.btn-purchase {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-purchase.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
}

.btn-purchase.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.btn-purchase.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-purchase.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.pricing-landlord-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 4rem auto;
    /*max-width: 900px;*/
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.pricing-landlord-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-landlord-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.pricing-landlord-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pricing-landlord-card p:last-of-type {
    margin-bottom: 0;
}

.pricing-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-info-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.pricing-info-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pricing-info-card p:last-of-type {
    margin-bottom: 0;
}

.pricing-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-info-card ul li {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-info-card ul li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-faq {
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-faq h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.pricing-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.pricing-footer p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.pricing-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.no-packages {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-packages p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section {
        padding: 100px 0 60px;
    }
    
    .pricing-header {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    
    .pricing-hero-banner {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .pricing-hero-banner h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .pricing-hero-banner p {
        font-size: 1.1rem;
    }
    
    .pricing-trust-signals {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .pricing-trust-signals .trust-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .plan-overview {
        margin-bottom: 3rem;
        padding: 2rem 1rem;
    }
    
    .plan-overview h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .plan-overview p {
        font-size: 1.05rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-landlord-card {
        padding: 2rem 1.5rem;
        margin: 3rem 1rem;
    }
    
    .pricing-landlord-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-landlord-card p {
        font-size: 1rem;
    }
    
    .pricing-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 3rem 0;
    }
    
    .pricing-info-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-info-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-info-card p {
        font-size: 0.95rem;
    }
    
    .pricing-info-card ul li {
        font-size: 0.95rem;
    }
    
    .pricing-faq {
        margin: 3rem 1rem;
    }
    
    .pricing-faq h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero-banner {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .pricing-hero-banner h1 {
        font-size: 1.875rem;
    }
    
    .pricing-hero-banner p {
        font-size: 1rem;
    }
    
    .pricing-trust-signals .trust-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .plan-overview {
        padding: 1.5rem 0.75rem;
    }
    
    .plan-overview h2 {
        font-size: 1.5rem;
    }
    
    .plan-overview p {
        font-size: 0.95rem;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-landlord-card {
        padding: 1.5rem;
        margin: 2.5rem 1rem;
    }
    
    .pricing-landlord-card h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .pricing-landlord-card p {
        font-size: 0.95rem;
    }
    
    .pricing-info-card {
        padding: 1.5rem;
    }
    
    .pricing-info-card h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .pricing-info-card p {
        font-size: 0.9rem;
    }
    
    .pricing-info-card ul li {
        font-size: 0.9rem;
        padding: 0.625rem 0;
    }
    
    .pricing-faq {
        margin: 2.5rem 1rem;
    }
    
    .pricing-faq h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

