:root {
    --pink: #E68C9A;
    --soft-pink: #F9E4E8;
    --soft-pink-2: #FCECEF;
    --green: #6FAF8E;
    --dark: #2F2F2F;
    --muted: #6B6B6B;
    --white: #FFFFFF;
}

/* Base */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--dark);
    background: var(--white);
}

/* Topbar */
.topbar {
    background: var(--soft-pink);
    font-size: 14px;
    padding: 8px 0;
}

.topbar-left span,
.topbar-right span {
    color: var(--dark);
    font-weight: 500;
}

/* Main nav */
.main-nav {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100px;
    position: relative;
    overflow: visible;
}

/* Desktop grid layout */
.nav-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Desktop left and right groups */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 44px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 44px;
}

/* Nav links */
.main-nav .nav-link {
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.2px;
    text-decoration: none;
    padding: 10px 0;
}

.main-nav .nav-link:hover {
    color: var(--pink);
}

/* Center logo */
.center-logo {
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    position: relative;
    top: 22px;
}

.center-logo-box {
    background: var(--soft-pink-2);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.center-logo img {
    width: 170px;
    height: auto;
    display: block;
}

/* Quote button */
.btn-quote {
    background: var(--pink);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--green);
    color: var(--white);
}

/* Bulletproof guard: never show the mobile menu block on desktop */
@media (min-width: 992px) {
    .navbar-collapse.d-lg-none {
        display: none !important;
    }
    .mobile-nav-list {
        display: none !important;
    }
}

/* Hero Carousel */
.hero {
    height: 600px;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* overlay so text is readable */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(249,228,232,0.55); */
}

/* hero text wrapper */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-box {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    max-width: 620px;
}

.hero-eyebrow {
    color: var(--green);
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.hero-title {
    color: var(--dark);
    font-weight: 900;
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: var(--pink);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
}

.hero-desc {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-soft {
    background: var(--soft-pink-2);
    color: var(--dark);
    font-weight: 800;
    border-radius: 50px;
    padding: 14px 22px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

.btn-soft:hover {
    background: var(--soft-pink);
    color: var(--dark);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    color: var(--pink);
    font-weight: 800;
    letter-spacing: 0.2px;
}

.video-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: #000;
}

/* fallback image behind everything */
.video-fallback {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* iframe layer */
.video-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
}

/* subtle gradient to help text read but keep video visible */
.video-tint {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.10)
    );
}

/* content layer */
.video-overlay {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
}

.video-card {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.video-card .section-title {
    color: var(--pink);
    margin-bottom: 10px;
}

.video-card .section-subtitle {
    color: rgba(0,0,0,0.70);
    max-width: 560px;
    margin: 0 auto 18px auto;
}

/* mobile adjustments */
@media (max-width: 991px) {
    .video-section {
        height: 55vh;
    }

    .video-bg iframe {
        width: 160%;
        height: 160%;
    }

    .video-card {
        padding: 22px;
        max-width: 92%;
    }
}

/* Testimonials */
.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.testimonial p {
    color: var(--muted);
    margin: 12px 0 14px 0;
    font-size: 16px;
    line-height: 1.6;
}

.stars {
    color: #F4B400;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    background: var(--soft-pink);
    padding: 60px 0;
}

.site-footer h5 {
    font-weight: 800;
    color: var(--dark);
}

.site-footer p {
    color: var(--muted);
    margin: 0 0 8px 0;
}

.social-icons a {
    color: var(--pink);
    font-size: 22px;
    margin-right: 12px;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--green);
}

.footer-bottom {
    color: var(--muted);
    font-size: 14px;
}

/* Mobile */
@media (max-width: 991px) {

    /* Topbar stacks nicely */
    .topbar {
        font-size: 13px;
        padding: 10px 0;
    }

    .topbar .container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        line-height: 1.2;
    }

    /* Navbar becomes auto height on mobile */
    .main-nav {
        height: auto;
        padding-top: 10px;
        padding-bottom: 12px;
        min-height: 0;
    }

    /* Mobile header layout */
    .nav-grid {
        display: grid;
        grid-template-columns: 60px 1fr 60px;
        align-items: center;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    /* Hamburger button stays left and does not overlap logo */
    .navbar-toggler {
        position: static;
        margin-left: 4px;
        z-index: 1100;
    }

    /* Hide desktop groups */
    .nav-left,
    .nav-right {
        display: none !important;
    }

    /* Center logo overlaps the white nav bar like desktop */
    .center-logo {
        position: absolute;
        left: 80%;
        transform: translateX(-50%);
        z-index: 1150;
        margin: 0;
        top: -5px;
    }

    .center-logo-box {
        padding: 5px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .center-logo img {
        width: 100px;
        height: auto;
        display: block;
    }

    /* Collapse menu spacing */
    .navbar-collapse {
        padding-top: 12px;
        padding-bottom: 10px;
    }

    .mobile-nav-list {
        padding: 6px 0 10px 0;
        text-align: center;
    }

    .mobile-nav-list .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 18px;
        font-weight: 700;
    }

    .btn-quote {
        width: 100%;
        padding: 14px 18px;
    }

    /* Hero height */
    .hero,
    .hero-slide {
        height: 520px;
    }

    .hero-box {
        padding: 22px;
        max-width: 92%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section {
        padding: 55px 0;
    }

    .video-section {
        height: 52vh;
    }

    .testimonial {
        padding: 22px;
    }
}

@media (max-width: 991px) {
    .hero-slide::before {
        background: rgba(255,255,255,0.45);
    }
}

.section-soft {
    background: #FFF7F9;
}

.section-subtitle {
    color: var(--muted);
    margin-top: 10px;
    font-size: 16px;
}

/* Trust strip */
.trust-strip {
    background: var(--soft-pink-2);
    padding: 22px 0;
}

.trust-card {
    background: var(--white);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--soft-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 18px;
}

.trust-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 16px;
}

.trust-text {
    color: var(--muted);
    font-size: 14px;
}

/* Services */
.service-card {
    background: var(--white);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--soft-pink-2);
    color: var(--pink);
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.service-title {
    font-weight: 900;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.service-text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.service-list {
    padding-left: 18px;
    margin: 0;
    color: var(--dark);
}

.service-list li {
    margin-bottom: 8px;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.step-card {
    background: var(--white);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--soft-pink);
    color: var(--pink);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.step-title {
    font-weight: 900;
    margin-bottom: 4px;
}

.step-text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Gallery thumbs */
.gallery-thumb {
    width: 100%;
    padding-top: 70%;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* Final CTA */
.final-cta {
    background: var(--soft-pink);
    padding: 70px 0;
}

.final-title {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.final-text {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

/* Mobile tweaks */
@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px;
    }
}

.about-hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: #000;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.about-hero-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.30),
        rgba(0,0,0,0.10)
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-hero-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    max-width: 760px;
}

.about-hero-card h1 {
    font-weight: 900;
    color: var(--dark);
    font-size: 44px;
    line-height: 1.06;
    margin: 0 0 10px 0;
}

.about-hero-card .lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--soft-pink-2);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    color: var(--dark);
    font-size: 13px;
}

.about-pill i {
    color: var(--pink);
}

.about-photo {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.value-card {
    background: var(--white);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    height: 100%;
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--soft-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 20px;
    margin-bottom: 12px;
}

.value-title {
    font-weight: 900;
    margin: 0 0 8px 0;
    color: var(--dark);
}

.value-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.cta-band {
    background: var(--soft-pink);
    padding: 70px 0;
}

.cta-band h2 {
    font-weight: 900;
    margin: 0 0 10px 0;
}

.cta-band p {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .about-hero {
        height: 520px;
    }

    .about-hero-card {
        padding: 22px;
        max-width: 92%;
        margin: 0 auto;
        text-align: center;
    }

    .about-hero-card h1 {
        font-size: 34px;
    }

    .pill-row {
        justify-content: center;
    }
}

/* SERVICES */
.services-hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: #000;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.services-hero-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.28),
        rgba(0,0,0,0.10)
    );
}

.services-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.services-hero-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    max-width: 780px;
}

.services-hero-card h1 {
    font-weight: 900;
    color: var(--dark);
    font-size: 44px;
    line-height: 1.06;
    margin: 0 0 10px 0;
}

.services-hero-card .lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.service-grid-card {
    background: var(--white);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
}

.service-grid-card h3 {
    font-weight: 900;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.service-grid-card p {
    margin: 0 0 14px 0;
    color: var(--muted);
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--soft-pink-2);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    color: var(--dark);
    font-size: 13px;
}

.service-tag i {
    color: var(--pink);
}

.service-includes {
    background: #FFF7F9;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.service-includes h3 {
    font-weight: 900;
    margin: 0 0 12px 0;
}

.service-includes ul {
    margin: 0;
    padding-left: 18px;
    color: var(--dark);
}

.service-includes li {
    margin-bottom: 8px;
}

.pricing-note {
    background: var(--soft-pink);
    border-radius: 22px;
    padding: 26px;
}

.pricing-note h3 {
    font-weight: 900;
    margin: 0 0 10px 0;
}

.pricing-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .services-hero {
        height: 520px;
    }

    .services-hero-card {
        padding: 22px;
        max-width: 92%;
        margin: 0 auto;
        text-align: center;
    }

    .services-hero-card h1 {
        font-size: 34px;
    }
}

/* GALLERY */
.gallery-hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: #000;
}

.gallery-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.gallery-hero-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.28),
        rgba(0,0,0,0.10)
    );
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.gallery-hero-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    max-width: 820px;
}

.gallery-hero-card h1 {
    font-weight: 900;
    color: var(--dark);
    font-size: 44px;
    line-height: 1.06;
    margin: 0 0 10px 0;
}

.gallery-hero-card .lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    background: #f3f3f3;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.0),
        rgba(0,0,0,0.20)
    );
    opacity: 0;
    transition: opacity 180ms ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 220ms ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-cap {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 2;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.2px;
    opacity: 0;
    transition: opacity 180ms ease;
}

.gallery-item:hover .gallery-cap {
    opacity: 1;
}

.gallery-span-4 { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-span-6 { grid-column: span 6; aspect-ratio: 16 / 10; }
.gallery-span-3 { grid-column: span 3; aspect-ratio: 1 / 1; }

@media (max-width: 991px) {
    .gallery-hero { height: 520px; }

    .gallery-hero-card {
        padding: 22px;
        max-width: 92%;
        margin: 0 auto;
        text-align: center;
    }

    .gallery-hero-card h1 { font-size: 34px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-span-4,
    .gallery-span-6,
    .gallery-span-3 {
        grid-column: span 1;
        aspect-ratio: 1 / 1;
    }

    .gallery-cap { display: none; }
}
