/* ======================= QUOTE PAGE STYLES ======================= */

/* -------------------- Quote Hero Banner -------------------- */
.quote-hero-banner {
    /* Layered a 50% opacity black gradient over the image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.856), rgba(0, 0, 0, 0.5)), 
                      url('../images/Images-2/airport.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; /* Added to ensure image is centered */
    padding: 40px 20px 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white; /* Ensures all text inside is white for better contrast */
}

.quote-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-hero-banner .tag-badge {
    /* The small white badge at the top */
    display: inline-block;
    background-color: #7a7a7a75;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 15px;
}

.quote-hero-banner h2 {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.quote-hero-banner p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}


/* -------------------- Quote Details Section (What's Included) -------------------- */
.quote-details-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* Light background for contrast */
}

/* Reusing the established section-header style */
.quote-details-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.quote-details-section .section-header h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.quote-details-section .section-header p {
    font-size: 1.1em;
    color: #555;
}


/* Info Cards Container (The two boxes) */
.quote-info-cards-container {
    max-width: 1000px;
    margin: 0 auto 50px auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.info-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #0055aa; /* Blue accent line */
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003366;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Left Card: Pricing Factors */
.info-card-pricing ul {
    list-style-type: none;
    padding: 0;
}

/* Example CSS to style the list icons */
.info-card-pricing .icon-list li {
    list-style: none; /* Remove default bullet */
    padding-left: 0;
    margin-bottom: 8px;
}

.info-card-pricing .icon-list li i {
    color: #0d47a1; /* Primary blue color for visibility */
    margin-right: 10px;
    width: 18px; /* Ensure consistent spacing */
    text-align: center;
}

.info-card-pricing ul li {
    font-size: 1rem;
    color: #333;
    padding: 8px 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

/* Custom Checkmark style */
.info-card-pricing ul li::before {
    margin-right: 10px;
    font-size: 1.2rem;
}


/* Right Card: Response Time */
.info-card-response {
    border-top-color: #4285F4; /* Lighter blue accent */
}

.info-card-response h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
}

.info-card-response h4:nth-of-type(1) { color: #28a745; /* Green for Standard */ }
.info-card-response h4:nth-of-type(2) { color: #dc3545; /* Red for Urgent */ }
.info-card-response h4:nth-of-type(3) { color: #4285F4; /* Blue for Complex */ }

.info-card-response p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}


/* Quote Form Placeholder Styling */
.quote-form-placeholder {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.quote-form-placeholder h3 {
    font-size: 2rem;
    color: #0055aa;
    margin-bottom: 10px;
}
.quote-form-placeholder p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}


/* -------------------- Responsive Adjustments -------------------- */
@media (max-width: 992px) {
    .quote-info-cards-container {
        flex-direction: column;
        gap: 20px;
    }
    .info-card {
        max-width: 100%;
    }
    
}

@media (max-width: 768px) {
    .quote-hero-banner h2 {
        font-size: 2em;
    }


    .quote-hero-banner p {
        font-size: 0.9rem;
    }
    .quote-details-section {
        padding: 50px 15px;
    }

    .quote-details-section h2 {
        font-size: 1rem;
    }
    .quote-form-placeholder {
        padding: 30px 15px;
    }
}