.home-hero-mobilebar {
    display: none;
}
.mobilebar-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.mobilebar-text {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    margin: 0 8px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
@media (max-width: 991.98px) {
    .home-hero-mobilebar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 48px;
        background: transparent;
        z-index: 1100;
        position: relative;
        padding: 0;
    }
    .mobilebar-logo {
        width: 32px;
        height: 32px;
    }
    .mobilebar-text {
        font-size: 22px;
        margin: 0 8px;
    }
    .mobile-menu-toggle {
        display: flex;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
        margin: 0;
        position: static;
    }
    .desktop-brand {
        display: none !important;
    }
}
/* Mobile Menu Styles */
/* Hamburger button smaller and right of logo */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1100;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    position: static;
}
.hamburger {
    display: block;
    width: 20px;
    height: 2.5px;
    background: #fff;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 20px;
    height: 2.5px;
    background: #fff;
    position: absolute;
    left: 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger::before {
    top: -7px;
}
.hamburger::after {
    top: 7px;
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background: rgba(0,0,0,0.97);
    z-index: 1200;
    padding: 80px 32px 32px 32px;
    gap: 24px;
    align-items: flex-start;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}
.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    margin-left: auto;
    margin-right: auto;
    padding: 11px 18px;
    align-self: center;
    min-width: 170px;
    border: 1px solid #25d366;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, #25d366 0%, #1ebe5d 52%, #25d366 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-menu-whatsapp:hover,
.mobile-menu-whatsapp:focus-visible {
    animation: whatsapp-hover-shift 1.1s ease-in-out infinite alternate;
    color: #ffffff;
    border-color: #128c7e;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
    transform: translateY(-1px);
    outline: none;
}

@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: flex;
        position: static;
        margin-left: 10px;
        margin-right: 0;
        align-self: center;
    }
    .home-hero-brand {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .home-hero-nav-group.home-hero-left,
    .home-hero-nav-group.home-hero-right {
        display: none !important;
    }
    .mobile-menu {
        display: flex;
        opacity: 0;
        pointer-events: none;
        width: 50vw;
        min-width: 220px;
        max-width: 100vw;
    }
    .mobile-menu.open {
        opacity: 1;
        pointer-events: auto;
    }
}
/********** Template CSS **********/
:root {
    --primary: #ffffff;
    --secondary: #9f9f9f;
    --light: #111111;
    --dark: #000000;
}

body {
    background: var(--dark);
    color: var(--primary);
}

body a,
body a:visited {
    color: inherit;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--primary) !important;
}

.product-item:hover * {
    color: var(--light);
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #111111;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

/*** Home Hero ***/
.lamiya-body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.home-hero {
    position: relative;
    min-height: 85vh;
    padding: 28px 34px 64px;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
}

.home-hero,
.home-hero * {
    box-sizing: border-box;
}

.home-hero a,
.home-hero a:visited,
.home-hero a:hover,
.home-hero a:focus,
.home-hero a:active {
    color: #ffffff;
}

.home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.95);
}

.home-hero-nav {
    position: fixed;
    top: 14px;
    left: 34px;
    right: 34px;
    z-index: 1000;
    max-width: none;
    margin: 0;
    padding: 16px 26px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.home-hero-nav-group {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.home-hero-left {
    justify-content: flex-start;
}

.home-hero-right {
    justify-content: flex-end;
}

.home-hero-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-hero-link:hover,
.home-hero-link.is-active {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.home-hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
}

.home-hero-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: block;
    object-fit: contain;
}

.home-hero-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 1;
}

.home-hero-content {
    max-width: 1288px;
    margin: 172px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-hero-copy {
    width: min(100%, 1140px);
}

.home-hero-kicker {
    width: min(100%, 920px);
    margin: 8px auto 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.home-hero-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(78px, 8.8vw, 160px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0;
    color: #ffffff !important;
}

.home-hero-media {
    max-width: 1288px;
    margin: 108px auto 0;
}

.home-hero-image-wrap {
    overflow: hidden;
    border-radius: 30px;
}

.home-hero-image {
    display: block;
    width: 100%;
    min-height: 280px;
    max-height: 540px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-image-wrap:hover .home-hero-image {
    transform: scale(1.06);
}

.home-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
    padding: 0 16px 10px;
    min-width: 260px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.95);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-hero-cta:hover {
    color: #ffffff;
}

@media (max-width: 1300px) {
    .home-hero {
        padding: 24px 24px 56px;
    }

    .home-hero-nav {
        left: 24px;
        right: 24px;
        padding: 14px 22px;
    }

    .home-hero-nav-group {
        gap: 14px;
    }

    .home-hero-link {
        font-size: 13px;
    }

    .home-hero-brand-text {
        font-size: 34px;
    }

    .home-hero-title {
        font-size: clamp(68px, 9.8vw, 136px);
    }

    .home-hero-kicker {
        width: min(100%, 820px);
    }

    .home-hero-media {
        margin-top: 88px;
    }

    .home-hero-cta {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .home-hero {
        min-height: auto;
        padding: 18px 16px 40px;
    }

    .home-hero-nav {
        top: 10px;
        left: 16px;
        right: 16px;
        padding: 12px 14px;
        grid-template-columns: 1fr;
        row-gap: 14px;
        border-radius: 26px;
    }

    .home-hero-brand {
        justify-self: center;
        order: -1;
    }

    .home-hero-nav-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .home-hero-link {
        font-size: 12px;
    }

    .home-hero-logo {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .home-hero-brand-text {
        font-size: 24px;
    }

    .home-hero-content {
        margin-top: 138px;
        padding: 0;
    }

    .home-hero-kicker {
        font-size: 12px;
        width: 100%;
        margin-top: 14px;
        text-align: center;
    }

    .home-hero-title {
        font-size: clamp(52px, 13vw, 74px);
        line-height: 0.94;
    }

    .home-hero-media {
        margin-top: 52px;
    }

    .home-hero-image-wrap {
        border-radius: 22px;
    }

    .home-hero-cta {
        min-width: 220px;
        margin-top: 26px;
        padding: 0 12px 9px;
        font-size: 13px;
    }
}

/*** Home Gallery ***/
.gallery-wrap {
    padding: 56px 0 72px;
}

.gallery-wrap .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 56px !important;
    padding-right: 56px !important;
}

.gallery-wrap .row {
    --bs-gutter-x: 48px;
    --bs-gutter-y: 48px;
}

.gallery-tile {
    border-radius: 28px;
    overflow: hidden;
    background: #111111;
    aspect-ratio: 2 / 2.5;
}

.gallery-tile .luxury-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .gallery-wrap {
        padding: 40px 0 52px;
    }

    .gallery-wrap .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .gallery-wrap .row {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 18px;
    }

    .gallery-tile {
        border-radius: 22px;
        aspect-ratio: 3 / 4;
    }
}

/*** Detail Feature ***/
.about-story,
.about-team {
    padding: 120px 34px 0;
    background: #000000;
    color: #ffffff;
}

.about-team {
    padding-top: 136px;
}

.about-section-shell {
    max-width: 1288px;
    margin: 0 auto;
}

.about-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
    align-items: start;
    gap: 48px 64px;
}

.about-section-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(72px, 8vw, 118px);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: 0;
    color: #ffffff;
}

.about-section-copy {
    max-width: 540px;
    padding-top: 18px;
}

.about-section-copy p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.42;
    color: #ffffff;
}

.about-section-copy p + p {
    margin-top: 24px;
}

.about-story-media {
    margin-top: 42px;
}

.about-story-image {
    display: block;
    width: 100%;
    height: clamp(340px, 46vw, 540px);
    border-radius: 32px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-story-media:hover .about-story-image {
    transform: scale(1.06);
}

.about-team-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    gap: 32px;
    max-width: 360px;
    margin: 88px auto 0;
}

.about-team-card {
    overflow: hidden;
    border-radius: 24px;
    background: #0d0d0d;
}

.about-team-photo {
    display: block;
    width: 100%;
    aspect-ratio: 0.84 / 1;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-team-card:hover .about-team-photo {
    transform: scale(1.06);
}

.about-team-name {
    padding: 18px 20px 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: #ffffff;
}

@media (max-width: 1300px) {
    .about-story,
    .about-team {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-section-head {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
        gap: 40px 48px;
    }

    .about-section-copy p {
        font-size: 17px;
    }
}

@media (max-width: 991.98px) {
    .about-story,
    .about-team {
        padding: 76px 16px 0;
    }

    .about-team {
        padding-top: 84px;
    }

    .about-section-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section-title {
        font-size: clamp(52px, 14vw, 68px);
        line-height: 0.96;
    }

    .about-section-copy {
        max-width: none;
        padding-top: 0;
    }

    .about-section-copy p {
        font-size: 15px;
        line-height: 1.58;
    }

    .about-story-media {
        margin-top: 24px;
    }

    .about-story-image {
        height: 260px;
        border-radius: 20px;
    }

    .about-team-grid {
        max-width: 300px;
        margin-top: 36px;
    }

.about-team-card {
    border-radius: 20px;
}

    .about-team-name {
        font-size: 28px;
        padding: 16px 18px 20px;
    }
}

/*** Packages Section ***/
.about-packages {
    padding: 136px 34px 0;
    background: #000000;
    color: #ffffff;
}

.about-packages-shell {
    max-width: 1288px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 676px);
    gap: 36px 72px;
    align-items: start;
}

.about-packages-intro {
    position: sticky;
    top: 88px;
    padding-top: 10px;
}

.about-packages-kicker {
    margin: 0 0 30px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
}

.about-packages-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(88px, 10vw, 170px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0;
    color: #ffffff;
}

.about-packages-stack {
    position: relative;
    padding-top: 190px;
    padding-bottom: 120px;
}

.package-card {
    position: sticky;
    padding: 28px 22px 40px;
    border-radius: 22px;
    background: #f4f2ef;
    color: #121212;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    will-change: transform;
    scroll-margin-top: 120px;
}

.package-card[data-card-link] {
    cursor: pointer;
}

.package-card[data-card-link]:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 4px;
}

.package-card + .package-card {
    margin-top: 42px;
}

.package-card-wedding {
    z-index: 1;
    top: 220px;
}

.package-card-haldi {
    z-index: 2;
    top: 160px;
}

.package-card-birthday {
    z-index: 3;
    top: 100px;
}

.package-card-title {
    margin: 0 0 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 4vw, 62px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: 0;
    color: #111111;
}

.package-card-title a {
    color: inherit;
    text-decoration: none;
}

.package-card-body {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.package-card-media {
    overflow: hidden;
    background: #ddd7d0;
}

.package-card-media-link {
    display: block;
}

.package-card-media-rounded {
    border-radius: 22px;
}

.package-card-media-arch {
    border-radius: 999px 999px 0 0;
}

.package-card-image {
    display: block;
    width: 100%;
    height: 248px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.package-card:hover .package-card-image {
    transform: scale(1.06);
}

.package-card-copy {
    padding-top: 14px;
}

.package-card-heading {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    color: #171717;
}

.package-card-text {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.52;
    text-transform: uppercase;
    color: #1b1b1b;
}

@media (max-width: 1300px) {
    .about-packages {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-packages-shell {
        gap: 32px 42px;
        grid-template-columns: minmax(240px, 0.9fr) minmax(0, 640px);
    }

    .about-packages-stack {
        padding-top: 150px;
        padding-bottom: 96px;
    }
}

@media (max-width: 991.98px) {
    .about-packages {
        padding: 84px 16px 0;
    }

    .about-packages-shell {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-packages-intro {
        position: static;
        padding-top: 0;
        text-align: left;
    }

    .about-packages-kicker {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .about-packages-title {
        font-size: clamp(56px, 16vw, 90px);
    }

    .about-packages-stack {
        padding-top: 8px;
        padding-bottom: 160px;
    }

    .package-card {
        position: sticky;
        padding: 18px 16px 24px;
        border-radius: 20px;
    }

    .package-card + .package-card {
        margin-top: 28px;
    }

    .package-card-wedding {
        z-index: 1;
        top: 168px;
    }

    .package-card-haldi {
        z-index: 2;
        top: 126px;
    }

    .package-card-birthday {
        z-index: 3;
        top: 84px;
    }

    .package-card-title {
        margin-bottom: 14px;
        font-size: clamp(30px, 8.5vw, 40px);
    }

    .package-card-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .package-card-image {
        height: 196px;
    }

    .package-card-copy {
        padding-top: 0;
    }

    .package-card-heading {
        font-size: 15px;
    }

    .package-card-text {
        font-size: 13px;
        line-height: 1.5;
    }
}

/*** Final CTA ***/
.about-final-cta {
    padding: 132px 34px 92px;
    background: #000000;
    color: #ffffff;
}

.about-final-cta-shell {
    max-width: 1288px;
    margin: 0 auto;
    text-align: center;
}

.about-final-cta-kicker {
    margin: 0 0 26px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
}

.about-final-cta-title {
    margin: 0 auto;
    max-width: 1220px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(74px, 8.2vw, 132px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0;
    color: #ffffff;
}

.about-final-cta-title span {
    display: block;
}

.about-final-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
    padding: 12px 32px;
    min-width: 168px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.about-final-cta-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.about-final-cta-star {
    font-size: 18px;
    line-height: 1;
}

.about-final-cta-gallery {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.05fr;
    align-items: end;
    gap: 42px;
    max-width: 980px;
    margin: 58px auto 0;
}

.about-final-cta-photo {
    overflow: hidden;
    border-radius: 28px;
}

.about-final-cta-photo-left {
    transform: translateY(-8px);
}

.about-final-cta-photo-center {
    transform: translateY(52px);
}

.about-final-cta-photo-right {
    transform: translateY(-10px);
}

.about-final-cta-image {
    display: block;
    width: 100%;
    height: 244px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.about-final-cta-photo-right .about-final-cta-image {
    filter: grayscale(1);
}

.about-final-cta-photo:hover .about-final-cta-image {
    transform: scale(1.06);
}

/*** Contact Page ***/
.contact-lamiya-page {
    min-height: 100vh;
    padding: 0 34px 96px;
    background: #000000;
    color: #ffffff;
}

.contact-lamiya-shell {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 112px;
}

.contact-lamiya-head {
    text-align: center;
}

.contact-lamiya-kicker {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
}

.contact-lamiya-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(88px, 9.2vw, 166px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0;
    color: #ffffff;
}

.contact-lamiya-form {
    margin-top: 84px;
}

.contact-lamiya-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
}

.contact-lamiya-field {
    min-width: 0;
}

.contact-lamiya-field-half {
    grid-column: span 1;
}

.contact-lamiya-field-full {
    grid-column: 1 / -1;
}

.contact-lamiya-label {
    display: block;
    margin: 0 0 6px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
}

.contact-lamiya-label span {
    color: #f7d7a4;
}

.contact-lamiya-input {
    width: 100%;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 10px;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.contact-lamiya-input:focus {
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.03);
}

.contact-lamiya-phone {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.contact-lamiya-phone:focus-within {
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.03);
}

.contact-lamiya-prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.contact-lamiya-input-phone {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.contact-lamiya-input-phone:focus {
    border: 0;
    background: transparent;
}

.contact-lamiya-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='white' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
}

.contact-lamiya-select option {
    color: #000000;
}

.contact-lamiya-textarea {
    height: 46px;
    min-height: 46px;
    padding-top: 12px;
    resize: vertical;
}

.contact-lamiya-submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.contact-lamiya-submit {
    min-width: 372px;
    height: 30px;
    border: 0;
    border-radius: 9px;
    background: #f4f4f4;
    color: #000000;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.contact-lamiya-submit:hover {
    transform: translateY(-1px);
    background: #ffffff;
}

.contact-lamiya-whatsapp-wrap {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.contact-lamiya-whatsapp {
    min-width: 372px;
    height: 30px;
    border: 1px solid #25d366;
    border-radius: 9px;
    background: linear-gradient(135deg, #25d366 0%, #1ebe5d 52%, #25d366 100%);
    background-size: 200% 200%;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-lamiya-whatsapp:hover,
.contact-lamiya-whatsapp:focus-visible {
    animation: whatsapp-hover-shift 1.1s ease-in-out infinite alternate;
    transform: translateY(-1px);
    color: #ffffff;
    border-color: #128c7e;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
    outline: none;
}

@media (max-width: 1300px) {
    .contact-lamiya-page {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 991.98px) {
    .contact-lamiya-page {
        padding: 0 16px 72px;
    }

    .contact-lamiya-shell {
        padding-top: 94px;
    }

    .contact-lamiya-kicker {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .contact-lamiya-title {
        font-size: clamp(52px, 14vw, 80px);
    }

    .contact-lamiya-form {
        margin-top: 40px;
    }

    .contact-lamiya-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-lamiya-field-half,
    .contact-lamiya-field-full {
        grid-column: auto;
    }

    .contact-lamiya-label {
        margin-bottom: 8px;
        font-size: 10px;
    }

    .contact-lamiya-input {
        height: 44px;
        padding: 0 15px;
        border-radius: 12px;
        font-size: 14px;
    }

    .contact-lamiya-phone {
        grid-template-columns: 58px minmax(0, 1fr);
        border-radius: 12px;
    }

    .contact-lamiya-prefix {
        height: 44px;
        font-size: 13px;
    }

    .contact-lamiya-textarea {
        height: 120px;
        min-height: 120px;
        padding-top: 14px;
    }

    .contact-lamiya-submit {
        width: 100%;
        min-width: 0;
        max-width: 360px;
        height: 42px;
        border-radius: 999px;
        font-size: 11px;
    }

    .contact-lamiya-whatsapp {
        width: 100%;
        min-width: 0;
        max-width: 360px;
        height: 42px;
        border-radius: 999px;
        font-size: 11px;
    }
}

.contact-social-section {
    padding: 0 34px 112px;
    background: #000000;
    color: #ffffff;
}

.contact-social-shell {
    max-width: 1140px;
    margin: 0 auto;
}

.contact-social-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.contact-social-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    background: #111111;
}

.contact-social-image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.contact-social-card-right .contact-social-image {
    filter: grayscale(1);
}

.contact-social-card:hover .contact-social-image {
    transform: scale(1.06);
}

.contact-social-copy {
    margin-top: -36px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-social-title {
    display: inline-block;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(74px, 7.8vw, 132px);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: 0;
    color: #ffffff;
    text-decoration: none;
}

.contact-social-title:hover {
    color: #ffffff;
}

.contact-social-handle {
    display: block;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.1;
}

@media (max-width: 1300px) {
    .contact-social-section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 991.98px) {
    .contact-social-section {
        padding: 6px 16px 80px;
    }

    .contact-social-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: start;
    }

    .contact-social-card {
        border-radius: 18px;
    }

    .contact-social-image {
        height: 300px;
    }

    .contact-social-copy {
        margin-top: 22px;
    }

    .contact-social-title {
        font-size: clamp(42px, 12vw, 60px);
        line-height: 0.94;
    }

    .contact-social-handle {
        margin-top: 14px;
        font-size: 16px;
    }
}

@media (max-width: 1300px) {
    .about-final-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-final-cta-gallery {
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    .about-final-cta {
        padding: 72px 16px 96px;
    }

    .about-final-cta-kicker {
        margin-bottom: 14px;
        font-size: 11px;
        letter-spacing: 0.04em;
    }

    .about-final-cta-title {
        max-width: 340px;
        font-size: clamp(42px, 11.8vw, 62px);
        line-height: 0.92;
        letter-spacing: -0.02em;
    }

    .about-final-cta-title span {
        display: block;
    }

    .about-final-cta-button {
        gap: 16px;
        margin-top: 26px;
        padding: 16px 30px;
        min-width: 286px;
        font-size: 12px;
    }

    .about-final-cta-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 12px;
        max-width: 100%;
        margin-top: 42px;
    }

    .about-final-cta-photo-left,
    .about-final-cta-photo-right {
        transform: translateY(0);
    }

    .about-final-cta-photo-center {
        transform: translateY(54px);
    }

    .about-final-cta-photo {
        border-radius: 16px;
    }

    .about-final-cta-image {
        height: 170px;
    }

    .about-final-cta-photo-center .about-final-cta-image {
        height: 206px;
    }
}

.detail-feature {
    padding: 84px 0 78px;
}

.detail-feature-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
}

.detail-feature-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 64px;
    align-items: start;
}

.detail-feature-title {
    margin-left: 60px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(80px, 7.8vw, 150px);
    font-weight: 600;
    line-height: 0.92;
    color: #ffffff;
}

.detail-feature-copy {
    padding-top: 18px;
    max-width: 520px;
    justify-self: end;
}

.detail-feature-copy p {
    margin: 0 0 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.75;
    text-transform: uppercase;
    color: #ffffff;
}

.detail-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 190px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.detail-feature-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: rgba(255, 255, 255, 0.9);
}

.detail-feature-star {
    font-size: 16px;
    line-height: 1;
}

.detail-feature-image {
    margin-top: 46px;
    height: 700px;
    border-radius: 34px;
    overflow: hidden;
    background: #111111;
}

.detail-feature-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .detail-feature {
        padding: 54px 0 56px;
    }

    .detail-feature-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .detail-feature-top {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .detail-feature-copy {
        padding-top: 0;
        max-width: none;
        justify-self: start;
    }

    .detail-feature-title {
        font-size: clamp(56px, 12vw, 86px);
        line-height: 0.95;
    }

    .detail-feature-image {
        margin-top: 28px;
        height: 340px;
        border-radius: 26px;
    }
}

/*** Live Section ***/
.live-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 240px;
    position: relative;
    z-index: 2;
    background: #000000;
}

.live-section .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.live-section .mini-title {
    margin: 0 0 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.live-section .massive-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(96px, 18vw, 260px);
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .live-section {
        min-height: 66vh;
        padding: 54px 0 170px;
    }

    .live-section .mini-title {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .live-section .massive-title {
        font-size: clamp(74px, 18vw, 118px);
        line-height: 0.95;
    }
}

/*** Services Showcase ***/
.services-showcase {
    position: relative;
    z-index: 10;
    margin-top: -148px;
    padding: 0 0 92px;
    background: transparent;
}

.services-showcase-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
    align-items: start;
}

/* GPU acceleration for smooth overlay animation */
.js-live-love-overlay .services-grid {
    will-change: transform, position;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-tile {
    position: relative;
    width: 100%;
    max-width: 390px;
    border-radius: 28px;
    overflow: hidden;
    background: #111111;
    color: #ffffff;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease-out;
}

.service-tile[data-card-link] {
    cursor: pointer;
}

.service-tile[data-card-link]:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.86);
    outline-offset: 4px;
}

.service-tile:nth-child(1):hover {
    transform: rotate(-2deg);
}

.service-tile:nth-child(2):hover {
    transform: rotate(1deg);
}

.service-tile:nth-child(3):hover {
    transform: rotate(2.5deg);
}

.service-tile-media {
    position: relative;
    aspect-ratio: 0.92 / 1;
    background: #e9e9e9;
}

.service-tile-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-tile-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0) 68%);
    pointer-events: none;
}

.service-tile-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    color: #ffffff;
}

.service-tile-title a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
}

.service-tile-media-link {
    display: block;
}

.service-tile-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    pointer-events: auto;
}

.service-tile-more:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-cta {
    position: relative;
    z-index: 1;
    margin-top: 64px;
    display: flex;
    justify-content: center;
}

.services-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.services-pill:hover {
    background: #ffffff;
    color: #000000;
    border-color: rgba(255, 255, 255, 0.95);
}

.services-pill-star {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .services-showcase {
        margin-top: -154px;
        padding: 0 0 72px;
    }

    .services-showcase-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        justify-items: center;
    }

    .service-tile {
        max-width: 340px;
        border-radius: 24px;
    }

    .service-tile-media {
        aspect-ratio: 0.84 / 1;
    }

    .service-tile-body {
        padding: 16px 16px 22px;
    }

    .service-tile-title {
        font-size: 20px;
    }

    .service-tile-more {
        margin-top: 10px;
        font-size: 10px;
    }

    .services-cta {
        margin-top: 42px;
    }
}

/*** Portfolio Slider ***/
.portfolio-slider {
    position: relative;
    z-index: 15;
    padding: 88px 0 72px;
}

.portfolio-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
    text-align: center;
}

.portfolio-kicker {
    margin: 0 0 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.portfolio-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(86px, 16vw, 220px);
    line-height: 0.86;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.portfolio-rail {
    margin-top: 34px;
    overflow: hidden;
}

.portfolio-track {
    display: flex;
    gap: 26px;
    padding: 0 56px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 56px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
}

.portfolio-track::-webkit-scrollbar {
    height: 0;
}

.portfolio-track {
    scrollbar-width: none;
}

.portfolio-track.is-wrapping {
    scroll-behavior: auto;
}

/* CURVED IMAGE CARD */
.portfolio-slide {
    flex: 0 0 min(1080px, 82vw);
    scroll-snap-align: start;
    background: #111111;
    border-radius: 28px;
    overflow: hidden;
}

.portfolio-slide-img {
    width: 100%;
    height: clamp(320px, 42vw, 560px);
    display: block;
    object-fit: cover;
    border-radius: 28px;
    transition: transform 0.4s ease-out;
}

.portfolio-slide:hover .portfolio-slide-img {
    transform: scale(1.08);
}

@media (max-width: 991.98px) {

    .portfolio-slider {
        padding: 62px 0 56px;
    }

    .portfolio-header {
        padding: 0 16px;
    }

    .portfolio-kicker {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .portfolio-title {
        font-size: clamp(54px, 12vw, 84px);
        line-height: 0.92;
    }

    .portfolio-track {
        padding: 10px 16px 10px;
        gap: 16px;
        scroll-padding-left: 16px;
    }

    .portfolio-slide {
        flex-basis: 92vw;
        border-radius: 24px;
    }

    .portfolio-slide-img {
        height: clamp(240px, 58vw, 450px);
        border-radius: 24px;
    }

}

/*** Testimonial Feature ***/
.testimonial-feature {
    padding: 92px 0 110px;
}

.testimonial-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
    display: grid;
    grid-template-columns: 1fr minmax(520px, 640px);
    column-gap: 64px;
    align-items: start;
}

.testimonial-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(90px, 9vw, 170px);
    line-height: 0.88;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.testimonial-cards {
    border-radius:24px;
    overflow:hidden;
    padding-top: 86px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.testimonial-card {
    border-radius:24px;
    overflow:hidden;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 28px;
    padding: 34px 36px 38px;
    background: rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease-out;
}

.testimonial-card:hover {
    transform: scale(1.08);
}

.testimonial-stars {
    font-size: 14px;
    letter-spacing: 0.14em;
    color: #ffffff;
}

.testimonial-meta {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.testimonial-text {
    margin: 22px 0 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.9;
    text-transform: uppercase;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .testimonial-feature {
        padding: 64px 0 72px;
    }

    .testimonial-inner {
        padding-left: 16px;
        padding-right: 16px;
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .testimonial-title {
        font-size: clamp(54px, 12vw, 92px);
        line-height: 0.92;
    }

    .testimonial-cards {
        border-radius:24px;
        overflow:hidden;
        padding-top: 0;
        gap: 22px;
    }

    .testimonial-card {
        padding: 26px 22px 28px;
        overflow:hidden;
        border-radius: 24px;
    }

    .testimonial-text {
        border-radius:24px;
        font-size: 12px;
        line-height: 1.85;
    }
}

/*** Instagram Feed ***/
.instagram-feed {
    padding: 72px 0 88px;
}

.instagram-feed-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
}

.instagram-feed-title {
    margin: 0 0 22px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.instagram-widget {
    border-radius: 28px;
    overflow: hidden;
    background: #111111;
}

.instagram-widget-frame {
    width: 100%;
    height: 640px;
    border: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .instagram-feed {
        padding: 54px 0 64px;
    }

    .instagram-feed-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .instagram-widget {
        border-radius: 22px;
    }

    .instagram-widget-frame {
        height: 520px;
    }
}

/*** Let's Talk Footer - Exact Screenshot Style ***/
.lets-talk-footer{
    position:relative;
    background:#ffffff;
    color:#000000;
    padding:70px 0 55px;
    overflow:hidden;
}

.footer-content-wrapper{
    max-width:1400px;
    margin:0 auto;
    padding:0 48px;
}

/* TOP HERO AREA */
.footer-hero-section{
    position:relative;
    text-align:center;
    margin-bottom:70px;
    min-height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BIG TEXT */
.footer-hero-title{
    font-family:'Cormorant Garamond', serif;
    font-size:clamp(110px, 15vw, 260px);
    font-weight:400;
    line-height:.82;
    letter-spacing:-0.03em;
    color:#000000;
    margin:0;
}

/* BUTTON ABOVE TEXT */
.consultation-btn-container{
    position:absolute;
    top:70%;
    left:50%;
    transform:translate(-50%, -135%);
    z-index:5;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.footer-whatsapp-cta,
.consultation-btn{
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:250px;
    background:#000000;
    color:#ffffff !important;
    border:1px solid #000000;
    padding:12px 28px;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    text-align:center;
    transition:all .3s ease;
}

.footer-whatsapp-cta{
    background:#000000;
    border-color:#000000;
    gap:8px;
}

.footer-whatsapp-cta i{
    font-size:0.95em;
}

.footer-whatsapp-cta:hover,
.footer-whatsapp-cta:focus-visible,
.footer-whatsapp-cta:active,
.consultation-btn:hover{
    background:#ffffff;
    color:#000000 !important;
    border:1px solid #000000;
    outline:none;
}

.home-hero-cta:focus-visible,
.home-hero-cta:active,
.detail-feature-btn:focus-visible,
.detail-feature-btn:active,
.services-pill:focus-visible,
.services-pill:active,
.about-final-cta-button:focus-visible,
.about-final-cta-button:active {
    background: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
}

.consultation-btn:focus-visible,
.consultation-btn:active,
.contact-lamiya-submit:focus-visible,
.contact-lamiya-submit:active {
    background: #ffffff;
    color: #000000 !important;
    border-color: #000000;
}

/* GRID AREA */
.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 0.8fr 1fr 0.8fr;
    gap:55px;
    align-items:start;
    margin-bottom:45px;
}

.footer-brand{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.brand-text{
    margin:0;
    font-family:'Cormorant Garamond', serif;
    font-size:clamp(68px, 7vw, 120px);
    font-weight:400;
    line-height:0.84;
    letter-spacing:-0.03em;
    color:#000000;
}

.brand-text span{
    display:block;
    margin-top:10px;
    font-family:'Inter', sans-serif;
    font-size:0.16em;
    font-weight:500;
    letter-spacing:0.52em;
    text-transform:uppercase;
}

.footer-section{
    text-align:left;
    min-width:0;
}

.footer-section-title{
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    margin:0 0 22px;
    color:#000000;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
    font-size:13px;
    font-weight:700;
    line-height:1.55;
}

.footer-links a{
    color:#000000;
    text-decoration:none;
}

.footer-links a:hover{
    opacity:.65;
}

/* LOGO */
.footer-logo{
    max-width:280px;
    width:100%;
}

/* BOTTOM */
.footer-bottom{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:26px;
}

.footer-socials{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.social-link{
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    color:#000000;
    text-decoration:none;
    border-bottom:1px solid #000000;
    padding-bottom:2px;
}

.social-link:hover{
    opacity:.6;
}

.footer-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-copyright{
    width:100%;
    text-align:center;
    font-size:12px;
    font-weight:700;
    margin-top:10px;
    color:#000000;
}

/* MOBILE */
@media(max-width:991.98px){

.lets-talk-footer{
    padding:44px 0 34px;
    overflow:visible;
}

.footer-content-wrapper{
    display:grid;
    grid-template-columns:minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
        "hero hero"
        "brand brand"
        "menu contact"
        "info socials"
        "copyright copyright";
    column-gap:28px;
    row-gap:28px;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    padding:0 22px;
}

.footer-hero-section{
    grid-area:hero;
    min-height:auto;
    margin-bottom:0;
    display:flex;
    flex-direction:column;
    gap:26px;
}

.footer-hero-title{
    order:1;
    font-size:clamp(80px, 18vw, 132px);
    line-height:.88;
    letter-spacing:-0.04em;
}

.consultation-btn-container{
    position:static;
    order:2;
    transform:none;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-whatsapp-cta,
.consultation-btn{
    width:min(100%, 300px);
    min-width:0;
    max-width:100%;
    padding:15px 18px;
    border-radius:20px;
    font-size:9px;
    letter-spacing:0.04em;
    text-align:center;
}

.footer-grid{
    display:contents;
}

.footer-brand{
    grid-area:brand;
    margin-bottom:0;
}

.brand-text{
    font-size:clamp(76px, 18vw, 120px);
    line-height:0.82;
}

.brand-text span{
    margin-top:8px;
    font-size:0.14em;
    letter-spacing:0.48em;
}

.footer-section-title{
    margin-bottom:18px;
    font-size:16px;
    text-align:center;
}

.footer-grid > .footer-section:nth-child(2){
    grid-area:menu;
}

.footer-grid > .footer-section:nth-child(3){
    grid-area:contact;
}

.footer-grid > .footer-section:nth-child(4){
    grid-area:info;
}

.footer-links li{
    margin-bottom:12px;
    font-size:10px;
    line-height:1.45;
    overflow-wrap:break-word;
    word-break:normal;
    text-align:center;
}

.footer-links a{
    overflow-wrap:break-word;
    word-break:normal;
    text-align:center;
    text-decoration:none !important;
    border-bottom:0 !important;
}

.footer-last-row{
    display:contents;
}

.footer-socials{
    grid-area:socials;
    justify-self:stretch;
    align-items:center;
    flex-direction:column;
    gap:14px;
    text-align:center;
}

.social-link{
    font-size:11px;
    padding-bottom:1px;
    text-align:center;
    text-decoration:none !important;
    border-bottom:0 !important;
}

.mobile-menu-whatsapp {
    font-size: 11px;
    padding: 12px 16px;
}

.footer-copyright{
    grid-column:1 / -1;
    margin-top:6px;
    font-size:11px;
}

.footer-grid > .footer-section:nth-child(3) .footer-links li{
    overflow-wrap:anywhere;
}

}

.legal-whatsapp-wrap {
    margin-top: 46px;
}

.legal-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 250px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.legal-whatsapp-link:hover,
.legal-whatsapp-link:focus-visible {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    outline: none;
}

@keyframes whatsapp-hover-shift {
    0% {
        background-position: 0% 50%;
        border-color: #25d366;
        box-shadow: 0 8px 18px rgba(37, 211, 102, 0.18);
    }
    100% {
        background-position: 100% 50%;
        border-color: #128c7e;
        box-shadow: 0 14px 28px rgba(18, 140, 126, 0.28);
    }
}

/* GSAP premium motion helpers */
.js-gsap-header {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.js-gsap-reveal {
    will-change: transform, opacity;
}

.js-live-love-story {
    isolation: isolate;
    overflow: hidden;
    overflow: clip;
    will-change: opacity;
}

.js-live-love-story .container,
.js-live-love-overlay .services-showcase-inner,
.js-live-love-overlay .service-tile,
.js-live-love-overlay .services-cta,
.js-live-love-portfolio .portfolio-header,
.js-live-love-portfolio .portfolio-rail {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.js-live-love-story {
    z-index: 2;
}

.js-live-love-overlay {
    position: relative;
    z-index: 12;
}

.js-live-love-portfolio {
    position: relative;
    z-index: 16;
}

@media (max-width: 991.98px) {
    .js-live-love-story {
        overflow: hidden;
    }
}

/* SERVICE PORTFOLIO PAGES */
.service-portfolio-page {
    background: #050505;
    color: #ffffff;
}

.service-portfolio-page .lets-talk-footer {
    position: relative;
    z-index: 20;
}

.service-portfolio-main {
    background: #050505;
    color: #ffffff;
}

.service-portfolio-shell {
    width: min(calc(100% - 64px), 1280px);
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .service-portfolio-page .home-hero-nav {
        position: relative;
        top: 0;
        left: auto;
        right: auto;
        width: min(calc(100% - 68px), 1280px);
        max-width: calc(100% - 68px);
        margin: 14px auto 0;
        box-sizing: border-box;
    }

    .service-portfolio-page .footer-content-wrapper {
        width: min(100%, 1400px);
        max-width: 100%;
        box-sizing: border-box;
    }
}

.service-portfolio-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    padding: 148px 0 56px;
    overflow: hidden;
    background: #050505;
}

.service-portfolio-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-portfolio-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.82) 82%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.68) 100%);
}

.service-portfolio-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
}

.service-portfolio-hero-layout {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: end;
}

.service-portfolio-kicker,
.service-overview-kicker,
.service-portfolio-gallery-kicker,
.service-portfolio-spotlight-kicker,
.service-gallery-empty-kicker {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.service-portfolio-title,
.service-overview-title,
.service-portfolio-gallery-title,
.service-portfolio-spotlight-title,
.service-gallery-empty-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.service-portfolio-title {
    font-size: clamp(84px, 13vw, 220px);
}

.service-portfolio-title span {
    display: block;
}

.service-portfolio-lead,
.service-overview-copy,
.service-portfolio-gallery-copy,
.service-portfolio-spotlight-copy {
    margin: 24px 0 0;
    max-width: 640px;
    font-size: 14px;
    line-height: 1.95;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.service-portfolio-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.service-portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 24px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.service-portfolio-cta:hover,
.service-portfolio-cta:focus-visible {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.service-portfolio-overview,
.service-portfolio-spotlight,
.service-portfolio-gallery-section {
    padding: 88px 0 0;
}

.service-portfolio-overview-grid {
    display: grid;
    max-width: 980px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.service-overview-title {
    font-size: clamp(60px, 7vw, 118px);
}

.service-includes-box {
    max-width: 680px;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.service-includes-box summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-includes-box summary::-webkit-details-marker {
    display: none;
}

.service-includes-box summary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.88);
    outline-offset: -4px;
}

.service-includes-box summary i {
    flex: 0 0 auto;
    font-size: 15px;
    transition: transform 0.25s ease;
}

.service-includes-box[open] summary i {
    transform: rotate(180deg);
}

.service-includes-content {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.82);
}

.service-includes-content h3 {
    margin: 18px 0 0;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
}

.service-includes-content ul {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
    padding: 18px 0 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-includes-content ul:last-child {
    margin-bottom: 0;
}

.service-includes-content li {
    padding-left: 4px;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.service-portfolio-spotlight-grid {
    display: grid;
    max-width: 1080px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
}

.service-portfolio-spotlight-media {
    position: relative;
    min-height: 620px;
    border-radius: 36px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.service-portfolio-spotlight-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-portfolio-spotlight-title {
    font-size: clamp(56px, 6vw, 108px);
}

.service-portfolio-gallery-header {
    min-height: 0;
}

.service-portfolio-gallery-title {
    font-size: clamp(66px, 8vw, 138px);
}

.service-portfolio-gallery-status {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    margin-top: 22px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.service-portfolio-gallery-status.is-error {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.92);
}

.service-portfolio-gallery {
    column-count: 3;
    column-gap: 24px;
    padding: 36px 0 96px;
}

.service-gallery-card,
.service-gallery-empty {
    break-inside: avoid;
    margin: 0 0 24px;
}

.service-gallery-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: zoom-in;
}

.service-gallery-media {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
}

.service-gallery-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateX(-100%);
    transition: opacity 0.35s ease;
    opacity: 0.85;
}

.service-gallery-media.is-loaded::before {
    opacity: 0;
}

.service-gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.service-gallery-trigger:hover .service-gallery-image,
.service-gallery-trigger:focus-visible .service-gallery-image {
    transform: scale(1.03);
}

.service-gallery-trigger:focus-visible {
    outline: none;
}

.service-gallery-trigger:focus-visible .service-gallery-media {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.74);
}

.service-gallery-caption {
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.service-gallery-empty {
    padding: 34px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
}

.service-gallery-empty-title {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 0.96;
}

.service-gallery-lightbox-open {
    overflow: hidden;
}

.service-gallery-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    box-sizing: border-box;
    z-index: 9999;
}

.service-gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.service-gallery-lightbox-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 1380px);
    max-height: 100%;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 18px;
}

.service-gallery-lightbox-figure {
    margin: 0;
    display: grid;
    gap: 16px;
    min-width: 0;
    justify-items: center;
}

.service-gallery-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    border-radius: 28px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
}

.service-gallery-lightbox-caption {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.service-gallery-lightbox-close,
.service-gallery-lightbox-nav {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.service-gallery-lightbox-close:hover,
.service-gallery-lightbox-close:focus-visible,
.service-gallery-lightbox-nav:hover,
.service-gallery-lightbox-nav:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    outline: none;
}

.service-gallery-lightbox-close {
    position: absolute;
    top: 22px;
    right: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.service-gallery-lightbox-nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 1199.98px) {
    .service-portfolio-shell {
        width: min(calc(100% - 40px), 1120px);
    }

    .service-portfolio-gallery {
        column-count: 2;
    }
}

@media (max-width: 991.98px) {
    .service-portfolio-page {
        overflow-x: hidden;
    }

    .service-portfolio-page .home-hero-nav {
        position: fixed;
        top: 10px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        margin: 0;
        box-sizing: border-box;
    }

    .service-portfolio-page .home-hero-mobilebar {
        min-width: 0;
    }

    .service-portfolio-page .mobilebar-text {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .service-portfolio-shell {
        width: calc(100% - 32px);
    }

    .service-portfolio-hero {
        min-height: auto;
        padding: 116px 0 48px;
    }

    .service-portfolio-hero-layout,
    .service-portfolio-overview-grid,
    .service-portfolio-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-portfolio-title {
        font-size: clamp(58px, 16vw, 108px);
        line-height: 0.92;
    }

    .service-portfolio-overview,
    .service-portfolio-spotlight,
    .service-portfolio-gallery-section {
        padding-top: 62px;
    }

    .service-overview-title,
    .service-portfolio-spotlight-title,
    .service-portfolio-gallery-title {
        font-size: clamp(40px, 11vw, 68px);
        line-height: 0.96;
    }

    .service-portfolio-lead,
    .service-overview-copy,
    .service-portfolio-gallery-copy,
    .service-portfolio-spotlight-copy {
        margin-top: 18px;
        font-size: 12px;
        line-height: 1.8;
    }

    .service-includes-box {
        margin-top: 22px;
    }

    .service-includes-box summary {
        padding: 16px;
        font-size: 11px;
    }

    .service-includes-content {
        padding: 0 16px 16px;
    }

    .service-includes-content h3 {
        font-size: 21px;
    }

    .service-includes-content li {
        font-size: 12px;
    }

    .service-portfolio-spotlight-media {
        min-height: 420px;
        border-radius: 28px;
    }

    .service-portfolio-gallery-status {
        margin-top: 18px;
        padding: 12px 16px;
        font-size: 10px;
    }

    .service-gallery-lightbox {
        padding:
            max(12px, env(safe-area-inset-top) + 12px)
            0
            max(12px, env(safe-area-inset-bottom) + 12px);
    }

    .service-gallery-lightbox-close {
        top: max(12px, env(safe-area-inset-top) + 8px);
        right: 4px;
    }

    .service-gallery-lightbox-shell {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        max-height: none;
        display: block;
    }

    .service-gallery-lightbox-figure {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        max-width: 90vw;
        max-height: 80vh;
        margin: 0;
        padding: 0;
        gap: 10px;
        justify-content: center;
        box-sizing: border-box;
    }

    .service-gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 44px;
        height: 44px;
        font-size: 20px;
        transform: translateY(-50%);
    }

    .service-gallery-lightbox-prev {
        left: max(8px, env(safe-area-inset-left) + 6px);
    }

    .service-gallery-lightbox-next {
        right: max(8px, env(safe-area-inset-right) + 6px);
    }

    .service-gallery-lightbox-image {
        width: auto;
        max-width: 100%;
        max-height: 75vh;
        margin: 0 auto;
        object-fit: contain;
    }

    .service-gallery-lightbox-caption {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .service-portfolio-shell {
        width: calc(100% - 28px);
    }

    .service-portfolio-gallery {
        column-count: 2;
        column-gap: 12px;
        padding: 24px 0 64px;
    }

    .service-gallery-card,
    .service-gallery-empty {
        margin-bottom: 12px;
    }

    .service-gallery-media,
    .service-gallery-empty,
    .service-gallery-lightbox-image {
        border-radius: 22px;
    }

    .service-gallery-caption {
        margin-top: 12px;
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .service-portfolio-page .home-hero-nav {
        left: 12px;
        right: 12px;
        padding: 10px 12px;
    }

    .service-portfolio-page .home-hero-mobilebar {
        gap: 8px;
    }

    .service-portfolio-page .mobilebar-logo,
    .service-portfolio-page .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }

    .service-portfolio-page .mobilebar-text {
        margin: 0 4px;
        font-size: 20px;
    }

    .service-portfolio-title {
        font-size: clamp(50px, 15vw, 72px);
    }

    .service-overview-title,
    .service-portfolio-gallery-title {
        font-size: clamp(36px, 10.5vw, 54px);
    }
}

.whatsapp-float {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: auto !important;
    left: auto !important;
    right: 16px !important;
    bottom: 16px !important;
    right: max(16px, calc(env(safe-area-inset-right) + 16px)) !important;
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 16px)) !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: #25d366 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    color: #ffffff !important;
    background: #128c7e !important;
    outline: none !important;
}

@media (max-width: 991.98px) {
    .whatsapp-float {
        right: 12px !important;
        bottom: 16px !important;
        right: max(12px, calc(env(safe-area-inset-right) + 12px)) !important;
        bottom: max(16px, calc(env(safe-area-inset-bottom) + 16px)) !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 22px !important;
    }
}
