/* ======================= TERMS & CONDITIONS PAGE STYLES ======================= */

/* -------------------- Hero Banner -------------------- */
.terms-hero-banner {
    /* Layered a 50% opacity black gradient over the image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.836), rgba(0, 0, 0, 0.788)), 
                      url('../images/Images-2/terms.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 */
}


.fleet-header-row {
   display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 40px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    /* Thin separator line from screenshot */
    max-width: 1700px;
    margin: 0 auto;
}



.mini-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e6e6e6;
    width: 25%;
    font-weight: 500;
}

.fleet-title-center {
    width: 50%;
    text-align: center;
}

.fleet-title-center h3 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.fleet-header-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #e7e7e7;
    width: 25%;
    text-align: right;
}


/* --- 3. MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .fleet-header-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .mini-tag, .fleet-title-center, .fleet-header-desc {
        width: 100%;
        text-align: center;
    }


    .fleet-title-center h3 { font-size: 32px; }
}

/* --- PREMIUM TERMS & CONDITIONS STYLES --- */
.premium-terms-section {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 5%;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

/* Header Layout (Matching your screenshot) */
.terms-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 40px;
}

.side-label {
    flex: 1;
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.center-title {
    flex: 2;
    text-align: center;
}

.center-title h2 {
    font-family: 'Playfair Display', Georgia, serif; /* Luxury Serif */
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.center-title p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.hero-phone {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #d4af37; /* Subtle gold accent */
}

.side-desc {
    flex: 1;
    font-size: 14px;
    color: #666;
    text-align: right;
    line-height: 1.6;
}

/* Card Stack Layout */
.terms-content-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.terms-grey-card {
    background-color: #f6f6f6; /* Matches your testimonial grey */
    border-radius: 12px;
    padding: 40px 50px;
    transition: transform 0.3s ease;
}

.terms-grey-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.terms-grey-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-grey-card p, .terms-grey-card li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Inner Grid for wider cards */
.card-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 8px;
}

.terminal-info {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.highlight-text {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: #c62828; /* Subtle red for emphasis */
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .terms-header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .side-label, .side-desc {
        text-align: center;
    }

    .card-inner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .terms-grey-card {
        padding: 30px 20px;
    }
}