/* =========================================
   PRICING PAGE STYLES
   ========================================= */

/* Hero Banner */
.pricing-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1592837330206-89754988fce7?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 100px;
    margin-top: -100px;
}

.pricing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 27, 19, 0.95) 0%, rgba(39, 174, 96, 0.4) 100%);
    z-index: 1;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Calculation Feature Cards */
.calc-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.calc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calc-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(39, 174, 96, 0.2);
}

.calc-feature-card:hover::before {
    opacity: 1;
}

.calc-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.calc-feature-card:hover .calc-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

/* Service Overview Cards */
.service-overview-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-overview-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-overview-card h4 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.service-overview-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-overview-card ul li {
    margin-bottom: 10px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-overview-card ul li i {
    color: var(--color-primary);
    margin-top: 5px;
    font-size: 0.85rem;
}

/* Package Comparison Cards */
.package-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.package-card.premium-tier {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.15);
}

@media (max-width: 991px) {
    .package-card.premium-tier {
        transform: scale(1);
    }
}

.package-badge {
    position: absolute;
    top: 25px;
    right: -40px;
    background: var(--color-primary);
    color: white;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.package-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.package-card h3 {
    margin-bottom: 0.5rem;
}

.package-target {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
}

.package-features {
    text-align: left;
    margin-bottom: 2.5rem;
}

.package-features li {
    margin-bottom: 15px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.package-features li i {
    color: var(--color-primary);
    margin-top: 4px;
}

/* Rental Options Grid */
.rental-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.rental-option {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rental-option:hover {
    background: white;
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.rental-option i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Glass Value Grid */
.glass-value-section {
    background-image: url('https://images.unsplash.com/photo-1588681664899-f142ff2dc9b1?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.value-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 27, 19, 0.88);
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.value-card i {
    font-size: 2rem;
    color: var(--color-accent);
}

.value-card h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}