/* =========================================================
   GALAXY MAKEOVERS - HAIR SERVICE PAGES
   ========================================================= */

.hair-service-page {
    background: #fffaf7;
    color: #302522;
    font-family: inherit;
}

/* HERO */
.hs-hero {
    min-height: clamp(360px, 44vh, 440px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(35, 25, 22, 0.88) 0%,
            rgba(35, 25, 22, 0.65) 45%,
            rgba(35, 25, 22, 0.20) 100%
        );
}

.hs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    width: 100%;
    margin: auto;
    padding: clamp(36px, 5vw, 50px) clamp(16px, 3vw, 30px);
}

.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;
    color: #f5d7c4;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hs-hero h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -1px;
    margin: 0 0 16px;
}

.hs-hero h1 span {
    color: #e6bfa6;
    font-weight: 700;
}

.hs-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.82);
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.65;
    margin: 0 0 22px;
}

.hs-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.hs-btn-primary {
    background: #d5a98d;
    color: #2d211d;
}

.hs-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.hs-btn-wa {
    background: #25d366;
    color: #fff;
}

.hs-btn-wa:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* INTRO */
.hs-intro {
    max-width: 900px;
    margin: auto;
    padding: clamp(36px, 5vw, 50px) 20px clamp(30px, 4vw, 40px);
    text-align: center;
}

.hs-label {
    display: inline-block;
    color: #a26f51;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hs-intro h2,
.hs-section-heading h2 {
    color: #302522;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.15;
    font-weight: 300;
    margin: 0 0 14px;
}

.hs-intro h2 span,
.hs-section-heading h2 span {
    font-weight: 700;
    color: #a26f51;
}

.hs-intro p,
.hs-section-heading p {
    color: #705f57;
    font-size: 14px;
    line-height: 1.7;
    max-width: 760px;
    margin: auto;
}

/* BENEFITS */
.hs-benefits-section {
    padding: clamp(36px, 5vw, 50px) 20px;
    background: #f7eee8;
}

.hs-section-heading {
    max-width: 850px;
    text-align: center;
    margin: 0 auto 30px;
}

.hs-benefits {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hs-card {
    background: rgba(255,255,255,.9);
    border: 1px solid #eadbd2;
    border-radius: 18px;
    padding: 22px 20px;
    transition: .3s ease;
}

.hs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(85,55,40,.08);
}

.hs-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1dfd3;
    color: #9a664a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
}

.hs-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #382a25;
}

.hs-card p {
    margin: 0;
    color: #76665f;
    font-size: 13.5px;
    line-height: 1.6;
}

/* PROCESS */
.hs-process {
    max-width: 1200px;
    margin: auto;
    padding: clamp(36px, 5vw, 50px) 20px;
}

.hs-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hs-step {
    position: relative;
    padding: 22px 18px;
    border: 1px solid #eadbd2;
    border-radius: 18px;
    background: #fff;
}

.hs-number {
    color: #b18165;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hs-step h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.hs-step p {
    margin: 0;
    color: #75655e;
    font-size: 13.5px;
    line-height: 1.6;
}

/* INFO */
.hs-info {
    background: #332621;
    color: #fff;
    padding: clamp(36px, 5vw, 50px) 20px;
    text-align: center;
}

.hs-info-inner {
    max-width: 850px;
    margin: auto;
}

.hs-info h2 {
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 300;
    margin: 0 0 14px;
}

.hs-info h2 span {
    color: #e3bda5;
    font-weight: 700;
}

.hs-info p {
    color: rgba(255,255,255,.75);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* CTA */
.hs-cta {
    padding: clamp(36px, 5vw, 50px) 20px;
    text-align: center;
    background: #fffaf7;
}

.hs-cta h2 {
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 300;
    margin: 0 0 12px;
}

.hs-cta p {
    color: #75655e;
    font-size: 14.5px;
    margin-bottom: 22px;
}

.hs-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* MOBILE */
@media (max-width: 900px) {
    .hs-hero {
        min-height: 380px;
    }
    .hs-hero-content {
        padding: 40px 20px;
    }
    .hs-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    .hs-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hs-hero {
        min-height: 360px;
    }
    .hs-hero-content {
        padding: 35px 16px;
    }
    .hs-hero h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    .hs-hero p {
        font-size: 14px;
    }
    .hs-buttons,
    .hs-cta-buttons {
        flex-direction: column;
    }
    .hs-btn {
        width: 100%;
    }
    .hs-benefits,
    .hs-process-grid {
        grid-template-columns: 1fr;
    }
    .hs-intro,
    .hs-process {
        padding-left: 16px;
        padding-right: 16px;
    }
}