/* =========================================================
   GALAXY MAKEOVERS — BEAUTY SERVICE DETAIL PAGES
   Shared stylesheet for individual Beauty services
   ========================================================= */

.beauty-service-page {
    --beauty-bg: #fcf9f6;
    --beauty-dark: #211b17;
    --beauty-muted: #756c65;
    --beauty-accent: #b48b6b;
    --beauty-accent-light: #ead8c9;
    --beauty-light: #f2e8e1;
    --beauty-white: #ffffff;

    background: var(--beauty-bg);
    color: var(--beauty-dark);
    overflow: hidden;
}

.beauty-service-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */

.beauty-service-hero {
    position: relative;
    min-height: clamp(360px, 44vh, 440px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #211b17;
}

.beauty-service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/gen/everyday_beauty_service_1788844051276.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.beauty-service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 15, 12, 0.91) 0%,
            rgba(20, 15, 12, 0.70) 42%,
            rgba(20, 15, 12, 0.25) 100%
        );
}

.beauty-service-hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(36px, 5vw, 50px) 0;
}

.beauty-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #ead8c9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.beauty-service-badge::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #d4ae91;
}

.beauty-service-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1px;
}

.beauty-service-hero h1 span {
    color: #e3c2aa;
}

.beauty-service-hero-text {
    max-width: 610px;
    margin: 0 0 22px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.65;
}

.beauty-service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.beauty-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.beauty-service-btn-primary {
    background: #ffffff;
    color: var(--beauty-dark);
}

.beauty-service-btn-primary:hover {
    background: #e7c8b0;
    transform: translateY(-2px);
}

.beauty-service-btn-outline {
    border: 1px solid rgba(255,255,255,0.55);
    color: #ffffff;
}

.beauty-service-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.beauty-service-intro {
    padding: clamp(36px, 5vw, 50px) 0;
}

.beauty-service-intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.beauty-service-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--beauty-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.beauty-service-intro h2 {
    margin: 0;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.beauty-service-intro-copy {
    color: var(--beauty-muted);
    font-size: 14px;
    line-height: 1.7;
}

.beauty-service-intro-copy p {
    margin: 0 0 14px;
}

.beauty-service-intro-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.beauty-service-benefits-section {
    padding: clamp(36px, 5vw, 50px) 0;
    background: #f2e8e1;
}

.beauty-service-section-title {
    max-width: 700px;
    margin-bottom: 30px;
}

.beauty-service-section-title h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.beauty-service-section-title p {
    margin: 0;
    color: var(--beauty-muted);
    font-size: 14px;
    line-height: 1.65;
}

.beauty-service-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.beauty-service-benefit-card {
    padding: 22px 20px;
    background: #ffffff;
    border: 1px solid #e5d9d1;
    transition: 0.3s ease;
}

.beauty-service-benefit-card:hover {
    transform: translateY(-3px);
    border-color: #d6c2b4;
}

.beauty-service-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #f1e3da;
    color: var(--beauty-accent);
    border-radius: 50%;
    font-size: 16px;
}

.beauty-service-benefit-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
}

.beauty-service-benefit-card p {
    margin: 0;
    color: var(--beauty-muted);
    font-size: 13.5px;
    line-height: 1.6;
}


/* =========================================================
   PROCESS
   ========================================================= */

.beauty-service-process {
    padding: clamp(36px, 5vw, 50px) 0;
}

.beauty-service-process-header {
    max-width: 700px;
    margin-bottom: 30px;
}

.beauty-service-process-header h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.beauty-service-process-header p {
    margin: 0;
    color: var(--beauty-muted);
    font-size: 14px;
    line-height: 1.65;
}

.beauty-service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.beauty-service-step {
    position: relative;
    padding: 22px 18px;
    min-height: auto;
    border: 1px solid #e5dad2;
    background: #ffffff;
}

.beauty-service-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--beauty-dark);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.beauty-service-step h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.beauty-service-step p {
    margin: 0;
    color: var(--beauty-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   INFORMATION BLOCK
   ========================================================= */

.beauty-service-info {
    padding: 0 0 clamp(36px, 5vw, 50px);
}

.beauty-service-info-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--beauty-dark);
    color: #ffffff;
}

.beauty-service-info-content {
    padding: clamp(25px, 4vw, 40px);
}

.beauty-service-info-content h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3.4vw, 34px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.beauty-service-info-content p {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.7;
}

.beauty-service-info-note {
    margin-top: 16px;
    padding: 12px 14px;
    border-left: 2px solid #d4ae91;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.78);
    font-size: 12.5px;
    line-height: 1.6;
}

.beauty-service-info-image {
    min-height: 320px;
    background-image: url('../images/gen/everyday_beauty_service_1788844051276.jpg');
    background-size: cover;
    background-position: center;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.beauty-service-final-cta {
    position: relative;
    padding: clamp(36px, 5vw, 50px) 0;
    background: #f2e8e1;
    text-align: center;
    overflow: hidden;
}

.beauty-service-final-cta::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(33,27,23,0.08);
    border-radius: 50%;
    top: -180px;
    left: -120px;
}

.beauty-service-final-cta::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(33,27,23,0.08);
    border-radius: 50%;
    bottom: -160px;
    right: -80px;
}

.beauty-service-final-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.beauty-service-final-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.beauty-service-final-cta p {
    max-width: 620px;
    margin: 0 auto 22px;
    color: var(--beauty-muted);
    font-size: 14px;
    line-height: 1.7;
}

.beauty-service-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.beauty-service-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 22px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.beauty-service-book {
    background: var(--beauty-dark);
    color: #ffffff;
}

.beauty-service-book:hover {
    background: #3a302a;
    transform: translateY(-2px);
}

.beauty-service-whatsapp {
    border: 1px solid #c9b4a5;
    color: var(--beauty-dark);
    background: transparent;
}

.beauty-service-whatsapp:hover {
    background: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .beauty-service-hero {
        min-height: 380px;
    }

    .beauty-service-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .beauty-service-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .beauty-service-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .beauty-service-info-inner {
        grid-template-columns: 1fr;
    }

    .beauty-service-info-image {
        min-height: 280px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .beauty-service-container,
    .beauty-service-hero-content {
        width: min(100% - 28px, 1180px);
    }

    .beauty-service-hero {
        min-height: 360px;
    }

    .beauty-service-hero-content {
        padding: 35px 0;
    }

    .beauty-service-hero h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .beauty-service-hero-text {
        font-size: 14px;
    }

    .beauty-service-buttons {
        flex-direction: column;
    }

    .beauty-service-btn {
        width: 100%;
    }

    .beauty-service-intro {
        padding: 35px 0;
    }

    .beauty-service-benefits-section {
        padding: 35px 0;
    }

    .beauty-service-benefits {
        grid-template-columns: 1fr;
    }

    .beauty-service-process {
        padding: 35px 0;
    }

    .beauty-service-process-grid {
        grid-template-columns: 1fr;
    }

    .beauty-service-step {
        min-height: auto;
    }

    .beauty-service-info {
        padding-bottom: 35px;
    }

    .beauty-service-info-content {
        padding: 25px 18px;
    }

    .beauty-service-info-image {
        min-height: 220px;
    }

    .beauty-service-final-cta {
        padding: 35px 0;
    }

    .beauty-service-final-buttons {
        flex-direction: column;
    }

    .beauty-service-final-btn {
        width: 100%;
    }
}