/* =========================================================
   GALAXY MAKEOVERS — BRIDAL SERVICE PAGES
   Shared CSS for all individual Bridal services
   ========================================================= */

.bridal-service-page {
    --bridal-gold: #b48b6b;
    --bridal-gold-light: #dbbca4;
    --bridal-dark: #1e1a16;
    --bridal-text: #3d322b;
    --bridal-muted: #6f5d50;
    --bridal-light: #fcf9f6;
    --bridal-soft: #f5efe8;
    --bridal-border: rgba(180, 139, 107, 0.20);

    color: var(--bridal-text);
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   COMMON CONTAINER
   ========================================================= */

.bridal-service-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.bridal-service-hero {
    min-height: clamp(360px, 44vh, 440px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(30, 26, 22, 0.88) 0%,
            rgba(30, 26, 22, 0.70) 45%,
            rgba(30, 26, 22, 0.25) 100%
        ),
        url('../images/gen/bridal_feature_banner_1788844378161.jpg')
        center center / cover no-repeat;
}


.bridal-service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(219, 188, 164, 0.18),
            transparent 35%
        );
    pointer-events: none;
}


.bridal-service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: clamp(36px, 5vw, 50px) 0;
    color: #ffffff;
}


.bridal-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 14px;

    border: 1px solid rgba(219, 188, 164, 0.45);
    border-radius: 50px;

    background: rgba(180, 139, 107, 0.18);

    color: #f3d9c4;

    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 14px;
}


.bridal-service-hero h1 {
    margin: 0 0 14px;

    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -1px;
}


.bridal-service-hero h1 span {
    color: var(--bridal-gold-light);
    font-weight: 600;
}


.bridal-service-hero p {
    max-width: 650px;

    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.86);

    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.65;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.bridal-service-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


.bridal-service-btn {
    min-height: 42px;

    padding: 10px 22px;

    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    text-decoration: none;

    font-size: 0.84rem;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.bridal-service-btn:hover {
    transform: translateY(-2px);
}


.bridal-service-btn-primary {
    background: var(--bridal-gold);
    color: #ffffff;

    box-shadow:
        0 8px 22px rgba(180, 139, 107, 0.25);
}


.bridal-service-btn-primary:hover {
    background: var(--bridal-gold-light);
    color: var(--bridal-dark);
}


.bridal-service-btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
}


.bridal-service-btn-outline:hover {
    background: #ffffff;
    color: var(--bridal-dark);
    border-color: #ffffff;
}


/* =========================================================
   INTRO SECTION
   ========================================================= */

.bridal-service-intro {
    padding: clamp(36px, 5vw, 50px) 0;
    background: #ffffff;
}


.bridal-service-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}


.bridal-service-label {
    display: inline-block;

    color: var(--bridal-gold);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 10px;
}


.bridal-service-intro h2 {
    margin: 0;

    color: var(--bridal-dark);

    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -0.5px;
}


.bridal-service-intro h2 strong,
.bridal-service-intro h2 span {
    color: var(--bridal-gold);
    font-weight: 600;
}


.bridal-service-intro-copy {
    padding-top: 5px;
}


.bridal-service-intro-copy p {
    margin: 0 0 14px;

    color: var(--bridal-muted);

    font-size: 0.92rem;
    line-height: 1.7;
}


.bridal-service-intro-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   BENEFITS SECTION
   ========================================================= */

.bridal-service-benefits-section {
    padding: clamp(36px, 5vw, 50px) 0;

    background:
        linear-gradient(
            180deg,
            var(--bridal-light) 0%,
            var(--bridal-soft) 100%
        );
}


.bridal-service-section-title {
    max-width: 650px;
    margin-bottom: 30px;
}


.bridal-service-section-title h2 {
    margin: 0 0 10px;

    color: var(--bridal-dark);

    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 300;
}


.bridal-service-section-title h2 span {
    color: var(--bridal-gold);
    font-weight: 600;
}


.bridal-service-section-title p {
    margin: 0;

    color: var(--bridal-muted);

    font-size: 0.92rem;
    line-height: 1.65;
}


.bridal-service-benefits {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


.bridal-service-benefit-card {
    position: relative;

    padding: 22px 20px;

    background: rgba(255, 255, 255, 0.86);

    border: 1px solid var(--bridal-border);
    border-radius: 18px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.bridal-service-benefit-card:hover {
    transform: translateY(-4px);

    border-color: rgba(180, 139, 107, 0.50);

    box-shadow:
        0 14px 35px rgba(75, 55, 42, 0.08);
}


.bridal-service-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(180, 139, 107, 0.16),
            rgba(219, 188, 164, 0.28)
        );

    color: var(--bridal-gold);

    font-size: 1.05rem;
}


.bridal-service-benefit-card h3 {
    margin: 0 0 8px;

    color: var(--bridal-dark);

    font-size: 1rem;
    font-weight: 600;
}


.bridal-service-benefit-card p {
    margin: 0;

    color: var(--bridal-muted);

    font-size: 0.85rem;
    line-height: 1.6;
}


/* =========================================================
   PROCESS SECTION
   ========================================================= */

.bridal-service-process {
    padding: clamp(36px, 5vw, 50px) 0;
    background: #ffffff;
}


.bridal-service-process-header {
    max-width: 650px;
    margin-bottom: 30px;
}


.bridal-service-process-header h2 {
    margin: 0 0 10px;

    color: var(--bridal-dark);

    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 300;
}


.bridal-service-process-header h2 span {
    color: var(--bridal-gold);
    font-weight: 600;
}


.bridal-service-process-header p {
    margin: 0;

    color: var(--bridal-muted);

    font-size: 0.92rem;
    line-height: 1.65;
}


.bridal-service-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.bridal-service-step {
    position: relative;

    padding: 22px 18px;

    background: var(--bridal-light);

    border-radius: 18px;

    border: 1px solid rgba(180, 139, 107, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.bridal-service-step:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(75, 55, 42, 0.07);
}


.bridal-service-number {
    display: inline-flex;

    width: 36px;
    height: 36px;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--bridal-gold),
            #8b654b
        );

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 700;
}


.bridal-service-step h3 {
    margin: 0 0 8px;

    color: var(--bridal-dark);

    font-size: 0.98rem;
    font-weight: 600;
}


.bridal-service-step p {
    margin: 0;

    color: var(--bridal-muted);

    font-size: 0.84rem;
    line-height: 1.6;
}


/* =========================================================
   INFORMATION SECTION
   ========================================================= */

.bridal-service-info {
    padding: clamp(36px, 5vw, 50px) 0;

    background:
        linear-gradient(
            180deg,
            var(--bridal-soft),
            var(--bridal-light)
        );
}


.bridal-service-info-inner {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    min-height: 380px;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 14px 40px rgba(75, 55, 42, 0.07);
}


.bridal-service-info-content {
    padding: clamp(24px, 4vw, 45px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.bridal-service-info-content h2 {
    margin: 0 0 12px;

    color: var(--bridal-dark);

    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 300;
}


.bridal-service-info-content h2 span {
    color: var(--bridal-gold);
    font-weight: 600;
}


.bridal-service-info-content p {
    margin: 0 0 14px;

    color: var(--bridal-muted);

    font-size: 0.9rem;
    line-height: 1.7;
}


.bridal-service-info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-top: 8px;
    padding: 12px 14px;

    background: rgba(180, 139, 107, 0.08);

    border-left: 3px solid var(--bridal-gold);

    border-radius: 6px;
}


.bridal-service-info-note i {
    color: var(--bridal-gold);
    margin-top: 3px;
}


.bridal-service-info-note span {
    color: var(--bridal-text);

    font-size: 0.8rem;
    line-height: 1.55;
}


.bridal-service-info-image {
    min-height: 380px;

    background:
        linear-gradient(
            180deg,
            rgba(30, 26, 22, 0.05),
            rgba(30, 26, 22, 0.20)
        ),
        url('../images/gen/bridal_feature_banner_1788844378161.jpg')
        center center / cover no-repeat;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.bridal-service-final-cta {
    padding: clamp(36px, 5vw, 50px) 0;

    background:
        linear-gradient(
            135deg,
            #1e1a16 0%,
            #2b241f 55%,
            #3b2e25 100%
        );

    text-align: center;

    position: relative;
    overflow: hidden;
}


.bridal-service-final-cta::before {
    content: "";

    position: absolute;
    width: 400px;
    height: 400px;

    top: -200px;
    right: -100px;

    border-radius: 50%;

    background: rgba(180, 139, 107, 0.12);

    pointer-events: none;
}


.bridal-service-final-cta::after {
    content: "";

    position: absolute;
    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -100px;

    border-radius: 50%;

    background: rgba(219, 188, 164, 0.07);

    pointer-events: none;
}


.bridal-service-final-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: 0 auto;
}


.bridal-service-final-content .bridal-service-label {
    color: var(--bridal-gold-light);
}


.bridal-service-final-content h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.12;
    font-weight: 300;
}


.bridal-service-final-content h2 span {
    color: var(--bridal-gold-light);
    font-weight: 600;
}


.bridal-service-final-content p {
    max-width: 600px;

    margin: 0 auto 22px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.94rem;
    line-height: 1.65;
}


.bridal-service-final-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


.bridal-service-final-btn {
    min-height: 42px;

    padding: 10px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 0.84rem;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.bridal-service-final-btn:hover {
    transform: translateY(-2px);
}


.bridal-service-book {
    background: var(--bridal-gold);
    color: #ffffff;

    box-shadow:
        0 10px 24px rgba(180, 139, 107, 0.25);
}


.bridal-service-book:hover {
    background: var(--bridal-gold-light);
    color: var(--bridal-dark);
}


.bridal-service-whatsapp {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.05);
}


.bridal-service-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .bridal-service-hero {
        min-height: 380px;

        background-position: 65% center;
    }


    .bridal-service-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .bridal-service-benefits {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .bridal-service-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .bridal-service-info-inner {
        grid-template-columns: 1fr;
    }


    .bridal-service-info-image {
        min-height: 400px;
        order: -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .bridal-service-container {
        width: 90%;
    }


    .bridal-service-hero {
        min-height: 620px;

        align-items: flex-end;

        background:
            linear-gradient(
                180deg,
                rgba(30, 26, 22, 0.28) 0%,
                rgba(30, 26, 22, 0.82) 65%,
                rgba(30, 26, 22, 0.96) 100%
            ),
            url('../images/gen/bridal_feature_banner_1788844378161.jpg')
            center center / cover no-repeat;
    }


    .bridal-service-hero-content {
        padding: 55px 0 60px;
    }


    .bridal-service-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
        letter-spacing: -0.8px;
    }


    .bridal-service-hero p {
        font-size: 0.92rem;
        line-height: 1.7;
    }


    .bridal-service-buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .bridal-service-btn {
        width: 100%;
    }


    .bridal-service-intro,
    .bridal-service-benefits-section,
    .bridal-service-process,
    .bridal-service-info {
        padding: 65px 0;
    }


    .bridal-service-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .bridal-service-benefit-card {
        padding: 25px 22px;
    }


    .bridal-service-process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .bridal-service-step {
        padding: 25px 22px;
    }


    .bridal-service-info-inner {
        border-radius: 22px;
    }


    .bridal-service-info-content {
        padding: 35px 25px;
    }


    .bridal-service-info-image {
        min-height: 330px;
    }


    .bridal-service-final-cta {
        padding: 75px 0;
    }


    .bridal-service-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .bridal-service-final-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .bridal-service-hero {
        min-height: 590px;
    }


    .bridal-service-badge {
        font-size: 0.62rem;
        letter-spacing: 1.8px;
        padding: 7px 14px;
    }


    .bridal-service-intro h2,
    .bridal-service-section-title h2,
    .bridal-service-process-header h2,
    .bridal-service-info-content h2 {
        font-size: 2rem;
    }


    .bridal-service-final-content h2 {
        font-size: 2.25rem;
    }

}