/* ============================================================
   XaaS Techs – Booking Page CSS (booking.css)
   Clean, isolated, conflict-free
============================================================ */

/* Page wrapper */
.xaas-booking {
    font-family: var(--body-font, 'Inter', sans-serif);
}

/* =============================
   HERO
============================= */
.xaas-booking-hero {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.xaas-booking-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: flex-start;
}

.xaas-booking-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
}

.xaas-booking-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
    color: #d6d6d6;
}

.xaas-booking-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.xaas-booking-benefits li {
    margin: 8px 0;
    font-size: 16px;
}

/* =============================
   BOOKING CARD
============================= */
.xaas-booking-card {
    padding: 24px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.xaas-booking-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: #fff;
}

.xaas-booking-card p {
    margin-bottom: 16px;
    color: #ccc;
}

.xaas-outlook-widget {
    background: #000;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 12px;
    border-radius: 8px;
}

.xaas-outlook-widget iframe,
.xaas-outlook-widget div {
    width: 100% !important;
}

/* =============================
   TRUST SECTION
============================= */
.xaas-booking-trust {
    padding: 60px 0;
    background: #f7f7f7;
}

.xaas-trust-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
}

.xaas-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.xaas-trust-item {
    text-align: center;
}

.xaas-trust-number {
    font-size: 48px;
    font-weight: 800;
    color: #000;
}

.xaas-trust-label {
    font-size: 15px;
    color: #444;
}

/* =============================
   CONTENT AREA
============================= */
.xaas-booking-content {
    padding: 60px 0;
}

.xaas-booking-inner-content {
    max-width: 760px;
    margin: auto;
    font-size: 17px;
    line-height: 1.7;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {

    .xaas-booking-hero-grid {
        grid-template-columns: 1fr;
    }

    .xaas-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .xaas-booking-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {

    .xaas-trust-grid {
        grid-template-columns: 1fr;
    }

}
