/**
 * Customer Care Page Styles
 * S1: Hero + Service Cards  S2: How Our Services Work
 * S3: Quick Help  S4: Our Commitment  S5: Contact Form (reuses contact.css)
 */

/* ==========================================
   SECTION 1 — HERO + SERVICE CARDS
   ========================================== */

.cc-hero {
    padding: 96px 150px 48px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cc-hero-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.cc-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #E0DCD3;
    /* border: 1px solid #E0DCD3; */
    border-radius: 24px;
    gap: 1px;
    padding: 1px;
    width: 100%;
    overflow: hidden;
}

.cc-card {
    background: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-card:first-child {
    border-radius: 23px 0 0 23px;
}

.cc-card:last-child {
    border-radius: 0 23px 23px 0;
}

.cc-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cc-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.cc-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================
   SECTION 2 — HOW OUR SERVICES WORK
   ========================================== */

.cc-services {
    padding: 96px 150px 144px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cc-services-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.cc-services-rows {
    display: flex;
    flex-direction: column;
}

.cc-service-row {
    display: flex;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid #E0DCD3;
}

.cc-service-row:first-child {
    border-top: 1px solid #E0DCD3;
}

.cc-service-row-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2D1F1F;
    flex: 0 0 50%;
    line-height: 1.4;
    text-transform: uppercase;
}

.cc-service-row-desc {
    flex: 0 0 50%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2D1F1F;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================
   SECTION 3 — QUICK HELP
   ========================================== */

.cc-quick-help {
    background: #2D1F1F;
    padding: 96px 150px;
}

.cc-quick-help-inner {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.cc-quick-help-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.cc-quick-help-title {
    font-family: Georgia, 'Canela Text', serif;
    font-size: 64px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-transform: capitalize;
}

.cc-quick-help-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.cc-quick-help-cards {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    min-width: 0;
}

.cc-quick-help-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-quick-help-card:last-child {
    border-right: none;
}

.cc-quick-help-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.cc-quick-help-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.cc-quick-help-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 1);
    color: #2D1F1F;
    border: none;
    border-radius: 900px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s;
    align-self: flex-start;
}

.cc-quick-help-card-btn:hover {
    opacity: 0.85;
}

/* ==========================================
   SECTION 4 — OUR COMMITMENT
   ========================================== */

.cc-commitment {
    padding: 128px 150px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cc-commitment-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(45, 31, 31, 0.6);
    line-height: 1.2;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0DCD3;
}

.cc-commitment-text {
    font-family: Georgia, 'Canela Text', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2D1F1F;
    margin: 0;
    max-width: 1174px;
    line-height: 1.3;
    text-transform: capitalize;
}

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

@media (max-width: 767px) {

    /* S1 — Hero + Cards */
    .cc-hero {
        padding: 48px 24px;
        gap: 32px;
    }

    .cc-hero-title {
        font-size: 32px;
    }

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

    .cc-cards-container {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .cc-card {
        padding: 20px;
    }

    .cc-card:first-child {
        border-radius: 15px 15px 0 0;
    }

    .cc-card:last-child {
        border-radius: 0 0 15px 15px;
    }

    .cc-card-icon {
        width: 28px;
        height: 28px;
        stroke-width: 1.8;
    }

    .cc-card-title {
        font-size: 18px;
    }

    .cc-card-desc {
        font-size: 14px;
    }

    /* S2 — Services */
    .cc-services {
        padding: 48px 24px;
        gap: 32px;
    }

    .cc-services-title {
        font-size: 24px;
    }

    .cc-service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 0;
    }

    .cc-service-row-title {
        flex: none;
        font-size: 18px;
    }

    .cc-service-row-desc {
        flex: none;
        font-size: 14px;
    }

    /* S3 — Quick Help */
    .cc-quick-help {
        padding: 48px 24px;
    }

    .cc-quick-help-inner {
        flex-direction: column;
        gap: 32px;
    }

    .cc-quick-help-title {
        font-size: 32px;
    }

    .cc-quick-help-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .cc-quick-help-cards {
        grid-template-columns: 1fr;
        border-radius: 16px;
        border-color: rgba(255, 255, 255, 0.15);
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }

    .cc-quick-help-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 24px;
    }

    .cc-quick-help-card:last-child {
        border-bottom: none;
        border-right: none !important;
    }

    .cc-quick-help-card-title {
        font-size: 18px;
    }

    .cc-quick-help-card-desc {
        font-size: 14px;
    }

    .cc-quick-help-card-btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    /* S4 — Commitment */
    .cc-commitment {
        padding: 64px 24px;
        gap: 20px;
    }

    .cc-commitment-label {
        font-size: 14px;
        padding-bottom: 16px;
    }

    .cc-commitment-text {
        font-size: 28px;
        line-height: 128%;
    }
}

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

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

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

    .cc-hero-title {
        font-size: 48px;
    }

    .cc-cards-container {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 20px;
    }

    .cc-card:first-child {
        border-radius: 19px 0 0 0;
    }

    .cc-card:nth-child(2) {
        border-radius: 0 19px 0 0;
    }

    .cc-card:nth-child(3) {
        border-radius: 0 0 0 19px;
    }

    .cc-card:last-child {
        border-radius: 0 0 19px 0;
    }

    /* S2 — Services */
    .cc-services {
        padding: 80px 40px;
    }

    .cc-service-row-title {
        min-width: 220px;
        font-size: 20px;
    }

    /* S3 — Quick Help */
    .cc-quick-help {
        padding: 80px 40px;
    }

    .cc-quick-help-inner {
        flex-direction: column;
        gap: 40px;
    }

    .cc-quick-help-title {
        font-size: 48px;
    }

    .cc-quick-help-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    /* S4 — Commitment */
    .cc-commitment {
        padding: 80px 40px;
    }

    .cc-commitment-text {
        font-size: 36px;
    }
}
