/* Page Specific Styles for Premium Feel */

/* 1. Navbar Fix: Force Dark Text on White Background for this page */
.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    /* Sticky ensures it renders in flow */
    top: 0;
}

.navbar .nav-links a {
    color: var(--dark) !important;
}

.hamburger .bar {
    background-color: var(--dark) !important;
}

/* Hero Overrides */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('https://res.cloudinary.com/dc9kw1i5z/image/upload/f_auto,q_auto/v1777529390/LVP/img-hero_installation.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
    padding-bottom: 60px;
    /* Space for fade */
    margin-top: 0;
}

/* White Fade Effect at Bottom of Header */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #ffffff 10%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 3;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 5% 80px 5%;
    background: #ffffff;
}

.section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.section-header .sub-label {
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--lime);
}

.pricing-card.highlight {
    border: 2px solid var(--lime);
    transform: scale(1.02);
    z-index: 2;
}

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

/* Fix Italics - Ensure ALL pricing text is normal style */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--lime);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    font-style: normal !important;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    min-height: 60px;
    font-style: normal !important;
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-style: normal !important;
}

.price-tag span {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 400;
}

.price-desc {
    color: var(--dark);
    font-size: 1rem;
    font-style: normal !important;
    margin-bottom: 30px;
    min-height: 50px;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 0.95rem;
    font-style: normal !important;
}

.pricing-features i {
    color: var(--lime);
    margin-top: 4px;
}

.btn-price {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    background: var(--dark);
    color: var(--white);
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-style: normal !important;
    text-transform: uppercase;
}

.pricing-card:hover .btn-price,
.pricing-card.highlight .btn-price {
    background: var(--lime);
}

/* Consultation Section - Updated */
.consult-section {
    background: var(--white);
    padding: 80px 5%;
    border-top: 1px solid #eee;
}

.consult-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.consult-header {
    margin-bottom: 40px;
}

.consult-header h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.consult-header p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
}

.btn-schedule {
    background-color: var(--lime);
    color: white;
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-schedule:hover {
    background-color: var(--lime-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 12px rgba(236, 94, 42, 0.4);
}

/* Booking Placeholder (Replaces Blocked Iframe) */
.booking-placeholder {
    width: 100%;
    min-height: 400px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #fcfcfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.booking-placeholder i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

.booking-placeholder h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.booking-placeholder p {
    color: var(--gray-text);
    max-width: 400px;
    margin-bottom: 30px;
}

/* Cost Info Section */
.cost-info-section {
    padding: 80px 5%;
    background: #f2f5f7;
    margin-top: 60px;
}

.cost-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* 3. Left Align Header */
.cost-info-section .section-header {
    text-align: left !important;
    margin-bottom: 40px;
}

.info-block {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--lime);
}

.info-block h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-block h3 i {
    color: var(--lime);
    font-size: 1.4rem;
}

.info-block p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-block a {
    color: var(--lime);
    font-weight: 600;
    transition: 0.3s;
}

.info-block a:hover {
    color: var(--lime-hover);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   FAQ SECTION STYLES - REMOVED FOR STANDARD GRID
========================================= */
