* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Titillium Web", sans-serif;
}

/* Titillium Web Regular */
@font-face {
    font-family: 'Titillium Web';
    src: url('fonts/TitilliumWeb-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Titillium Web SemiBold */
@font-face {
    font-family: 'Titillium Web';
    src: url('fonts/TitilliumWeb-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Titillium Web Bold */
@font-face {
    font-family: 'Titillium Web';
    src: url('fonts/TitilliumWeb-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Titillium Web ExtraLight */
@font-face {
    font-family: 'Titillium Web';
    src: url('fonts/TitilliumWeb-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Titillium Web ExtraLight Italic */
@font-face {
    font-family: 'Titillium Web';
    src: url('fonts/TitilliumWeb-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Titillium Web';
    src: url('fonts/TitilliumWeb-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

body {
    background: #0e0e0e;
    color: #fff;
    font-family: Titillium Web;
    font-size: 32px;
    font-weight: 200;
    line-height: 1;
}

.vertical-slider {
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body.lock-scroll {
    overflow: hidden;
}

/* ================= HEADER ================= */

.header {
    width: 100%;
    padding: 11.2px 104px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f0f0f;
    letter-spacing: 2px;

}

.logo {
    font-size: 18px;
    font-weight: 600;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.consult {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.menu {
    width: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 16px;
    cursor: pointer;
}

.menu span {
    display: block;
    height: 2px;
    background: #fff;
}

/* ================= OUTDOOR SECTION ================= */
.outdoor {
    width: 100%;
    background: #1B1B1B;
    color: #fff;
    padding: 80px 0 80px;
    padding-top: 142px;
    min-height: 100dvh;
}

.store-section .left-panel {
    justify-content: flex-start;
}

.outdoor-container {
    margin: 0 auto;
}

.outdoor-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 249px 0 104px;
    margin-bottom: 75px;
}

.outdoor-content h4 {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: Roboto;
    letter-spacing: 0.2em;
}

.outdoor-content p {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 200;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.02em;
    color: #E8E8E8;
    max-width: 831px;
    opacity: 0.8;

}

a.explore {
    display: inline-block;
    padding: 60px 28px;
    border-radius: 100%;
    background: #D0D0D0;
    color: #1B1B1B;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: Roboto;
    letter-spacing: 3px;
}

a.explore:hover {
    background: #ffffff;
}

.outdoor-image:first-child {
    width: 57%;
    border-top-left-radius: 104px;
}

.outdoor-image:nth-child(2) {
    width: 26.5%;
}

.outdoor-image:last-child {
    width: 17.8%;
}

.outdoor-image:first-child img {
    border-top-left-radius: 104px !important;
}

/* Custom Slider */
.outdoor-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    gap: 16px;
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 0;
}

.outdoor.reveal .slider-wrapper img:last-child {
    width: calc(44% - 18px);
}

.slider-wrapper img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 8px 104px 8px 8px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slider-dots {
    display: none !important;
}

.dot:last-child {
    display: none;
}


.slider-wrapper img:hover {
    transform: scale(1.05);
}

.slider-wrapper img:first-child {
    border-radius: 0px 8px 8px 0px;
}

.slider-wrapper img:last-child {
    border-radius: 8px 104px 0px 8px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1B1B1B;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: #E8D6B0;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 40px;
}

.slider-nav.next {
    right: 40px;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0 104px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #E8D6B0;
    width: 24px;
    border-radius: 4px;
}

.outdoor.reveal .slider-wrapper img {
    width: 100% !important;
    border-radius: 0;
}

.outdoor-image {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1000px) {
    .outdoor {
        padding: 60px 0;
    }



    .outdoor-content p {
        font-size: 18px;
        line-height: 24px;
        max-width: 100%;
    }

    a.explore {
        padding: 50px 25px;
        font-size: 14px;
    }

    .slider-wrapper {
        padding: 0 20px;
    }

    .slider-wrapper img {
        height: 500px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .slider-dots {
        padding: 0 20px;
    }

}

@media (max-width: 767px) {
    .outdoor-content h4 {
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 2px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .outdoor-text {
        padding: 0 20px;
        gap: 40px;
    }

    a.explore {
        padding: 32px 9px;
        font-size: 12px;
    }

    .slider-wrapper img:last-child {
        border-radius: 8px;
    }

    .section-title {
        font-size: 18px;
        line-height: 24px;
    }

    .outdoor {
        padding: 80px 0 0px;
    }

    .outdoor-text {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-section .left-panel:after {
        display: none !important;
    }

    .outdoor {
        min-height: auto;
    }
}



.slider-nav {
    display: none;
}

.slider-wrapper img {
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease, clip-path 0.8s ease;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
}

.outdoor.reveal .slider-wrapper img {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

/* Staggered reveal animation for images */
.outdoor.reveal .slider-wrapper img:nth-child(1) {
    transition-delay: 0.4s;
}

.outdoor.reveal .slider-wrapper img:nth-child(2) {
    transition-delay: 0.6s;
}

.outdoor.reveal .slider-wrapper img:nth-child(3) {
    transition-delay: 0.8s;
}

.outdoor.reveal .slider-wrapper img:nth-child(4) {
    transition-delay: 1s;
}

.outdoor.reveal .slider-wrapper img:nth-child(5) {
    transition-delay: 1.2s;
}

.outdoor.reveal .slider-wrapper img:last-child {
    width: CALC(40% - 18px);
}

.outdoor.reveal .slider-wrapper img {
    width: 60%;
}

@media(max-width:767px) {
    .slider-wrapper {
        transform: none !important;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .slider-wrapper img {
        width: calc(50% - 20px);
    }

    .slider-wrapper img:last-child {
        width: calc(50% - 20px);
    }

    .outdoor.reveal .slider-wrapper img:nth-child(1) {
        width: 100%;
        border-radius: 8px 104px 8px 8px;
    }

    .slider-wrapper img:last-child {
        border-radius: 8px;
    }

    .outdoor.reveal .slider-wrapper img:last-child {
        width: 100%;
    }

    .outdoor.reveal .slider-wrapper img {
        width: 100%;
    }

    .outdoor {
        padding: 80px 0 0px;
        height: auto;
    }

    .outdoor-image:first-child {
        width: 100%;
    }

    .outdoor-image:first-child img {
        border-radius: 0;
        border-top-left-radius: 104px;
    }

    .outdoor-image img {
        border-radius: 0 !important;
    }

    .outdoor-image:nth-child(2) {
        width: 50%;
    }

    .outdoor-image:last-child {
        width: calc(50% - 8px);
    }

    .slider-wrapper {
        padding: 0;
        gap: 8px;
    }

    .slider-wrapper img {
        transform: none !important;
        height: 100%;
    }
}

@media(max-width:479px) {

    .outdoor.reveal .slider-wrapper img {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        width: 100%;
    }

    .slider-wrapper img:last-child {
        border-radius: 8px;
    }

    .outdoor.reveal .slider-wrapper img:last-child {
        width: 100%;
    }
}

/* ================= LIVING ROOM SECTION ================= */

.living {
    position: relative;
    padding: 0;
}

.living-img {
    width: 100%;
    object-fit: cover;
}

.living-text {
    padding-top: 212px;
    max-width: 512px;
    font-weight: 400;
    font-size: 48px;
    line-height: 64px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

section.living {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

section.living .page-center {
    padding: 0px 101px;
    position: relative;
    top: 0;
}

.visible-phone {
    display: none !important;
}

@media(max-width:767px) {
    section.living {
        height: 400px;
        background-position: center;
        background-size: cover;
    }

    .living-text {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        width: 100%;
    }

    section.living {
        background-image: url(images/1_Hero_Mobile.jpg) !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .visible-phone {
        display: block !important;
    }

    .living-text {
        display: none;
    }

    .full-width-wrapper h3 {
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 300;
        font-size: 24px;
        line-height: 32px;
        /* or 133% */
        text-align: center;
        letter-spacing: 0.02em;
        color: #FFFFFF;


    }
}

.vertical-slider {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.vertical-slider .slides-container {
    cursor: grab;
}

.vertical-slider .slides-container:active {
    cursor: grabbing;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
}

.content-section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 93px 80px;
    position: relative;
}

.header-text {
    margin-bottom: 40px;
}

.header-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #888;
    letter-spacing: 0.5px;
}

/* Slides Container */
.slides-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.slides-container:active {
    cursor: grabbing;
}

.slides-wrapper {
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide-content {
    height: 100%;
    display: none;

    transition: opacity 0.6s ease;
}

.slide-content.active {
    display: flex;
    opacity: 1;
    gap: 60px;
    align-items: center;
}

.slide-image {
    flex: 1;
    height: 100%;
    max-height: max-content;
    overflow: hidden;
    border-radius: 8px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.project-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.project-subtitle {
    font-size: 11px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
}

/* Navigation */
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.slide-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.indicator.active .indicator-dot {
    background: #fff;
    transform: scale(1.2);
}

.indicator-text {
    font-size: 11px;
    color: #444;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}



.view-projects-btn {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background: #D0D0D0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
    gap: 5px;
    color: #1B1B1B;
}

.view-projects-btn:hover {
    background: #E8D6B0;
    transform: scale(1.05);
}

.view-projects-btn span {
    font-size: 11px;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: #fff;
    height: 24px;
    border-radius: 4px;
}

.navigation {
    width: 50%;
    padding-left: 40px;
}

section.vertical-slider {
    background: #262626;
}

.header-text p {
    font-size: 32px;
    line-height: 40px;
}

.content-section {
    align-items: end;
}

.right-content {
    padding: 0;
    padding-top: 120px;
}

.project-title {
    font-size: 32px;
    line-height: 40px;
    color: #E8E8E8;
}

.project-subtitle {
    font-size: 15px;
    line-height: 24px;
    font-family: 'Roboto';
    color: #A2A2A2;
}

.project-description {
    font-size: 32px;
    line-height: 40px;
    color: #E8E8E8;
}

span.indicator-text {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #616161;
}



.indicator.active .indicator-text {
    color: #E8D6B0;
}

button.view-projects-btn span {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto';
    font-weight: 500;
    color: #1B1B1B;
}

.header-text {
    width: 50%;
    padding-left: 25px;
}

.vertical-slider .overlay {
    background: #1B1B1B;
    position: absolute;
    height: 640px;
    width: 100%;
    bottom: 0;
}

.inner-slider .slide-content {
    position: relative;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-section {
        padding: 40px;
    }

    .slide-content.active {
        flex-direction: column;
        gap: 30px;
    }

    .right-content {
        padding-left: 0;
    }


    .scroll-indicator {
        right: 40px;
    }

    .footer-cta h3,
    .footer-social h3 {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-description {
        font-size: 14px;
    }

    .view-projects-btn {
        width: 100px;
        height: 100px;
    }

    .slide-indicators {
        gap: 15px;
    }

    .navigation {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .content-section .right-content {
        padding-left: 0;
    }
}



/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .outdoor {
        grid-template-columns: 1fr;
    }

    .outdoor-gallery {
        grid-template-columns: 1fr;
    }

    .living-text {
        font-size: 26px;
        line-height: normal;
    }
}


/* Header */
header {
    background: rgb(13 13 13 / 80%);
    padding: 11.2px 104px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    position: absolute;
    width: 100%;
}

.open-menu header {
    position: fixed;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.brand-name {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 202px;
}

.book-consultation-btn {
    background: #E8D6B0;
    color: #1a1a1a;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: normal;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 24px;
    font-family: 'Roboto';
}


.open-menu .book-consultation-btn:hover {
    background: #fff;
}

.book-consultation-btn {
    color: #fff;
    font-size: 16px;
    background: transparent;
    line-height: 24px;
    font-family: 'Roboto';
    font-weight: 400;
    letter-spacing: 2px;
}

.open-menu button.book-consultation-btn {
    background: #E8D6B0;
    color: #1B1B1B;
}

.open-menu button.book-consultation-btn:hover {
    background: #fff;
    color: #1B1B1B;
}

button.book-consultation-btn:hover {
    color: #E8D6B0;
}

.open-menu .slide-menu {
    background: #0D0D0D;
}

.open-menu header {
    background: transparent;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 0;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 24px;
    flex-direction: row-reverse;
    min-width: 140px;
    font-family: Roboto !important;
    font-weight: 500;
}


.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: end;
}

.menu-icon span {
    width: 40px;
    height: 3px;
    border-radius: 104px;
    background: #fff;
    transition: all 0.3s ease;
}

.caption span {
    letter-spacing: 1.3px;
}

/* Slide-in Menu */
.slide-menu {
    position: absolute;
    top: -100vw;
    right: auto;
    width: 100%;
    height: auto;
    background: #0D0D0D;
    z-index: 999;
    transition: top 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow-y: auto;
}

.slide-menu {
    position: fixed;
    top: -175vw;
    right: auto;
    width: 100%;
    height: auto;
    background: #0D0D0D;
    z-index: 999;
    transition: top 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow-y: auto;
    height: 570px;
}

.slide-menu.active {
    top: 0;
}

.menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 104px;
    padding: 184px 104px 120px;
    margin: 0 auto;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 50px;
    background: none;
    border: none;
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transition: color 0.3s ease;
}

.menu-close {
    display: none;
}

.menu-close:hover {
    color: #e8dcc4;
}

.close-icon {
    font-size: 24px;
    line-height: 1;
}

.menu-column h3 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 25px;
    font-weight: 400;
}

.menu-column ul {
    list-style: none;
}

.menu-column ul li {
    margin-bottom: 15px;
}

.menu-column ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 300;
}

.menu-column ul li a:hover {
    color: #fff;
}



.menu-store-info h3 {
    font-size: 16px;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #A2A2A2;
    margin-bottom: 30px;
    font-weight: 500;
    font-family: Roboto;
    line-height: 24px;
    letter-spacing: 2px;
}

.menu-store-info p {
    font-size: 12px;
    line-height: 1.8;
    color: #A2A2A2;
    margin-bottom: 40px;
    font-weight: 300;
}

.menu-column.menu-store-info {
    position: relative;
    top: -4px;
}

.store-phone {
    font-size: 13px;
    color: #e8dcc4;
    margin-top: 15px;
    display: block;
}

.menu-social {
    margin-top: 40px;
}

.menu-store-info p.store-phone {
    margin-bottom: 0;
}

.menu-social {
    margin-top: 66px;
    position: relative;
    top: 4px;
}

.menu-social h4 {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e8dcc4;
    color: #1a1a1a;
    border-color: #e8dcc4;
    transform: translateY(-3px);
}

/* Content area */
.content {
    padding: 60px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.logo-container img {
    max-width: 104px;
}

.logo-container {
    flex-direction: column;
    gap: 8px;
}


.menu-icon span:first-child {
    display: none;
}

.menu-icon span:nth-child(3) {
    width: 56px;
}

.menu-toggle:hover .menu-icon span {
    width: 56px;
}

.open-menu .menu-icon span:nth-child(2) {
    transform: translate(7px, 5px) rotateZ(45deg);
    width: 40px !important;
}

.open-menu .menu-icon span:nth-child(3) {
    transform: translateY(-3px) rotateZ(-45deg);
    width: 40px !important;
}

.menu-toggle.active .menu-icon span:last-child {
    position: relative;
    right: -6px;
    top: 1px;
}

.menu-toggle.active .menu-icon span:first-child {
    transform: rotate(45deg);
    top: 6px;
    position: relative;
}

button.book-consultation-btn:hover {
    color: #E8D6B0;
}

.menu-column ul li a {
    font-size: 40px;
    font-weight: 200;
    padding: 23px 0 23px;
    color: #A2A2A2;
    line-height: 1;
    display: block;
}

.menu-column ul li {
    margin: 0;
    border-top: 1px solid #494949;
}

.menu-column ul li:last-child {
    border-bottom: 1px solid #494949;
}

.menu-store-info p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.menu-store-info p.store-phone {
    color: #E8D6B0;
    font-size: 16px;
    line-height: 24px;
    font-family: Roboto;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .menu-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 150px 50px 80px;
    }

    .header-right {
        gap: 12px;
    }

    header {
        background: rgb(13 13 13 / 80%);
        padding: 11.2px 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 11.2px 30px;
    }

    .header-right {
        gap: 20px;
    }

    .menu-content {
        grid-template-columns: 1fr;
    }

    .menu-column ul li a {
        font-size: 24px;
        line-height: 32px;
    }

    .menu-store-info {
        border-left: none;
        border-top: 1px solid #333;
        padding-left: 0;
        padding-top: 40px;
    }

    .menu-column:first-child>ul>li:last-child {
        border-bottom: 0;
    }

    .menu-content {

        padding: 120px 30px 30px;
        gap: 0;
    }

    .menu-close {
        right: 30px;
    }

    .content {
        padding: 40px 30px;
    }

    .content h1 {
        font-size: 32px;
    }

    .book-consultation-btn {

        font-size: 12px;
    }

    .menu-toggle>span:first-child {
        display: none;
    }
}

@media (max-width: 479px) {
    .logo-container img {
        max-width: 63px;
    }

    .book-consultation-btn {

        padding: 10px 10px;
    }

    .header-right {
        gap: 0px;
    }

    .book-consultation-btn {
        padding: 5px 5px;
        font-size: 10px;
    }

    header {
        padding: 20px 20px;
    }

    .menu-content {

        padding: 120px 20px 30px;
        gap: 0;
    }

    .menu-toggle {
        min-width: auto;
    }

    .brand-name {
        text-align: center;
    }


}



/* Header Section */
.furniture-slider .header-section {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.furniture-slider .header-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #ccc;
    font-weight: 400;
}

.furniture-slider .header-description {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    font-weight: 300;
}

/* Main Slider Section */
.furniture-slider .slider-section {
    position: relative;
    padding: 0 100px;
    min-height: 600px;
}

/* Left Content */
.furniture-slider .left-content {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 250px;
}

.furniture-slider .category-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #999;
    font-weight: 400;
}

.furniture-slider .category-description {
    font-size: 15px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 40px;
}

.furniture-slider .explore-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2a2a2a;
    transition: all 0.3s ease;
}

.furniture-slider .explore-btn:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

/* Swiper Slider */
.furniture-slider .swiper-container {
    margin-left: 250px;
    overflow: visible !important;
}

.furniture-slider .swiper-slide {
    position: relative;
}

.furniture-slider .slide-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
}

.furniture-slider .slide-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

/* Overlay - Shows on Hover */
.furniture-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
    border-radius: 2px;
}

.furniture-slider .swiper-slide:hover .slide-overlay {
    opacity: 1;
}

.furniture-slider .overlay-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #fff;
}

.furniture-slider .overlay-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}

/* Slide Count - Right Side */
.furniture-slider .slide-count {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.furniture-slider .current-slide {
    color: #fff;
    font-size: 18px;
}

/* Bottom Categories */
.furniture-slider .bottom-categories {
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    gap: 25px;
    z-index: 10;
}

.furniture-slider .category-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.furniture-slider .category-tag.active {
    color: #fff;
}

.furniture-slider .category-tag.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

.furniture-slider .category-tag:hover {
    color: #aaa;
}

/* Swiper Navigation */
.furniture-slider .swiper-button-prev,
.furniture-slider .swiper-button-next {
    color: #fff;
    width: 40px;
    height: 40px;
}

.furniture-slider .swiper-button-prev:after,
.furniture-slider .swiper-button-next:after {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .furniture-slider .slider-section {
        padding: 0 50px;
    }

    .furniture-slider .left-content {
        left: 50px;
    }

    .furniture-slider .slide-count {
        right: 50px;
    }

    .furniture-slider .bottom-categories {
        left: 50px;
    }
}

@media (max-width: 768px) {
    .furniture-slider .slider-section {
        padding: 0 20px;
    }

    .furniture-slider .left-content {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .furniture-slider .swiper-container {
        margin-left: 0;
    }

    .furniture-slider .slide-count {
        right: 20px;
    }

    .furniture-slider .bottom-categories {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .furniture-slider .slide-image,
    .furniture-slider .slide-overlay {
        height: 400px;
    }
}




footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 104px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Section - Logo */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: auto;
    max-width: 216px;
}

.footer-column {
    word-break: break-word;
}

.footer-brand {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    font-weight: 400;
}

/* Middle Section - Info Grid */
.footer-middle {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column h3 {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

.footer-column p,
.footer-column a {
    font-size: 12px;
    line-height: 1.8;
    color: #E8E8E8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-column p {
    margin-bottom: 26px;
}

a {
    -webkit-tap-highlight-color: transparent;
}

.menu-store-info a {
    text-decoration: none !important;
    -webkit-text-fill-color: #E8E8E8;
}

.footer-column a:hover {
    color: #fff;
    -webkit-text-fill-color: #fff;
    /* Safari fix */
}

/* Right Section - CTA & Social */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.footer-cta h3 {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: #fff;
    font-weight: 400;
}

.cta-button {
    background: #E8D6B0;
    color: #1a1a1a;
    border: none;
    padding: 16px 25px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: #f5e6d3;
}


.footer-social h3 {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 20px;
}

a.social-icon:first-child {
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: end;
    justify-content: center;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.footer-column h3 a,
.footer-column h3 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 25px;
}

.footer-column p,
.footer-column a {
    font-family: 'Roboto';
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column a {
    margin: 0;
}

.footer-container {
    max-width: 100%;
    gap: 15px;
}

.footer-column {
    width: calc(50% - 10px);
}

.footer-logo img {
    width: 100%;
    max-width: 216px;
}

p.footer-brand {
    color: #fff;
    max-width: 168px;
    margin: 0 auto;
}

.footer-cta h3 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

.footer-social h3 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

button.cta-button {
    font-size: 18px;
    line-height: 18px;
    font-family: 'Roboto';
    font-weight: 500;
    padding: 21px 25px 21px;
    min-width: 312px;
}

button.cta-button:hover {
    background: #fff;
}

.social-icon {
    background: #E8E8E8;
    color: #1B1B1B;
}


.footer-column a+h3 {
    margin-top: 25px;
}

.footer-cta h3,
.footer-social h3 {
    padding-left: 20px;
}

.social-icons {
    padding-left: 20px;
}

.footer-social h3 {
    margin-bottom: 25px;
}

.footer-column a:hover {
    color: #E8D6B0;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-right {
        gap: 15px;
    }
}




@media (max-width: 640px) {
    footer {
        padding: 40px 20px;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        width: 100px;
        height: 100px;
        font-size: 28px;
    }

    .footer-middle {
        display: block;
    }

    .footer-column h3 {
        margin-top: 20px;
    }

    .footer-column p,
    .footer-column a,
    .footer-social h3,
    .footer-cta h3,
    .footer-column h3 {
        font-size: 12px;
        line-height: 24px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-logo {
        width: auto;
        height: auto;
    }

    button.cta-button {
        font-size: 14px;
        min-width: auto;
    }

    .footer-cta h3,
    .footer-social h3 {
        padding-left: 0;
    }

    .social-icons {
        padding-left: 0;
    }
}






/* ===== FIRST SECTION - THREE CARDS ===== */
.promise-section {
    background: #4a4a4a;
    padding: 151px 0px 69px 103px;
    min-height: 100dvh;
}

.promise-bg {
    background: #262626;
}

.promise-container {
    margin: 0 auto;
}

@media(min-width:768px) {

    .promise-section {
        border-radius: 104px 0 0;
    }
}

.section-title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8E8E8;
    margin-bottom: 50px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: #3a3a3a;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card-images {
    transition: transform 0.3s ease;
}



.card-image {
    width: 100%;
    overflow: hidden;

}


.card-image {
    border-right: 4px solid #D0D0D0;
}

.card:last-child .card-image {
    border: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px 25px;
}

.card-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #aaa;
    font-weight: 400;
}

.card-description {
    font-size: 13px;
    line-height: 1.7;
    color: #ccc;
    font-weight: 300;
    max-width: 470px;
}


p.card-label {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: normal;
    color: #E8D6B0;
    text-transform: inherit;
    letter-spacing: 0.02em;


}

.card-description {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 200;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: normal;
    color: #E8E8E8;
    letter-spacing: 0.02em;
    opacity: 0.8;

}

.card {
    background: transparent;
}

.card-content {
    padding: 42px 11px 0 0;
}

.cards-container {
    gap: 0;
}

.card-image img {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.card-image {
    position: relative;
    padding-bottom: 100%;
}

@media(max-width:767px) {
    .card {
        border-bottom: 2px solid #616161;
        align-items: center;
    }

    .card-images {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .card:first-child {
        border-top: 2px solid #616161;
    }

    .card-image {
        width: 50%;
    }

    .card-content {
        width: 50%;
    }

    p.card-label {
        font-size: 10px;
        line-height: 16px;
        color: #fff;
    }

    .card-description {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }

    .cards-container {
        gap: 0;
    }

    .card-image {
        position: relative;
        padding-bottom: 59%;
    }

    section.promise-section {
        background: #262626;
    }

    .header-text {
        width: 100%;
        padding: 0;
    }

    .navigation {
        width: 100%;
        padding: 0;
    }

    .vertical-slider .content-section {
        padding: 70px 20px;
    }

    .header-text p {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

    .header-text {
        width: 100%;
        padding: 0;
    }

    .navigation {
        width: 100%;
        padding: 0;
    }

    .slide-indicators {
        display: none;
    }

    .navigation {
        margin: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    button.view-projects-btn span {
        font-size: 12px;
        line-height: 16px;
    }

    button.view-projects-btn {
        border-radius: 104px;
        width: auto;
        height: auto;
        padding: 17px 24px;
        flex-direction: row;
    }

    .slides-container {
        flex: auto;
    }

    .right-content {
        justify-content: flex-start;
        text-align: center;
        flex: auto;
        height: auto;
    }

    .project-title {
        font-size: 18px;
        line-height: 24px;
    }

    .project-subtitle {
        font-size: 12px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .project-description {
        font-size: 16px;
        line-height: 24px;
    }



    .slides-wrapper {
        height: auto;
    }

    .vertical-slider .slides-container {
        height: auto;
        display: block;
    }

    .living-text {
        font-size: 26px;
        line-height: normal;
    }

    .right-content {
        padding: 0;
        padding-top: 0;
        padding-bottom: 20px;
    }

    .vertical-slider .overlay {
        height: 80%;
    }

    section.promise-section {
        padding-top: 87px;
        padding-left: 24px;
        padding-right: 24px;
    }

    h2.section-title {
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
    }

    .card-content {
        padding: 22px 11px 20px;
    }

    p.card-label {
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.02em;
        color: #E8D6B0;
    }

    p.card-description {
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 200;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.02em;
        color: #E8E8E8;

    }

    .promise-container .cards-container {
        gap: 0;
    }

    .promise-container .card:hover .card-image img {
        transform: scale(1);
    }
}

@media(max-width:389px) {
    .promise-container .card-image {
        height: auto;
    }

    .card-images {
        flex-direction: column;
        gap: 0;
    }

    .promise-container .card-image {
        width: 100%;
        padding-bottom: 100%;
    }

    .card-content {
        width: 100%;
    }

    .card {
        margin-top: 20px;
    }
}

/* ===== SECOND SECTION - STORE VISIT ===== */
.store-section {
    display: flex;
    align-items: stretch;
    background: #1a1a1a;
}

.store-section .left-panel {
    flex: 0 0 638px;
    background: #262626;
    padding: 143px 20px 145px 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-section .store-title {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: #fff;
    font-weight: 400;
    font-family: 'Roboto';
    line-height: 32px;
}

.store-description {
    font-size: 32px;
    line-height: 40px;
    color: #E8E8E8;
    margin-bottom: 50px;
    font-weight: 200;
}

.store-btn {
    min-width: 144px;
    min-height: 144px;
    border-radius: 50%;
    background: #D0D0D0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: #1B1B1B;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Roboto';
}

.store-btn:hover {
    background: #fff;
}

.right-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.right-panel:hover .store-image {
    transform: scale(1.05);
}



.store-section:hover .right-panel::after {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */


@media (max-width: 1224px) and (min-width:969px) {
    .store-section .left-panel {
        padding: 50px 20px 40px 54px;
        width: 33.33%;
        flex: initial;
    }

    .store-section .right-panel {
        width: 66.66%;
    }
}

@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .store-section {
        flex-direction: column;
    }

    .store-section .left-panel {
        flex: 0 0 auto;
        padding: 50px 30px;
        padding: 40px 24px 40px 24px;
    }


    .left-panel,
    .right-panel {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .promise-section {
        padding: 60px 20px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-image {
        height: 250px;
    }

    .left-panel {
        padding: 40px 20px;
    }

    .store-btn {
        width: 80px;
        height: 80px;
        font-size: 12px;
        line-height: 16px;
    }

    .store-title {
        font-size: 12px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .store-description {
        font-size: 18px;
        line-height: 24px;
    }

    .right-panel {
        border-radius: 0 104px 0 0;
        background: #262626;
    }

    section.store-section {
        background: #262626;
    }

    section.store-section .left-panel {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .storecontent {
        width: calc(100% - 95px);
    }

    .section-title {
        font-size: 18px;
        line-height: 24px;
    }

    section.store-section .left-panel {
        padding: 76px 24px 0px;
    }

    section.store-section {
        display: block;
    }

    .store-section .store-title {
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .left-panel p {
        font-weight: 200;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 50px;
    }

    .store-btn {
        min-width: 80px;
        min-height: 80px;
    }

    .right-panel {
        border-radius: 0;
    }

    .right-panel:hover .store-image {
        transform: scale(1);
    }

    .store-image {
        display: block;
    }
}


.vertical-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
}


.content-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 60px 80px;
    color: #fff;
}

.header-text {
    margin-bottom: 40px;
}

.header-text p {
    color: #888;
    letter-spacing: 0.5px;
}

.slides-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.slide-content {
    display: flex;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.slide-image {
    flex: 1;
    height: 100%;
    max-height: max-content;
    overflow: hidden;
    border-radius: 8px;
}

.vertical-slider .overlay {
    left: 0;
    right: 0;
}

.slide-image,
.right-content {
    position: relative;
    z-index: 9;
}

.navigation {
    gap: 20px;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.project-title {
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.project-subtitle {
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}


.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.slide-indicators {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.indicator-dot {
    opacity: 0;
}

.carousel__nav__item.active .indicator-dot {
    display: block;
    opacity: 1;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.indicator.active .indicator-dot {
    background: #E8D6B0;
    transform: scale(1.2);
}

.indicator-text {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}


.view-projects-btn {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
    gap: 5px;
}

.view-projects-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.view-projects-btn span {
    text-transform: uppercase;
    font-weight: 600;
}

.vertical-slider .slides-container {
    cursor: grab;
    position: static;
}

.project-description {
    overflow-y: auto;
    padding-bottom: 20px;
}

.project-title {
    padding-top: 40px;
}

.main-slider img,
.slick-slider,
.slick-slider .slick-track,
.slick-slider .slick-list,
.slider-container {
    height: 100%;
}

@media (max-width: 1024px) {




    footer,
    .promise-section,
    .left-panel {
        padding-left: 40px;
        padding-right: 40px;
    }

    section.living .page-center {
        padding: 73px 40px;
    }
}

@media (max-width: 767px) {
    .content-section {
        display: block;
    }

    .project-description {
        overflow-y: auto;
        padding-bottom: 0;
    }

    .slide-indicators {
        display: flex;
        flex-direction: column;
        gap: 20px;
        display: none;
    }

    .vertical-slider .content-section {
        padding: 20px 20px;
    }

    .footer-column a+h3 {
        margin-top: 30px;
    }

    .footer-column p {
        margin-bottom: 20px;
    }

    .footer-cta h3 {
        margin-bottom: 30px;
    }

    .footer-right {
        gap: 30px;
    }

    .footer-logo img {
        width: 100%;
        max-width: 128px;
    }



    footer,
    .promise-section,
    .left-panel {
        padding-left: 36px;
        padding-right: 36px;
    }

    section.living .page-center {
        padding-left: 36px;
        padding-right: 36px;
    }

    .footer-social h3 {
        margin-bottom: 20px;
    }

    .footer-column p {
        margin-bottom: 30px;
    }

    .footer-middle {
        display: block;
        padding-left: 10px;
    }

    p.footer-brand {
        padding-left: 10px;
        margin: 0;
    }
}


.full-width-wrapper {
    padding: 125px 40px 126px;
    text-align: center;
    background: #262626;
}

.full-width-wrapper h3 {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 31px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.full-width-wrapper p {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 200;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #E8E8E8;
    opacity: 0.8;
}

.full-width-wrapper .container-wrapper {
    max-width: 1170px;
    margin: 0 auto;
}

@media (max-width: 767px) {


    .full-width-wrapper p {
        font-style: normal;
        font-weight: 200;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #E8E8E8;
    }

    .full-width-wrapper {
        padding: 52px 24px 53px;
    }

    .full-width-wrapper h3 {
        margin-bottom: 18px;
    }

}







.hero-section {
    display: flex;
    width: 100%;
    height: 100dvh;
    position: relative;
}

.left-panel {
    width: 30%;
    background: #111;
    padding: 80px 50px;
    position: relative;
}

.left-panel h4 {
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 31px;
}

.left-panel p {
    font-size: 18px;
    margin-bottom: 71px;
    color: #E8E8E8;
    padding-right: 20px;
}

.left-panel .left-hero-content p {

    margin-bottom: 108px;
}

.store-section .left-panel p {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 200;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.02em;
    color: #E8E8E8;
}

.explore-btn {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.slide-count {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.left-count {
    top: 50%;
    right: -60px;
}

.right-count {
    top: 50%;
    left: -60px;
}

.slide-count .line {
    width: 20px;
    height: 1px;
    background: #fff;
}

/* BOTTOM NAV */
.bottom-nav {
    position: absolute;
    bottom: 40px;
    left: 50px;
    display: flex;
    gap: 10px;
}

.bottom-nav .cat {
    opacity: 0.4;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #616161;
    font-family: 'Roboto';

}

.bottom-nav .cat.active {
    opacity: 1;
    font-weight: 400;
}

/* SLIDER */
.slider-container {
    width: 70%;
    background: #1B1B1B;
}

.slick-slide {
    margin-right: 16px;
}

.main-slider img {
    width: 100%;
    object-fit: cover;
}

.hero-section {
    background: #262626;
}

.hero-section button.slick-prev.slick-arrow {
    position: absolute;
    left: -59px;
    height: 100%;
    width: 55px;
    background: transparent;
    z-index: 9;
    cursor: pointer;
    border: 0;
    font-size: 0;
}

.hero-section button.slick-next.slick-arrow {
    position: absolute;
    left: auto;
    height: 100%;
    width: 128px;
    background: transparent;
    z-index: 999;
    cursor: pointer;
    border: 0;
    font-size: 0;
    right: 0;
    top: 0;
}

.left-panel h4 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    font-family: 'Roboto';
    letter-spacing: 0.2em;
}

.left-panel p {
    font-size: 32px;
    line-height: 40px;
    opacity: 0.8;
}

.hero-section .left-panel:after {
    content: '';
    display: block;
    position: absolute;
    height: 98px;
    width: 100%;
    background: #262626;
    bottom: 0;
    max-width: 100%;
}

.bottom-nav .cat {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-family: 'Roboto';
}

.bottom-nav {
    z-index: 9;
    height: 128px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    background: #262626;
    left: 0;
    justify-content: flex-start;
    bottom: 0;
    padding-left: 104px;
}

.left-panel {
    background: #1B1B1B;
    border-radius: 104px 0 0;
    padding-left: 104px;
    padding-top: 143px;
    justify-content: flex-start;

}

.store-section .left-panel {
    border-radius: 0;

}

.right-count {
    top: 50%;
    left: 0;
    z-index: 99;
    width: auto;
    right: 50px;
    left: auto;
    color: #E8E8E8;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 3px;
}

.bottom-nav .cat.active {
    opacity: 1;
    font-weight: 400;
    color: #E8D6B0;
}

.left-count {
    top: 50%;
    right: 20px;
    color: #E8E8E8;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 3px;
}

.slick-list.draggable {
    padding-left: 0 !important;
}


.slick-list:after {
    content: '';
    background: rgba(27, 27, 27, 0.85);
    position: absolute;
    right: 0;
    width: 120px;
    z-index: 9;
    height: 100%;
    display: block;
    z-index: 99;
    top: 0;
}

.explore-btn {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background: #D0D0D0;
    color: #1B1B1B;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto';
    font-weight: 500;
    letter-spacing: 3px;
}

.explore-btn:hover {
    background: #fff;
}

.caption {
    position: absolute;
    bottom: 0;
    font-size: 15px;
    font-family: 'Roboto';
    line-height: 24px;
    padding: 52px 30px 52px 70px;
    min-width: 700px;
}

.caption:after {
    content: '';
    background: linear-gradient(90deg, rgba(27, 27, 27, 0) 0%, rgba(27, 27, 27, 0.65) 58.51%);
    transform: rotate(180deg);
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.caption span {
    z-index: 99;
    position: relative;
}

.caption span {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #E8E8E8;
}

.slider-container>.bottom-nav {
    display: none;
}

.menu-store-info:hover h3 {
    color: #fff;
}

.explore-btn {
    min-width: 144px;
    min-height: 144px;
}

.hero-section span.inactive {
    display: none;
}

.hero-section .active span.inactive {
    display: inline;
}



@media (max-width: 1280px) and (min-width:970px) {


    .bottom-nav .cat {
        font-size: 11px;
    }
}


@media (max-width: 968px) {


    .left-panel,
    .right-panel {
        width: 100%;
    }

    .caption {
        display: none;
    }
}



@media (max-width: 969px) {

    .hero-section {
        flex-direction: column;
        height: auto;
    }

    .slider-container {
        width: 100%;
    }

    .slide-count {
        display: none;
    }


    .slick-list:after {
        content: '';
        background: rgba(27, 27, 27, 0.85);
        position: absolute;
        right: 0;
        width: 80px;
        z-index: 9;
        height: 100%;
        display: block;
        z-index: 99;
        top: 0;
    }

    .bottom-nav,
    .hero-section .left-panel:after {
        width: 100%;
    }
}

@media(max-width:767px) {

    .left-panel {
        width: 100%;
    }

    .hero-section {
        flex-direction: column;
        height: auto;
    }

    .slider-container {
        width: 100%;
    }

    .slide-count {
        display: none;
    }

    .slick-list:after {
        display: none;
    }

    .left-panel .bottom-nav {
        display: none;
    }

    .left-panel h4 {
        font-size: 12px;
        line-height: 24px;
    }

    .left-panel p {
        font-size: 18px;
        line-height: 24px;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .explore-btn {
        width: 88px;
        height: 88px;
        font-size: 12px;
        line-height: 16px;
    }

    .bottom-nav .cat {
        font-size: 12px;
        line-height: 24px;
    }


    .explore-btn {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        background: #D0D0D0;
        color: #1B1B1B;
        border: none;
        cursor: pointer;
        font-weight: bold;
        font-size: 12px;
        line-height: 16px;
        font-family: 'Roboto';
        font-weight: 500;
    }

    section.store-section .left-panel {
        padding-bottom: 40px;
    }

    .left-panel {
        background: #262626;
    }

    .project-title {
        padding-top: 0;
    }

    .left-panel {
        padding-left: 20px;
    }

    .left-panel {
        padding-top: 20px;
    }

    .slide-image {
        border-radius: 40px 8px 40px 8px;
    }

    .slide-content {
        gap: 45px;
    }

    .vertical-slider .content-section {
        padding: 20px 70px;
    }

    .left-panel {
        padding-top: 71px;
    }


    .slides-container:after {
        content: '';
        width: 24px;
        height: 2px;
        border-radius: 104px;
        background: #fff;
        position: absolute;
        top: 37%;
        left: 30px;
        transform: translateY(-50%);
    }

    .slides-container:before {
        content: '';
        width: 24px;
        height: 2px;
        border-radius: 104px;
        background: #fff;
        position: absolute;
        top: 37%;
        left: auto;
        transform: translateY(-50%);
        right: 32px;
        z-index: 9;
    }

    .left-panel h4 {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .left-panel .left-hero-content p {
        font-style: normal;
        font-weight: 200;
        font-size: 18px;
        line-height: 24px;
        color: #E8E8E8;
    }

    .left-panel {
        background: #1B1B1B;
        border-radius: 104px 0 0;
        padding-left: 24px;
        padding-top: 80px;
        justify-content: flex-start;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-bottom: 80px;
        flex: auto;
    }

    .slider-container .slick-slide {
        margin-right: 16px;
    }

    .left-panel .left-hero-content p {
        margin-bottom: 24px;
    }

    .bottom-nav {
        max-width: 100%;
    }

    .bottom-nav {
        padding-left: 24px;
        padding-right: 24px;
        justify-content: flex-start;
    }

    .explore-btn {
        min-width: 88px;
        min-height: 88px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #1B1B1B;
        width: 88px;
        height: 88px;
    }

    .left-hero-content {
        width: calc(100% - 88px);
    }

    .left-panel {
        padding-left: 24px;
        gap: 15px;
        padding-right: 24px;
    }

    .main-slider img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        max-height: 356px;
    }

    .slick-list:after {
        content: '';
        background: rgba(27, 27, 27, 0.85);
        position: absolute;
        right: 0;
        width: 120px;
        z-index: 9;
        height: 100%;
        display: block;
        z-index: 99;
        top: 0;
    }

    .slick-list:after {
        width: 80px;
    }

    .slider-wrapper img {
        transition: none !important;
    }
}

@media(max-width:479px) {
    .vertical-slider .content-section {
        padding: 20px 40px;
    }

    .slides-container:before {
        content: '';
        width: 24px;
        height: 2px;
        border-radius: 104px;
        background: #fff;
        position: absolute;
        top: 30%;
        left: auto;
        transform: translateY(-50%);
        right: 8px;
        z-index: 9;
    }

    .slides-container:after {
        content: '';
        width: 24px;
        height: 2px;
        border-radius: 104px;
        background: #fff;
        position: absolute;
        top: 30%;
        left: 10px;
        transform: translateY(-50%);
    }

    .bottom-nav {
        gap: 2px;
    }
}

.vertical-slider .slides-container {
    overflow-y: auto;
}

.slides-container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.our-work {
    display: flex;
    align-items: center;
    background-color: #14192d;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.vertical-slider .slides-container {
    overflow: visible;
}



.carousel__nav__item.active {
    background: #ed3c3c !important;
    box-shadow: 0 0 16px #ed3c3c !important;
}

/* CAROUSEL */
.carousel__slider {
    position: relative;
    width: 100%;
    min-height: 100dvh;
}

.carousel__item {
    width: 100%;
    min-height: 100dvh;
    height: 1000px;
    position: absolute;
    top: 0%;
    opacity: 0;
}

.indicator.carousel__nav__item {
    box-shadow: none !important;
    background: none !important;
}

.carousel__slider .right-content {
    padding: 0;
    padding-top: 0;
}

.hero-section {
    margin-bottom: 0;
}

.slide-image img {
    border-bottom-right-radius: 104px;
    border-top-right-radius: 8px;
}

.slides-container {
    flex: initial;
    align-items: center;
}

.inner-slider .slide-image {
    border-radius: 0;
}

@media(min-width:768px) {


    .header-text p {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 32px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    h2.project-title {
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 300;
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 0.02em;
        color: #E8E8E8;
    }

    p.project-description {
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 200;
        font-size: 26px;
        line-height: 34px;
        letter-spacing: 0.02em;
        color: #E8E8E8;
    }
}

.inner-slider .right-content {
    gap: 30px;
}

.inner-slider .slide-content {
    align-items: self-start;
}

p.project-description {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 200;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #E8E8E8;
}

.navigation {
    margin-top: 0;
}


.carousel__item {
    height: 1000px;
}

.navigation {
    margin-top: 0;
}

@media(min-width:3000px) {
    .carousel__item {
        height: auto;
    }

    .carousel__slider {
        min-height: auto;
        height: 100%;
    }
}

@media(max-width:1200px) {
    .navigation {
        margin-top: 30px;
    }

    .bottom-nav {
        padding-left: 24px;
    }


    .left-panel {
        padding-left: 44px;
        padding-right: 0px;
    }

    .inner-slider .right-content br {
        display: none;
    }

}

@media(max-width:1024px) {
    .header-text {
        width: 100%;
        padding-left: 25px;
        text-align: center;
    }

    section.vertical-slider.our-work {
        min-height: 1000px !important;
    }

    .carousel__item {
        height: 1000px;
    }

    .project-title {
        padding-top: 0;
    }


    .navigation {
        margin-top: 30px;
    }

    .hero-section .left-panel {
        padding-left: 24px;
        padding-right: 24px;
    }

    .bottom-nav {
        bottom: 0px;
        padding-left: 4px;

        gap: 2px;
    }

    p.project-description {
        font-size: 25px;
        line-height: 40px;
    }

    .carousel__slider .content-section .right-content {
        padding-right: 22px;
    }

}

@media(max-width:767px) {
    .header-text p {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    .slides-container:before,
    .slides-container:after {
        display: none;
    }

    .vertical-slider .content-section {
        padding: 20px 24px;
        background: #1B1B1B;
        padding-top: 45px;
        padding-bottom: 69px;
    }

    section.vertical-slider {
        background: #1B1B1B;
    }


    section.vertical-slider.our-work {
        min-height: auto !important;
    }

    .carousel__item {
        height: auto;
    }

    .carousel__slider {
        min-height: 100dvh;
    }

    .carousel__item {
        min-height: 100dvh;
    }

    .carousel__slider .right-content {
        padding: 0;
        padding-top: 20px;
        flex: 1;
        height: 100%;
    }

    .pin-spacer.pin-spacer-st {
        padding: 0 !important;
    }

    .slide-content {
        flex-direction: column;
        gap: 0;
        height: auto;
    }

    section.vertical-slider.our-work {
        min-height: auto !important;
        display: block !important;
        height: auto !important;
    }

    .pin-spacer.pin-spacer-st {
        padding: 0 !important;
        height: auto !important;
    }

    section.vertical-slider .slick-list:after {
        display: none;
    }

    .vertical-slider {
        height: auto;
    }

    .project-title {
        padding-top: 33px;
    }

    .store-section .left-panel p {
        font-weight: 275;
        font-size: 18px;
        line-height: 24px;
        color: #E8E8E8;
    }

    p.project-description {
        overflow: visible;
    }

}

@media(max-width:556px) and (min-width:451px) {
    .book-consultation-btn {
        width: 81%;
    }

    .header-right {
        width: 75%;
        justify-content: right;
    }

    .menu-toggle {
        width: 10%;
        min-width: auto;
    }
}

@media(max-width:450px) {
    p.project-description {
        font-size: 19px;
        line-height: 28px;
    }
}

/*---------------About Page Css-----------*/



/* GRID */
.about-row {
    display: flex;
    grid-template-columns: 1fr 1fr;
    min-height: 100dvh;
    background: #1B1B1B;
}

/* IMAGE */
.about-image {
    position: relative;
}

.image-box {
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 0 80px 0 0;
    cursor: pointer;
    display: block;
}

/* Rounded images only where needed */

/* CONTENT BLOCK */
.about-content {
    display: flex;
    align-items: center;
}

.content-inner {
    padding: 100px 0;
}

/* TYPOGRAPHY */
.content-inner {
    width: 100%;
}

.about-content {
    padding-left: 132px;
    padding-right: 60px;
}

.about-row.about-row2 .about-content {
    padding-left: 102px;
    padding-right: 40px;
}

.about-row.about-row3 .about-content {
    padding-left: 132px;
    padding-right: 40px;
}

.about-content h4 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8D6B0;
    margin-bottom: 68px;
}

.content-inner p {
    font-style: normal;
    font-weight: 200;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #E8E8E8;
    margin-bottom: 32px;
    opacity: 0.8;
}

.about-row.about-row3 .about-image {
    width: 46%;
}

header.no-fixed {
    position: relative;
    z-index: 9999;
}

.image-box {
    width: 50%;
}

.about-content {
    width: 50%;
    justify-content: center;
}

.about-image.image-box {
    border-radius: 0 80px 0 0;
}

.about-row.about-row2 .image-box img {
    border-radius: 0 0 0 80px;
}

.about-image.image-box.rounded {
    border-radius: 0 0 0 80px;
}

.about-row.about-row3 .about-image.image-box.rounded,
.about-row.about-row3 .image-box img {
    border-radius: 8px 80px;

}

.about-row.about-row3 {
    padding: 104px 0 104px 104px;
    background: #0D0D0D;
}

/* ========================= */
/* 🎯 HOVER ZOOM (DESKTOP ONLY) */
/* ========================= */

@media (hover: hover) and (pointer: fine) {
    .image-box:hover img {
        transform: scale(1.06);
    }
}

/* Disable on mobile */
@media (hover: none) {
    .image-box:hover img {
        transform: none;
    }
}

/* ========================= */
/* 📌 CAREERS SECTION */
/* ========================= */

.careers-section {
    background: #262626;
    text-align: center;
    padding: 75px 20px 69px;
}

.careers-inner {
    max-width: 1055px;
    margin: 0 auto;
}

.careers-section h4 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8E8E8;
    margin-bottom: 31px;
}

.careers-section p {
    font-style: normal;
    font-weight: 200;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #E8E8E8;
    opacity: 0.8;

}

.careers-section a {
    color: #E8D6B0;
    text-decoration: none;
}

@media (max-width: 1124px) {

    .about-content,
    .about-row.about-row2 .about-content,
    .about-row.about-row3 .about-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-row.about-row3 {
        padding: 104px 0 104px 24px;
    }
}

/* ========================= */
/* 📱 MOBILE (Pixel matched stacking) */
/* ========================= */

@media (max-width: 768px) {
    .about-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .content-inner {
        padding: 40px 24px;
    }

    .image-box.rounded {
        border-radius: 16px;
    }

    .careers-section {
        padding: 60px 20px;
    }

    .image-box {
        width: 100%;
    }

    .about-content {
        width: 100%;
    }

    .about-row {
        flex-direction: column;
    }

    .about-image.image-box,
    .image-box img {
        border-radius: 0;
    }

    .image-box:hover img {
        transform: scale(1);
    }



    .about-content h4 {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.14em;
        color: #E8D6B0;
        margin-bottom: 19px;
    }

    .content-inner p {
        font-style: normal;
        font-weight: 200;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.02em;

    }

    .content-inner {
        padding-top: 43px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 52px;
    }

    .about-row.about-row2 .image-box img {
        border-radius: 40px 4px;
    }

    .about-row.about-row3 .image-box img {
        border-radius: 40px 4px;
    }

    .about-row.about-row2 {
        flex-direction: column-reverse;
    }

    .about-row.about-row3 .about-image.image-box.rounded,
    .about-row.about-row2 .about-image.image-box.rounded {
        padding-left: 24px;
        padding-right: 24px;
        border-radius: 0;
    }

    .about-row.about-row3 {
        padding: 0;
        background: #1B1B1B;
    }

    .careers-section h4 {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 0.14em;


    }

    .careers-section p {
        font-style: normal;
        font-weight: 200;
        font-size: 16px;
        line-height: 24px;
        /* or 150% */
        text-align: center;
        color: #E8E8E8;


    }

    .careers-section {
        padding: 54px 24px 55px;
    }

    .about-row.about-row3 .content-inner {
        padding-bottom: 76px;
    }

    .content-inner p br {
        display: none;
    }
}



.headerheight {
    min-height: 104px;
}

header {
    position: static;
    top: -104px;
    transition: all 0.3s;
}

body.scroll-body.scroll-body1 header {
    position: fixed;
    top: 0;
}

.home .headerheight {
    position: relative;
    z-index: 99;
}

body.open-menu header {
    position: fixed;
    top: 0;
}

.open-menu.home .headerheight {
    position: static;
}

.bottom-nav {
    display: flex;
    gap: 6px;
}

.bottom-nav .cat {
    color: #777;
    position: relative;
    transition: color 0.3s ease;
}

/* default slash between items */
.bottom-nav .cat:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    opacity: 0.3;
}

/* ACTIVE TEXT */
.bottom-nav .cat.active {
    color: #E8D6B0;
}

/* LEFT SLASH for active */
.bottom-nav .cat.active::before {
    content: "/";
    position: absolute;
    left: -14px;
    color: #E8D6B0;
}

/* RIGHT SLASH for active */
.bottom-nav .cat.active::after {
    content: "/";
    margin-left: 6px;
    color: #E8D6B0;
    opacity: 1;
}

.bottom-nav .cat.active:first-child:before,
.bottom-nav .cat.active:last-child:after {
    display: none;
}

@media(min-width:768px) {
    section.living {
        margin-top: -104px;
    }
}





.demo-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 100vh;
    padding: 40px;
}

.demo-page h1 {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8D6B0;
    margin-bottom: 16px;
}

.demo-page p {
    font-family: 'Titillium Web';
    font-weight: 275;
    font-size: 18px;
    color: #E8E8E8;
    opacity: 0.8;
    margin-bottom: 24px;
    text-align: center;
}

.trigger-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Accent button (default) */
.btn-consult {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #1B1B1B;
    background: #E8D6B0;
    border: none;
    border-radius: 104px;
    padding: 17px 34px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-consult:hover {
    background: #ffffff;
}

/* Ghost link trigger */
.link-consult {
    font-family: 'Titillium Web';
    font-weight: 275;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #E8D6B0;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
}

/* ─── OVERLAY ─── */
#consultOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(73, 73, 73, 0.80);
    /* HEX 494949 @ 80% */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

#consultOverlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ─── MODAL CARD ─── */
.consult-modal {
    background: #1E1E1E;
    border-radius: 24px;
    width: 100%;
    max-width: 848px;
    padding: 83px 88px 61px;
    position: relative;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.34, 1.36, 0.64, 1), opacity 0.28s ease;
    opacity: 0;
    max-height: 90vh;
    overflow-y: auto;
}

#consultOverlay.active .consult-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* ─── CLOSE BUTTON ─── */
.consult-close {
    position: absolute;
    top: 20px;
    right: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #A2A2A2;
    transition: color 0.2s;
    line-height: 1;
    padding: 4px;
}

.consult-close:hover {
    color: #ffffff;
}

.consult-close svg {
    display: block;
    color: #A2A2A2;
    height: 24px;
    width: 24px;
}

/* ─── HEADER ─── */
.consult-modal h2 {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8D6B0;
    margin-bottom: 14px;
}

.consult-modal .intro {
    font-family: 'Titillium Web';
    font-weight: 275;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #E8E8E8;
    opacity: 0.8;
    margin-bottom: 28px;
}

/* ─── FORM ─── */
.consult-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TEXT / EMAIL INPUTS */
.consult-form input[type="text"],
.consult-form input[type="email"],
.consult-form input[type="tel"] {
    width: 100%;
    padding: 15px 32px;
    background: transparent;
    border: 1px solid #A2A2A2;
    border-radius: 104px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #616161;
    outline: none;
    transition: border-color 0.2s, color 0.2s;
}

.consult-form input::placeholder {
    color: #616161;
    text-transform: uppercase;
}

/* Active / focus state */
.consult-form input[type="text"]:focus,
.consult-form input[type="email"]:focus,
.consult-form input[type="tel"]:focus {
    border-color: #FFFFFF;
    color: #ffffff;
}

/* Once user has typed, keep white text */
.consult-form input.has-value {
    color: #ffffff;
}

/* ─── CUSTOM SELECT ─── */
.select-wrap {
    position: relative;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 28px;
    background: transparent;
    border: 1px solid #A2A2A2;
    border-radius: 104px;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.15em;
    color: #616161;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s;
    outline: none;
}

.select-trigger:hover,
.select-wrap.open .select-trigger {
    border-color: #ffffff;
}

/* Active (focused-open) state outline */
.select-wrap.open .select-trigger {
    border-color: #ffffff;
}

.select-trigger-text {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #616161;
    transition: color 0.2s;
}

.select-trigger-text.chosen {
    color: #E8E8E8;
}

.chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: #616161;
}

.select-wrap.open .chevron {
    transform: rotate(180deg);
}

/* DROPDOWN PANEL */
.select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #262626;
    border: 1px solid #A2A2A2;
    border-radius: 32px;
    overflow: hidden;
    z-index: 200;
    animation: dropIn 0.18s ease;
}

.select-wrap.open .select-dropdown {
    display: block;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-inner {
    padding: 14px;
}

.dropdown-item {
    font-family: 'Titillium Web';
    font-weight: 275;
    font-size: 20px;
    line-height: 44px;
    letter-spacing: 0.02em;
    color: #E8E8E8;
    opacity: 0.8;
    padding: 0 18px;
    border-radius: 104px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.dropdown-item:hover {
    background: #494949;
    color: #E8E8E8;
    opacity: 1;
}

.dropdown-item.active {
    background: #383838;
    color: #E8D6B0;
    font-weight: 600;
    opacity: 1;
}

.dropdown-item.placeholder-option {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #616161 !important;
    background: transparent !important;
    opacity: 1;
    cursor: auto;
    margin-bottom: 6px;
    pointer-events: none;
}

/* ─── TEXTAREA ─── */
.consult-form textarea {
    width: 100%;
    padding: 15px 28px;
    background: transparent;
    border: 1px solid #A2A2A2;
    border-radius: 20px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.12em;
    color: #616161;
    min-height: 140px;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s, color 0.2s;
}

.consult-form textarea::placeholder {
    color: #616161;
    text-transform: uppercase;
    font-weight: 500;
}

.consult-form textarea:focus {
    border-color: #ffffff;
    color: #ffffff;
}

.consult-form textarea.has-value {
    color: #ffffff;
}

/* ─── ERROR MESSAGES ─── */
.field-wrap {
    position: relative;
}

.error-msg {
    display: none;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E57373;
    margin-top: 6px;
    padding-left: 20px;
}

.field-wrap.has-error input,
.field-wrap.has-error textarea,
.field-wrap.has-error .select-trigger {
    border-color: #E57373 !important;
}

.field-wrap.has-error .error-msg {
    display: block;
}

/* ─── SUBMIT BUTTON ─── */
.consult-submit-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.consult-submit {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    /* or 133% */
    text-align: center;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #1B1B1B;
    background: #E8D6B0;
    border: none;
    border-radius: 104px;
    padding: 20px 39px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    padding: 14px 39px 11px;
    width: 100%;
    line-height: normal;
}

.consult-submit:hover {
    background: #ffffff;
}

.consult-submit:active {
    transform: scale(0.97);
}

/* ─── SUCCESS STATE ─── */
.consult-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 20px 0;
}

.consult-success svg {
    color: #E8D6B0;
}

.consult-success h3 {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E8D6B0;
}

.consult-success p {
    font-family: 'Titillium Web';
    font-weight: 275;
    font-size: 16px;
    color: #E8E8E8;
    opacity: 0.8;
    line-height: 24px;
}

/* ─── SCROLLBAR STYLE ─── */
.consult-modal::-webkit-scrollbar {
    width: 4px;
}

.consult-modal::-webkit-scrollbar-track {
    background: transparent;
}

.consult-modal::-webkit-scrollbar-thumb {
    background: #494949;
    border-radius: 4px;
}

.consult-form input[type="text"],
.consult-form input[type="email"],
.consult-form input[type="tel"] {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #616161;
}

.consult-form textarea::placeholder {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 275;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #D0D0D0;
    text-transform: inherit;
}

.consult-form textarea::placeholder {
    opacity: 0.8;
}

.consult-form textarea {
    min-height: 248px;
    font-size: 24px;
    line-height: 36px;
}

.consult-modal .intro {
    / font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 275;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #E8E8E8;
}

.consult-modal h2 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8D6B0;
}

.open-consult {
    cursor: pointer;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .consult-modal {
        padding: 44px 28px 43px;
    }


    .consult-modal {
        padding: 44px 28px 43px;
    }

    .consult-modal h2 {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #E8D6B0;
    }

    .consult-modal .intro {
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 21px;
        color: #E8E8E8;
    }

    .consult-form input[type="text"],
    .consult-form input[type="email"],
    .consult-form input[type="tel"] {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #616161;
        padding: 11px 21px;
    }

    .consult-form textarea {
        min-height: 256px;
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 275;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.02em;
        color: #D0D0D0;
        overflow: auto;
    }


    .consult-submit {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #1B1B1B;
        padding: 14px 39px 11px;
        width: 100%;
        line-height: normal;
        width: 100%;
    }

    .consult-form textarea::placeholder {
        opacity: 0.8;
        min-height: 216px;
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 275;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.02em;
        color: #D0D0D0;
    }
}


.bottom-nav.mobile-nav-slide {
    display: none;
}

@media (max-width: 767px) {

    .book-consultation-btn {
        padding: 5px 17px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #E8E8E8;
        margin-right: 32px;
    }

    header {
        padding: 2px 20px;
    }

    .headerheight {
        min-height: 56px;
    }

    .home header {
        position: absolute !important;
        top: 0;
    }

    .headerheight {
        min-height: auto;
    }

    .menu-icon span:nth-child(3) {
        width: 40px;
    }

    .menu-icon span:nth-child(2) {
        width: 27px;
    }

    .menu-toggle:hover .menu-icon span {
        width: 40px;
    }

    .menu-column ul li a {
        padding: 16px 0 16px;
    }

    .slide-menu {
        height: 100vh;
    }

    .open-menu .menu-icon span:nth-child(3) {
        width: 23px !important;
    }

    .open-menu .menu-icon span:nth-child(2) {
        width: 23px !important;
    }

    .menu-toggle {
        margin-right: 10px;
    }

    .menu-social {
        margin-top: 56px;
    }

    .menu-content {
        padding: 90px 20px 30px;
        gap: 0;
    }

    body.open-menu header {
        position: fixed !important;
        top: 0;
    }

    .slide-menu {
        top: -100vh;
    }

    .home .headerheight {
        position: relative;
        z-index: 9999;
    }

    .full-width-wrapper h3 {
        margin-bottom: 18px;
        text-transform: inherit;
        letter-spacing: 0;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .full-width-wrapper p {
        opacity: 1;
        font-family: 'Titillium Web';
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #E8E8E8;
    }

    .left-panel {
        border-radius: 48px 0 0;
    }

    .left-panel .left-hero-content p {
        opacity: 1;
    }

    .hero-section .left-panel {
        padding-bottom: 40px;
    }

    .slick-list:after {
        width: 40px;
    }

    .hero-section button.slick-next.slick-arrow {
        width: 40px;
    }

    .bottom-nav .cat {
        position: relative;
        transition: color 0.3s ease;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .bottom-nav {
        margin-top: 0;
        height: auto;
        min-height: 76px;
    }

    .bottom-nav.mobile-nav-slide {
        display: flex;
        margin-top: 0;
    }

    .outdoor-text {
        margin-bottom: 45px;
    }

    .outdoor-content p {
        opacity: 1;
    }

    a.explore {
        padding: 32px 9px;
        font-size: 12px;
        letter-spacing: 0.14em;
        width: 88px;
        height: 88px;
        text-align: center;
        min-width: 88px;
        min-height: 88px;
    }

    .slide-image img {
        border-radius: 40px 4px;
    }

    p.project-description {
        opacity: 1;
    }

    .vertical-slider .content-section {
        padding-top: 65px;
        padding-bottom: 85px;
    }

    .store-btn {
        min-width: 88px;
        min-height: 88px;
    }

    .store-section .left-panel p {
        opacity: 1;
    }

    section.store-section .left-panel {
        padding-bottom: 40px;
        border-radius: 48px 0 0;
    }

    section.store-section {
        background: #1B1B1B;
    }

    .store-btn {
        align-self: center;
    }

    section.promise-section {
        padding-bottom: 103px;
    }

    p.card-description {
        opacity: 1;
    }

    section.promise-section {
        padding-bottom: 103px;
        min-height: auto;
    }

    .card-image {
        height: auto;
        border: 0;
        width: 35.3%;
        padding-bottom: 42%;
        min-width: 128px;
    }

    .card-content {
        width: 65%;
    }

    h2.section-title {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #E8E8E8;
    }

    .content-inner p {
        opacity: 1;
    }

    .about-row.about-row3 .about-image {
        width: 100%;
    }

    .contact-page p,
    .contact-page .store-desc,
    .contact-page .address,
    .careers-section p {
        opacity: 1;
    }

    .footer-column.menu-column h3,
    .footer-column.menu-column h3 a {
        margin: 0;
    }

    .footer-column.menu-column h3:nth-child(3) {
        margin-bottom: 30px !important;
    }

    .footer-column.menu-column h3 a {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #E8E8E8 !important;
        -webkit-text-fill-color: #E8E8E8;
    }

    .footer-column.menu-column h3:last-of-type {
        margin-bottom: 15px;
    }

    p.visible-phone.mobile-contact {
        opacity: 1;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 300;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #E8E8E8;
    }

    p.visible-phone.mobile-contact a {
        opacity: 1;
        color: #E8D6B0;
    }

    button.cta-button {
        font-size: 14px;
        min-width: auto;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: normal;
        text-align: center;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #1B1B1B;
        padding: 14px 27px 13px;
        margin-bottom: 38px;
    }

    .footer-column p {
        margin-bottom: 30px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 300;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #E8E8E8;
    }



    p.visible-phone.mobile-contact a {
        margin-top: 30px;
    }

    footer .social-icons {
        padding-left: 10px;
    }

    .book-consultation-btn {
        margin-right: 20px;
    }

    .careers-inner br {
        display: inline-block;
    }

    body.scroll-body.scroll-body1 header {
        position: static;
    }

    #backToTop {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 46px;
        height: 46px;
        border: 1px solid #E8D6B0;
        border-radius: 50%;
        background: rgba(27, 27, 27, 0.9);
        color: #E8D6B0;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    /* SHOW BUTTON */
    #backToTop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* HOVER */
    #backToTop:hover {
        background: #E8D6B0;
        color: #1B1B1B;
    }

    .contact-page .right-content a {
        -webkit-text-fill-color: #ffffff;
        text-decoration: none;
    }

    .contact-page .right-content a:hover {
        -webkit-text-fill-color: #E8D6B0;
    }

    .footer-column a,
    .footer-column a:link,
    .footer-column a:visited {
        color: #E8E8E8;
        text-decoration: none;
        -webkit-text-fill-color: #E8D6B0;
        /* Safari fix */
    }

    p.visible-phone.mobile-contact {
        margin: 0;
    }

}

/* MOBILE ONLY */
@media (min-width: 769px) {
    #backToTop {
        display: none;
    }
}

@media (max-width: 585px) {
    .card-content {
        width: 100%;
    }



    .bottom-nav {
        padding-left: 14px;
    }

}
@media (max-width: 450px) {
.contact-page .right-content br {
    display: none;
}
}
@media (max-width: 585px) {

    .card-image {
        padding-bottom: 52%;
    }

    .menu-social {
        margin-top: 26px;
    }

    .menu-column:nth-child(2) ul li:last-child {
        border-bottom: 0;
    }

    .outdoor-image:first-child img {
        border-top-left-radius: 48px !important;
    }

    .outdoor-image:first-child {

        border-top-left-radius: 0;
    }
}

@media (max-width: 585px) {
    .card-image {
        min-width: 124px;
    }

    .card-content {
        padding: 22px 11px 13px;
    }
}







.services-section {
    background: #0f0f0f;
    padding: 40px 0 70px;
    overflow: hidden;
}

.page-center {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    padding-left: 105px;
}

.services-grid {
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 0;
    align-items: start;
}

/* LEFT SIDE */

.services-left {
    padding-right: 0;
    width: 37.5%;
}

.services-heading {
    padding: 8px 28px 96px 0;
}

.services-heading h2 {
    color: #d9d9d9;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    margin: 0 0 70px;
}

.service-intro {
    max-width: 255px;
}

.service-intro span,
.service-content span {
    display: block;
    color: #d8c8a1;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
}

.service-intro p,
.service-content p {
    color: #7c7c7c;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

/* IMAGES */

.service-image {
    overflow: hidden;
    border-radius: 42px 42px 42px 42px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* LEFT BIG IMAGE */

.left-card .service-image {
    height: 928px;
    border-top-right-radius: 0;
}

/* RIGHT TOP */

.top-card .service-image {
    border-bottom-left-radius: 0;
}

/* RIGHT BOTTOM */

.bottom-card {
    margin-top: 4px;
}

.bottom-card .service-image {
    height: auto;
    border-top-left-radius: 0;
}

.bottom-card .service-content {
    padding-top: 42px;
    max-width: 520px;
}

.left-card .service-content {
    padding-top: 42px;
    max-width: 520px;
}

/* RESPONSIVE */

@media (max-width: 1199px) {

    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-heading {
        padding-right: 0;
    }

    .service-intro {
        max-width: 100%;
    }

    .left-card .service-image,
    .top-card .service-image,
    .bottom-card .service-image {
        height: auto;
    }

    .service-image img {
        aspect-ratio: auto;
    }
}

@media (max-width: 767px) {

    .page-center {
        padding: 0 20px;
    }

    .services-heading h2 {
        font-size: 34px;
        margin-bottom: 50px;
    }

    .service-intro p,
    .service-content p {
        font-size: 13px;
    }

    .left-card .service-content,
    .bottom-card .service-content {
        padding-top: 28px;
    }

    .service-image {
        border-radius: 24px;
    }

    .slick-slide {
        margin-right: 0;
    }

    .slide-image img {
        max-width: 342px;
    }
}

.services-grid {
    display: flex;
    gap: 16px;
}

.services-right {
    width: 51%;
}







@media(max-width:767px) {

    /* Fix 1: Prevent mid-word/mid-phrase breaks in hours text */
    .footer-hours,
    .footer-phone {
        white-space: nowrap;
        /* prevent any wrapping */
        /* OR if wrapping is needed: */
        word-break: keep-all;
        /* Safari-safe: never break mid-word */
        overflow-wrap: normal;
        /* don't force breaks */
        -webkit-hyphens: none;
        /* disable Safari auto-hyphenation */
        hyphens: none;
    }

    /* Fix 2: Contact items inline (Vishal / Vishakha on same line as their numbers) */
    .footer-contact-item {
        display: flex;
        /* instead of block */
        flex-wrap: wrap;
        gap: 0.25rem;
        white-space: nowrap;
        /* keep "NAME: +91 XXXX" together */
    }

    /* Fix 3: General Safari text rendering fix for footer */
    .footer {
        -webkit-text-size-adjust: 100%;
        /* prevent Safari font inflation */
        text-size-adjust: 100%;
    }

    .footer-middle .footer-column:first-child .footer-cta p:nth-child(1) {
        margin: 0;
    }

    .footer-middle .footer-column p:nth-child(2),
    .footer-middle .footer-column p:nth-child(3) {
        margin: 0;
    }

    p.visible-phone.mobile-contact,
    .footer-column p span,
    .footer-column p {
        text-decoration: none !important;
        -webkit-text-fill-color: #E8E8E8;
    }

    button.cta-button {
        margin-top: 36px;
    }

    .mobile-contact {
        display: block !important;
        white-space: nowrap;
        margin: 0 0 4px 0;
        line-height: 1.6;
        color: #E8E8E8 !important;
    }

    .mobile-contact a {
        color: inherit !important;
        text-decoration: none !important;
    }

    .mobile-hours {
        display: block;
        white-space: nowrap;
        margin: 0 0 4px 0;
        line-height: 1.6;
        color: #E8E8E8;
    }

    .footer-middle .footer-column p:nth-child(3) {
        margin-bottom: 30px;
    }
}

@media(min-width:768px) {

    .footer-column p,
    .footer-column a {
        opacity: 0.8;
    }
}