/**
 * Qatar Collection Page Styles
 * S1: Hero  S2: About Qatar Collection  S3: What to Expect
 * S4: Contact Form (reuses contact.css)
 */

/* ==========================================
   SECTION 1 — HERO
   ========================================== */

.qc-hero {
    padding: 96px 150px 48px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.qc-hero-title {
    font-family: Georgia, 'Canela Text', serif;
    font-size: 64px;
    font-weight: 400;
    color: #2D1F1F;
    margin: 0;
    line-height: 73px;
    text-transform: capitalize;
}

.qc-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 150%;
}

/* ==========================================
   SECTION 2 — ABOUT QATAR COLLECTION
   ========================================== */

.qc-about {
    padding: 128px 150px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.qc-about-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(45, 31, 31, 0.6);
    line-height: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0DCD3;
    text-transform: capitalize;
}

.qc-about-text {
    font-family: Georgia, 'Canela Text', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2D1F1F;
    margin: 0;
    max-width: 1406px;
    line-height: 136%;
    text-transform: capitalize;
}

/* ==========================================
   SECTION 3 — WHAT TO EXPECT
   ========================================== */

.qc-expect {
    padding: 96px 150px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Top row — title/subtitle + bullet card */
.qc-expect-top {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
}

.qc-expect-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    flex: 1 1 0%;
    min-width: 0;
}

.qc-expect-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    line-height: 28px;
    text-transform: capitalize;
}

.qc-expect-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 150%;
}

.qc-expect-bullet-card {
    background: #E0DCD3;
    /* border: 1px solid #E0DCD3; */
    border-radius: 24px;
    padding: 1px;
    flex: 1 1 0%;
    min-width: 0;
}

.qc-expect-bullet-inner {
    background: #fff;
    border-radius: 23px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qc-expect-bullet-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 150%;
    padding-left: 20px;
    position: relative;
}

.qc-expect-bullet-item::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #000;
}

.qc-expect-bullet-item strong {
    font-weight: 700;
}

/* Bottom row — three columns */
.qc-expect-columns {
    display: flex;
    flex-direction: row;
    gap: 48px;
}

.qc-expect-col {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qc-expect-col-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qc-expect-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    line-height: 28px;
    text-transform: capitalize;
}

.qc-expect-col-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 150%;
}

.qc-expect-col-card {
    background: #E0DCD3;
    /* border: 1px solid #E0DCD3; */
    border-radius: 16px;
    padding: 1px;
}

.qc-expect-col-card-inner {
    background: #fff;
    border-radius: 15px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Payment card — icon rows */
.qc-payment-card {
    gap: 0;
    padding: 0;
}

.qc-payment-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
}

.qc-payment-row + .qc-payment-row {
    border-top: 1px solid #E0DCD3;
}

.qc-payment-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.qc-payment-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2D1F1F;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE — MOBILE (max-width: 767px)
   ========================================== */

@media (max-width: 767px) {

    /* S1 — Hero */
    .qc-hero {
        padding: 48px 24px 24px;
        gap: 12px;
    }

    .qc-hero-title {
        font-size: 32px;
        line-height: 36px;
    }

    .qc-hero-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    /* S2 — About */
    .qc-about {
        padding: 96px 20px;
        gap: 24px;
    }

    .qc-about-label {
        font-size: 14px;
        line-height: 17px;
        padding-bottom: 16px;
    }

    .qc-about-text {
        font-size: 28px;
        line-height: 128%;
    }

    /* S3 — What to Expect */
    .qc-expect {
        padding: 48px 20px;
        gap: 64px;
    }

    .qc-expect-top {
        flex-direction: column;
        gap: 32px;
    }

    .qc-expect-left {
        padding: 0;
        flex: none;
        width: auto;
    }

    .qc-expect-title {
        font-size: 24px;
        line-height: 28px;
    }

    .qc-expect-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .qc-expect-bullet-card {
        border-radius: 16px;
    }

    .qc-expect-bullet-inner {
        border-radius: 15px;
        padding: 20px;
    }

    .qc-expect-bullet-item {
        font-size: 14px;
    }

    /* Bottom columns — stack vertically */
    .qc-expect-columns {
        flex-direction: column;
        gap: 48px;
    }

    .qc-expect-col {
        flex: none;
        padding: 0 4px;
    }

    .qc-expect-col-title {
        font-size: 24px;
        line-height: 28px;
    }

    .qc-expect-col-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .qc-expect-col-card {
        border-radius: 12px;
    }

    .qc-expect-col-card-inner {
        border-radius: 11px;
        padding: 20px;
        gap: 16px;
    }

    .qc-payment-row {
        padding: 14px 20px;
    }
}

/* ==========================================
   RESPONSIVE — TABLET (768px - 1023px)
   ========================================== */

@media (min-width: 768px) and (max-width: 1023px) {

    /* S1 — Hero */
    .qc-hero {
        padding: 80px 40px 48px;
    }

    .qc-hero-title {
        font-size: 48px;
        line-height: 1.1;
    }

    /* S2 — About */
    .qc-about {
        padding: 80px 40px;
    }

    .qc-about-text {
        font-size: 36px;
    }

    /* S3 — What to Expect */
    .qc-expect {
        padding: 80px 40px;
    }

    .qc-expect-top {
        flex-direction: column;
        gap: 32px;
    }

    .qc-expect-left {
        padding: 0;
        flex: none;
        width: auto;
    }

    .qc-expect-columns {
        flex-direction: column;
        gap: 40px;
    }

    .qc-expect-col-title {
        font-size: 24px;
    }

    .qc-expect-col-card-inner {
        padding: 20px;
        gap: 16px;
    }

    .qc-payment-row {
        padding: 14px 20px;
    }
}
