/* Minification failed. Returning unminified contents.
(95,1): run-time error CSS1019: Unexpected token, found '@'
 */
/* =====================================================
   Quotation.css  —  เป็นหนึ่ง โฮลดิ้ง
   Palette: Navy #8F0013 / Beige #E8E2DB / Coral #F5564E / Amber #C8C8D0
   ===================================================== */

.quotation-hero {
    background: linear-gradient(135deg, #8F0013, #A80016, #C0001A);
    color: #fff;
    padding: clamp(50px, 8vw, 90px) clamp(20px, 5vw, 60px);
    text-align: center;
    position: relative;
}

    .quotation-hero::after {
        content: "";
        position: absolute;
        bottom: 0; left: 10%; right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(200,200,208,0.5), transparent);
    }

    .quotation-hero h1 {
        font-size: clamp(28px, 4.5vw, 44px);
        margin: 0 0 14px;
        font-weight: 700;
    }

        .quotation-hero h1 .accent { color: #C8C8D0; }

    .quotation-hero p {
        font-size: clamp(14px, 1.4vw, 16px);
        max-width: 700px;
        margin: 0 auto;
        opacity: .85;
        line-height: 1.7;
    }

.quotation-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 70px) clamp(20px, 4vw, 40px);
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.step-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 4px 16px rgba(143,0,19,0.08);
    border: 1px solid #DDD8D0;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(143,0,19,0.12);
    }

.step-num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #8F0013;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
}

.step-card h5 { margin: 0 0 8px; color: #8F0013; font-weight: 600; }
.step-card p  { color: #555; font-size: 14px; line-height: 1.65; margin: 0; }

.contact-box {
    background: #fff;
    border: 1px solid #DDD8D0;
    border-left: 3px solid #C8C8D0;
    border-radius: 14px;
    padding: 30px;
    display: grid;
   /* grid-template-columns: 1fr 1fr;*/
    gap: 24px;
}

.contact-item h6 { color: #8F0013; margin: 0 0 8px; font-size: 15px; font-weight: 600; }
.contact-item p  { margin: 0; color: #555; font-size: 14px; line-height: 1.65; }
.contact-item i  { color: #C8C8D0; margin-right: 6px; }

@@media (max-width: 768px) {
    .step-grid   { grid-template-columns: 1fr; }
    .contact-box { grid-template-columns: 1fr; }
}

