/* =========================================================
   M.R. CONSTRUCTIONS
   CLEAN MASTER STYLESHEET
========================================================= */
/* =========================================================
   RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #050505;
    color: #ffffff;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}
body {
    position: relative;
}
button,
input,
select,
textarea {
    font-family: inherit;
}
button,
a {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
}
/* =========================================================
   CINEMATIC CONTAINER
========================================================= */
.cinematic {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
/* =========================================================
   SCENES
========================================================= */
.scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition:
        opacity 0.55s ease,
        visibility 0.55s ease,
        transform 0.75s ease;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.scene.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
/* =========================================================
   BACKGROUND IMAGES
========================================================= */
#homeScene {
    background-image: url("../images/house/home.png");
}
#aboutScene {
    background-image: url("../images/house/entrance.png");
}
#servicesScene2,
#servicesScene3 {
    background-image: url("../images/house/hall.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}#servicesScene {
    background-image: url("../images/house/hall.png");
}
#projectsScene {
    background-image: url("../images/house/room.png");
}
#contactScene {
    background-image: url("../images/house/consruction.png");
}
/* =========================================================
   DARK OVERLAY
========================================================= */
.scene-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.48) 42%,
            rgba(0, 0, 0, 0.20) 100%
        );
}
.about-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.70),
            rgba(0, 0, 0, 0.32)
        );
}
/* =========================================================
   NAVBAR
========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.10);
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0)
        );
}
/* =========================================================
   LOGO
========================================================= */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 245px;
}
.logo-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border:
        1px solid
        rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.10em;
}
.logo-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo-name strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.15;
    white-space: nowrap;
}
.logo-name small {
    display: block;
    margin-top: 5px;
    font-size: 6px;
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 1.3;
    color:
        rgba(255, 255, 255, 0.62);
    white-space: nowrap;
}
/* =========================================================
   DESKTOP NAVIGATION
========================================================= */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.desktop-nav a {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    transition:
        color 0.25s ease;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #d7b34c;
    transition:
        width 0.25s ease;
}
.desktop-nav a:hover {
    color: #d7b34c;
}
.desktop-nav a:hover::after {
    width: 100%;
}
/* =========================================================
   QUOTE BUTTON
========================================================= */
.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    padding: 13px 17px;
    border:
        1px solid
        #d7b34c;
    color: #ffffff;
    font-size: 8px;
    letter-spacing: 0.18em;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}
.quote-btn:hover {
    background: #d7b34c;
    color: #111111;
}
/* =========================================================
   MOBILE MENU BUTTON
========================================================= */
.menu-btn {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
}
.menu-btn span {
    display: block;
    width: 25px;
    height: 1px;
    margin: 6px auto;
    background: #ffffff;
}
/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 950;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background:
        rgba(5, 5, 5, 0.97);
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    font-size: 11px;
    letter-spacing: 0.30em;
    color: #ffffff;
}
/* =========================================================
   HOME CONTENT
========================================================= */
.home-content {
    position: absolute;
    top: 50%;
    left: 7%;
    width: min(680px, 80vw);
    transform: translateY(-50%);
    z-index: 20;
    text-align: left;
}
.home-company {
    display: inline-block;
    margin-bottom: 18px;
    padding: 0;
    color: #d7b34c;
    background: transparent;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.30em;
}
.home-content h1 {
    margin: 0;
    color: #ffffff;
    font-size:
        clamp(45px, 5.2vw, 76px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.025em;
}
.home-content h1 span {
    display: block;
}
.home-content p {
    width: min(600px, 100%);
    margin-top: 22px;
    color:
        rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.65;
}
.home-content p + p {
    margin-top: 10px;
}
.home-cta {
    display: inline-flex;
    margin-top: 25px;
    padding: 14px 21px;
    border:
        1px solid
        #d7b34c;
    background:
        rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}
.home-cta:hover {
    background: #d7b34c;
    color: #111111;
    transform: translateY(-2px);
}
/* =========================================================
   GENERIC PAGE CONTENT
========================================================= */
.page-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(980px, 88vw);
    max-height: calc(100vh - 150px);
    transform: translate(-50%, -50%);
    z-index: 20;
    overflow: hidden;
    text-align: center;
}
.page-label {
    margin-bottom: 16px;
    color: #d7b34c;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.30em;
}
.page-content h1 {
    margin: 0;
    color: #ffffff;
    font-size:
        clamp(42px, 5vw, 70px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}
.page-content h1 span {
    display: inline;
}
.page-content h1 em {
    color: #d7b34c;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-style: italic;
}
.tagline {
    margin-top: 17px;
    color:
        rgba(255, 255, 255, 0.70);
    font-size: 9px;
    letter-spacing: 0.25em;
}
.page-description {
    width: min(680px, 100%);
    margin: 20px auto 28px;
    color:
        rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.65;
}
/* =========================================================
   ABOUT
========================================================= */
.about-content {
    max-width: 1000px;
}
.info-list {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 13px 18px;
    margin-top: 25px;
}
.info-item {
    padding: 16px 20px;
    border:
        1px solid
        rgba(255, 255, 255, 0.13);
    background:
        rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(3px);
    text-align: center;
}
.info-item h3 {
    margin-bottom: 8px;
    color: #d7b34c;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.20em;
}
.info-item p {
    color:
        rgba(255, 255, 255, 0.70);
    font-size: 12px;
    line-height: 1.55;
}
.page-location {
    margin-top: 20px;
    color:
        rgba(255, 255, 255, 0.50);
    font-size: 8px;
    letter-spacing: 0.30em;
}
/* =========================================================
   SERVICES
========================================================= */
.services-content {
    max-width: 1020px;
    width: min(1020px, 88vw);
    max-height: calc(100vh - 120px);
}
.service-list {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.service-item {
    min-height: 125px;
    padding: 16px 14px;
    border:
        1px solid
        rgba(255, 255, 255, 0.13);
    background:
        rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(3px);
    text-align: center;
}
.service-item h3 {
    margin-bottom: 9px;
    color: #d7b34c;
    font-size: 8px;
    letter-spacing: 0.15em;
}
.service-item p {
    color:
        rgba(255, 255, 255, 0.69);
    font-size: 11px;
    line-height: 1.5;
}
/* =========================================================
   PROJECTS
========================================================= */
.projects-content {
    max-width: 1000px;
}
.project-types {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 25px;
}
.project-item {
    min-height: 130px;
    padding: 18px;
    border:
        1px solid
        rgba(255, 255, 255, 0.13);
    background:
        rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(3px);
    text-align: center;
}
.project-item h3 {
    margin-bottom: 9px;
    color: #d7b34c;
    font-size: 9px;
    letter-spacing: 0.17em;
}
.project-item p {
    color:
        rgba(255, 255, 255, 0.69);
    font-size: 11px;
    line-height: 1.55;
}
.project-note {
    margin-top: 20px;
    color:
        rgba(255, 255, 255, 0.55);
    font-size: 8px;
    letter-spacing: 0.25em;
}
/* =========================================================
   CONTACT LAYOUT
========================================================= */
.contact-layout {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: grid;
    grid-template-columns:
        0.85fr 1.15fr;
    align-items: center;
    gap: 65px;
    padding:
        115px 7vw 55px;
}
/* =========================================================
   CONTACT LEFT
========================================================= */
.contact-left {
    max-width: 500px;
}
.contact-left h1 {
    margin: 18px 0;
    color: #ffffff;
    font-size:
        clamp(45px, 5vw, 70px);
    font-weight: 600;
    line-height: 0.95;
}
.contact-left h1 em {
    color: #d7b34c;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-style: italic;
}
.contact-intro {
    max-width: 460px;
    margin: 25px 0 38px;
    color:
        rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}
/* =========================================================
   CONTACT DETAILS
========================================================= */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}
.detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border:
        1px solid
        #d7b34c;
    border-radius: 50%;
    color: #d7b34c;
    font-size: 17px;
}
.contact-detail span {
    display: block;
    margin-bottom: 4px;
    color: #d7b34c;
    font-size: 10px;
    letter-spacing: 0.20em;
}
.contact-detail strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
}
/* =========================================================
   CONTACT FORM
========================================================= */
.contact-form-panel {
    width: 100%;
    max-width: 650px;
    padding: 30px;
    border:
        1px solid
        rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background:
        rgba(5, 5, 5, 0.48);
    backdrop-filter: blur(8px);
}
.contact-form-panel h2 {
    margin-bottom: 23px;
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 30px;
    font-weight: 500;
}
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-group label {
    color:
        rgba(255, 255, 255, 0.75);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
#contactScene input,
#contactScene select,
#contactScene textarea {
    width: 100%;
    padding: 12px 14px;
    border:
        1px solid
        rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    outline: none;
    background:
        rgba(255, 255, 255, 0.045);
    color: #ffffff;
    font-size: 15px;
    transition:
        border-color 0.2s ease;
}
#contactScene input::placeholder,
#contactScene textarea::placeholder {
    color:
        rgba(255, 255, 255, 0.35);
}
#contactScene select option {
    background: #151515;
    color: #ffffff;
}
#contactScene input:focus,
#contactScene select:focus,
#contactScene textarea:focus {
    border-color: #d7b34c;
}
#contactScene textarea {
    min-height: 92px;
    resize: vertical;
}
.send-enquiry {
    width: 100%;
    margin-top: 3px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 0;
    background: #d7b34c;
    color: #111111;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}
.send-enquiry:hover {
    background: #e4c366;
    transform: translateY(-2px);
}
/* =========================================================
   LIGHT SWITCH
========================================================= */
.light-switch {
    position: absolute;
    right: 6vw;
    bottom: 70px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border:
        1px solid
        rgba(255, 255, 255, 0.22);
    background:
        rgba(0, 0, 0, 0.30);
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.14em;
    backdrop-filter: blur(5px);
}
.light-switch .bulb {
    color: #d7b34c;
    font-size: 18px;
    line-height: 1;
}
.light-switch .switch {
    position: relative;
    width: 27px;
    height: 14px;
    border-radius: 20px;
    background:
        rgba(255, 255, 255, 0.25);
}
.light-switch .switch-dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d7b34c;
    transition:
        transform 0.25s ease;
}
body.lights-off .light-switch .switch-dot {
    transform: translateX(13px);
}
body.lights-off .scene-overlay {
    background:
        rgba(0, 0, 0, 0.72);
}
/* =========================================================
   BOTTOM SCROLL
========================================================= */
.bottom-scroll {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    z-index: 30;
    color:
        rgba(255, 255, 255, 0.55);
    font-size: 7px;
    letter-spacing: 0.30em;
    white-space: nowrap;
}
.bottom-scroll::after {
    content: "";
    display: block;
    width: 35px;
    height: 1px;
    margin: 8px auto 0;
    background:
        rgba(255, 255, 255, 0.35);
}
/* =========================================================
   TRANSITION SCREEN
========================================================= */
.transition-screen {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    background: #050505;
    opacity: 0;
    transition:
        opacity 0.35s ease;
}
/* =========================================================
   RESPONSIVE — TABLET
========================================================= */
@media (max-width: 1100px) {
    .navbar {
        padding: 0 4vw;
    }
    .desktop-nav {
        gap: 18px;
    }
    .desktop-nav a {
        font-size: 10px;
    }
    .logo {
        min-width: 210px;
    }
    .service-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .project-types {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
    .contact-layout {
        gap: 35px;
        padding-left: 5vw;
        padding-right: 5vw;
    }
}
/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */
@media (max-width: 800px) {
    body {
        overflow: hidden;
    }
    .navbar {
        height: 76px;
        padding: 0 5vw;
    }
    .desktop-nav,
    .quote-btn {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .logo {
        min-width: 0;
    }
    .logo-mark {
        width: 35px;
        height: 35px;
    }
    .logo-name strong {
        font-size: 11px;
    }
    .logo-name small {
        font-size: 5px;
        letter-spacing: 0.10em;
    }
    /* HOME */
    .home-content {
        left: 7%;
        width: 86vw;
    }
    .home-company {
    display: inline-block;
    margin-bottom: 18px;
    padding: 0;
    color: #d7b34c;
    background: transparent;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.30em;
}
    .home-content h1 {
        font-size:
            clamp(38px, 10vw, 55px);
    }
    .home-content p {
        font-size: 15px;
        line-height: 1.55;
    }
    /* GENERIC PAGES */
    .page-content {
        width: 88vw;
        max-height:
            calc(100vh - 130px);
        overflow-y: auto;
        scrollbar-width: none;
    }
    .page-content::-webkit-scrollbar {
        display: none;
    }
    .page-content h1 {
        font-size:
            clamp(36px, 9vw, 52px);
    }
    .info-list,
    .service-list,
    .project-types {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .info-item,
    .service-item,
    .project-item {
        min-height: auto;
        padding: 13px;
    }
    /* CONTACT */
    .contact-layout {
        position: absolute;
        inset: auto;
        top: 76px;
        left: 0;
        width: 100%;
        height: calc(100% - 76px);
        display: block;
        overflow-y: auto;
        padding:
            35px 6vw 100px;
        scrollbar-width: none;
    }
    .contact-layout::-webkit-scrollbar {
        display: none;
    }
    .contact-left {
        max-width: 100%;
    }
    .contact-left h1 {
        font-size:
            clamp(40px, 10vw, 56px);
    }
    .contact-intro {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .contact-form-panel {
        margin-top: 35px;
        padding: 22px;
    }
    .contact-form-panel h2 {
        font-size: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    /* LIGHT */
    .light-switch {
        right: 5vw;
        bottom: 55px;
    }
    .bottom-scroll {
        bottom: 15px;
        font-size: 6px;
    }
}
/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 480px) {
    .logo-mark {
        display: none;
    }
    .logo-name strong {
        font-size: 10px;
    }
    .logo-name small {
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .home-content {
        left: 6%;
        width: 88vw;
    }
    .home-content h1 {
        font-size: 38px;
    }
    .home-cta {
        font-size: 10px;
        padding: 12px 15px;
    }
    .contact-form-panel {
        padding: 18px;
    }
}
/* =========================================================
   CINEMATIC DOOR APPROACH
   Triggered ONLY by mouse scroll navigation
========================================================= */
.cinematic.door-transition .scene.active {
    transform-origin: 68% 52%;
    transform:
        scale(1.38);
    filter:
        brightness(0.72);
    transition:
        transform 0.72s cubic-bezier(0.65, 0, 0.35, 1),
        filter 0.72s ease,
        opacity 0.72s ease;
}
.cinematic.door-transition.door-reverse .scene.active {
    transform-origin: 68% 52%;
    transform:
        scale(0.88);
    filter:
        brightness(0.82);
    transition:
        transform 0.72s cubic-bezier(0.65, 0, 0.35, 1),
        filter 0.72s ease,
        opacity 0.72s ease;
}

/* =========================================================
   HOME DOOR HOTSPOT
   No automatic animation
========================================================= */

.door-hotspot {
    position: absolute;

    /*
       Door location.
       We can fine-tune this after seeing the screenshot.
    */
    left: 69%;
    top: 55%;

    width: 120px;
    height: 180px;

    z-index: 40;

    border: 0;

    background: transparent;

    cursor: pointer;

    transform: translate(-50%, -50%);
}


/* Invisible door area */

.door-hotspot-ring {
    position: absolute;

    inset: 10px;

    border:
        1px solid
        rgba(215, 179, 76, 0.75);

    opacity: 0;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* Hover */

.door-hotspot:hover .door-hotspot-ring {
    opacity: 1;

    transform: scale(1.04);
}


/* Text */

.door-hotspot-label {
    position: absolute;

    left: 50%;
    bottom: -32px;

    transform: translateX(-50%);

    white-space: nowrap;

    padding: 7px 11px;

    border:
        1px solid
        rgba(215, 179, 76, 0.7);

    background:
        rgba(0, 0, 0, 0.65);

    color: #ffffff;

    font-size: 10px;

    letter-spacing: 0.18em;

    opacity: 0;

    transition:
        opacity 0.25s ease;
}

.door-hotspot:hover .door-hotspot-label {
    opacity: 1;
}


/* =========================================================
   HOME ? ENTRANCE CAMERA APPROACH
========================================================= */

.cinematic.walk-to-entrance #homeScene {
    transform-origin: 69% 55%;

    transform: scale(1.45);

    filter: brightness(0.82);

    transition:
        transform 0.9s
        cubic-bezier(0.65, 0, 0.35, 1),

        filter 0.9s ease;
}


/* Entrance scene */

.cinematic.enter-entrance #aboutScene {
    transform:
        scale(1.08);

    opacity: 1;

    transition:
        transform 0.65s
        cubic-bezier(0.22, 1, 0.36, 1),

        opacity 0.65s ease;
}

/* =========================================================
   HOME DOOR HOTSPOT
========================================================= */

.door-hotspot {
    position: absolute;

    left: 69%;
    top: 55%;

    width: 120px;
    height: 180px;

    z-index: 40;

    border: 0;
    outline: none;

    background: transparent;

    cursor: pointer;

    transform: translate(-50%, -50%);
}


/* Door highlight */

.door-hotspot-ring {
    position: absolute;

    inset: 10px;

    border: 1px solid rgba(215, 179, 76, 0.75);

    opacity: 0;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* Hover */

.door-hotspot:hover .door-hotspot-ring {
    opacity: 1;

    transform: scale(1.04);
}


/* CLICK THE DOOR text */

.door-hotspot-label {
    position: absolute;

    left: 50%;
    bottom: -32px;

    transform: translateX(-50%);

    white-space: nowrap;

    padding: 7px 11px;

    border: 1px solid rgba(215, 179, 76, 0.7);

    background: rgba(0, 0, 0, 0.65);

    color: #ffffff;

    font-size: 10px;

    letter-spacing: 0.18em;

    opacity: 0;

    transition: opacity 0.25s ease;
}


/* Show text when mouse is over door */

.door-hotspot:hover .door-hotspot-label {
    opacity: 1;
}


/* =========================================================
   HOME ? ENTRANCE CAMERA MOVEMENT
   ONLY triggered by JS click
========================================================= */

.cinematic.walk-to-entrance #homeScene {

    transform-origin: 69% 55%;

    transform: scale(1.45);

    filter: brightness(0.82);

    transition:
        transform 0.9s cubic-bezier(0.65, 0, 0.35, 1),
        filter 0.9s ease;
}


/* Entrance appears after door approach */

.cinematic.enter-entrance #aboutScene {

    transform: scale(1);

    opacity: 1;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.65s ease;
}


/* Mobile door position */

@media (max-width: 800px) {

    .door-hotspot {

        left: 70%;
        top: 54%;

        width: 90px;
        height: 140px;
    }

}/* =========================================================
   HOME DOOR CLICK FLOW
========================================================= */
.door-hotspot {
    position: absolute;
    left: 69%;
    top: 55%;
    width: 125px;
    height: 190px;
    z-index: 100;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translate(-50%, -50%);
}
/* Door highlight */
.door-hotspot::before {
    content: "";
    position: absolute;
    inset: 4px;
    border:
        1px solid
        rgba(215, 179, 76, 0);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
/* Hover */
.door-hotspot:hover::before {
    border-color:
        rgba(215, 179, 76, 0.8);
    box-shadow:
        0 0 25px
        rgba(215, 179, 76, 0.22);
}
/* Door label */
.door-hotspot-label {
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform:
        translateX(-50%);
    white-space: nowrap;
    padding:
        8px 14px;
    background:
        rgba(0, 0, 0, 0.72);
    border:
        1px solid
        rgba(215, 179, 76, 0.65);
    color: white;
    font-size: 10px;
    letter-spacing: 0.2em;
    opacity: 0;
    transition:
        opacity 0.25s ease;
}
.door-hotspot:hover .door-hotspot-label {
    opacity: 1;
}
/* =========================================================
   CAMERA REACHES DOOR
========================================================= */
.cinematic.walk-to-entrance #homeScene {
    transform-origin:
        69% 55%;
    transform:
        scale(1.45);
    filter:
        brightness(0.82);
    transition:
        transform 0.9s
        cubic-bezier(0.65, 0, 0.35, 1),
        filter 0.9s ease;
}
/* =========================================================
   DOOR OPEN
========================================================= */
.cinematic.door-opening #homeScene {
    transform-origin:
        69% 55%;
    transform:
        scale(1.52);
    filter:
        brightness(0.72);
    transition:
        transform 0.85s
        cubic-bezier(0.65, 0, 0.35, 1),
        filter 0.85s ease;
}
/* Door opens */
.cinematic.door-opening
.door-panel {
    transform:
        perspective(600px)
        rotateY(-82deg);
    transform-origin:
        left center;
    opacity: 0;
    transition:
        transform 0.75s
        cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.55s ease;
}
/* =========================================================
   CAMERA ENTERS THROUGH DOOR
========================================================= */
.cinematic.entering-entrance #homeScene {
    transform-origin:
        69% 55%;
    transform:
        scale(2.15);
    filter:
        brightness(0.35);
    transition:
        transform 0.75s
        cubic-bezier(0.65, 0, 0.35, 1),
        filter 0.75s ease;
}
/* Entrance comes forward */
.cinematic.entering-entrance #aboutScene {
    opacity: 1;
    visibility: visible;
    transform:
        scale(1);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
/* Door panel */
.door-panel {
    position: absolute;
    inset: 5px;
    background:
        rgba(0, 0, 0, 0);
    transform:
        perspective(600px)
        rotateY(0deg);
    transform-origin:
        left center;
    transition:
        transform 0.75s ease,
        opacity 0.55s ease;
    pointer-events: none;
}
/* =========================================================
   CINEMATIC WALKTHROUGH V1
   HOME -> DOOR
========================================================= */
.cinematic.home-approach #homeScene {
    transform-origin: 67% 55% !important;
    transform: scale(1.55) !important;
    filter: brightness(0.78);
    transition:
        transform 1.4s cubic-bezier(0.65, 0, 0.35, 1),
        filter 1.4s ease !important;
}
/* Hide home text while approaching the door */
.cinematic.home-approach #homeScene .home-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
/* Door hotspot */
.door-hotspot {
    position: absolute;
    left: 67%;
    top: 52%;
    width: 150px;
    height: 190px;
    transform: translate(-50%, -50%);
    z-index: 100;
    border: 1px solid rgba(215,179,76,0.9);
    background: rgba(0,0,0,0.16);
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}
.cinematic.home-approach .door-hotspot {
    opacity: 1;
    visibility: visible;
}
.door-hotspot:hover {
    background: rgba(215,179,76,0.12);
    box-shadow:
        0 0 0 1px rgba(215,179,76,0.25),
        0 0 35px rgba(215,179,76,0.18);
}
.door-hotspot-label {
    position: absolute;
    left: 50%;
    top: -42px;
    transform: translateX(-50%);
    width: max-content;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.28em;
    white-space: nowrap;
}
.door-hotspot-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-50%, -50%);
    border: 1px solid #d7b34c;
    border-radius: 50%;
    box-shadow:
        0 0 0 8px rgba(215,179,76,0.08),
        0 0 20px rgba(215,179,76,0.25);
}
/* Small pulse so user knows where to click */
.cinematic.home-approach .door-hotspot-ring {
    animation: doorPulse 1.6s ease-in-out infinite;
}
@keyframes doorPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.35);
        opacity: 0.55;
    }
}
/* White flash used later for door opening */
.cinematic.door-flash::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(255,255,255,0);
    pointer-events: none;
    animation: doorWhiteFlash 0.8s ease forwards;
}
@keyframes doorWhiteFlash {
    0% {
        background: rgba(255,255,255,0);
    }
    35% {
        background: rgba(255,255,255,0.72);
    }
    100% {
        background: rgba(255,255,255,0);
    }
}

/* =========================================================
   FINAL HOME DOOR SYSTEM
========================================================= */
/* Home normal state */
#homeScene {
    transform-origin: 63% 55%;
}
/* Door zoom state */
.cinematic.home-door-zoom #homeScene {
    transform-origin: 63% 55%;
    transform: scale(1.55);
    filter: brightness(0.82);
    transition:
        transform 1.2s cubic-bezier(0.65, 0, 0.35, 1),
        filter 1.2s ease;
}
/* Hide Home text while approaching the door */
.cinematic.home-door-zoom #homeScene .home-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
/* Door hotspot */
.door-hotspot {
    position: absolute;
    left: 63%;
    top: 52%;
    width: 190px;
    height: 150px;
    transform: translate(-50%, -50%);
    z-index: 100;
    border: 1px solid transparent;
    background: transparent;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}
/* Show hotspot only after zoom */
.cinematic.home-door-zoom #homeDoorHotspot {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Hotspot label */
.door-hotspot-label {
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 8px 14px;
    border: 1px solid rgba(215,179,76,0.8);
    background: rgba(0,0,0,0.65);
    color: #ffffff;
    font-size: 9px;
    letter-spacing: 0.22em;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cinematic.home-door-zoom #homeDoorHotspot:hover
.door-hotspot-label {
    opacity: 1;
}
/* Gold ring around clickable door area */
.door-hotspot-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(215,179,76,0.85);
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 0 25px rgba(215,179,76,0.18);
    animation: doorPulse 2s ease-in-out infinite;
}
@keyframes doorPulse {
    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
        opacity: 0.7;
    }
    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);
        opacity: 1;
    }
}
/* White flash when door opens */
.door-flash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: white;
    opacity: 0;
    pointer-events: none;
}
.door-flash.active {
    animation: doorFlashAnimation 0.7s ease forwards;
}
@keyframes doorFlashAnimation {
    0% {
        opacity: 0;
    }
    35% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .cinematic.home-door-zoom #homeScene {
        transform: scale(1.35);
        transform-origin: 63% 55%;
    }
    .door-hotspot {
        left: 63%;
        top: 53%;
        width: 140px;
        height: 120px;
    }
}

/* =========================================================
   CLEAN HOME -> DOOR SYSTEM
========================================================= */
/* Keep the home scene itself stable */
#homeScene {
    transform: none;
}
/* Door approach */
.cinematic.home-door-zoom #homeScene {
    transform-origin: 64% 56%;
    transform: scale(1.48);
    filter: brightness(0.84);
    transition:
        transform 1s cubic-bezier(0.65, 0, 0.35, 1),
        filter 1s ease;
}
/*
   IMPORTANT:
   Hide ONLY the Home text during the zoom.
*/
.cinematic.home-door-zoom #homeScene .home-content {
    opacity: 0 !important;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
/* Door hotspot */
#homeDoorHotspot {
    position: absolute;
    left: 64%;
    top: 56%;
    width: 170px;
    height: 170px;
    transform: translate(-50%, -50%);
    z-index: 200;
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}
/* Only show after zoom */
.cinematic.home-door-zoom #homeDoorHotspot {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Click text */
#homeDoorHotspot .door-hotspot-label {
    position: absolute;
    left: 50%;
    top: -42px;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 9px 15px;
    background: rgba(0,0,0,0.78);
    border: 1px solid #d7b34c;
    color: white;
    font-size: 9px;
    letter-spacing: 0.2em;
    opacity: 1;
}
/* Door target ring */
#homeDoorHotspot .door-hotspot-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    transform: translate(-50%, -50%);
    border:
        1px solid
        rgba(215,179,76,0.95);
    border-radius: 50%;
    box-shadow:
        0 0 25px rgba(215,179,76,0.25);
    animation:
        doorTargetPulse 1.8s ease-in-out infinite;
}
@keyframes doorTargetPulse {
    0%, 100% {
        transform:
            translate(-50%, -50%)
            scale(1);
        opacity: 0.65;
    }
    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);
        opacity: 1;
    }
}
/* Final push when clicking door */
.cinematic.door-opening #homeScene {
    transform-origin: 64% 56%;
    transform: scale(1.7);
    filter: brightness(0.65);
    transition:
        transform 0.55s
        cubic-bezier(0.65, 0, 0.35, 1),
        filter 0.55s ease;
}
/* White flash */
#doorFlash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#doorFlash.active {
    visibility: visible;
    animation:
        cleanDoorFlash 0.7s ease forwards;
}
@keyframes cleanDoorFlash {
    0% {
        opacity: 0;
    }
    35% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}
/* =========================================================
   FINAL HOME DOOR FIX - BACKGROUND ONLY ZOOM
========================================================= */
#homeScene {
    transform: none !important;
    filter: none !important;
    transition: none !important;
    background-image: none !important;
    overflow: hidden !important;
}
#homeScene::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../images/house/home.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    transform-origin: 64% 56%;
    transition:
        transform 1s cubic-bezier(.65,0,.35,1),
        filter 1s ease;
}
#homeScene .scene-overlay {
    z-index: 5 !important;
}
/* HOME TEXT NEVER SCALES */
#homeScene .home-content {
    z-index: 30 !important;
    transform: translate(-50%, -50%) !important;
}
/* SCROLL DOWN -> ONLY HOUSE BACKGROUND ZOOM */
.cinematic.home-door-zoom #homeScene::before {
    transform: scale(1.48);
    filter: brightness(.84);
}
/* Hide text only after reaching door */
.cinematic.home-door-zoom #homeScene .home-content {
    opacity: 0 !important;
    visibility: hidden !important;
}
/* Door hotspot */
#homeDoorHotspot {
    position: absolute !important;
    left: 64% !important;
    top: 56% !important;
    width: 180px !important;
    height: 180px !important;
    transform: translate(-50%, -50%) !important;
    z-index: 300 !important;
    border: 0 !important;
    background: transparent !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.cinematic.home-door-zoom #homeDoorHotspot {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
#homeDoorHotspot .door-hotspot-label {
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 8px 14px;
    background: rgba(0,0,0,.82);
    border: 1px solid #d7b34c;
    color: white;
    font-size: 9px;
    letter-spacing: .18em;
}
#homeDoorHotspot .door-hotspot-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border: 1px solid #d7b34c;
    border-radius: 50%;
    box-shadow:
        0 0 25px rgba(215,179,76,.35);
    animation:
        homeDoorPulse 1.7s ease-in-out infinite;
}
@keyframes homeDoorPulse {
    0%, 100% {
        transform:
            translate(-50%, -50%)
            scale(1);
        opacity: .6;
    }
    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);
        opacity: 1;
    }
}
/* CLICK DOOR -> FINAL PUSH */
.cinematic.door-opening #homeScene::before {
    transform:
        scale(1.72);
    filter:
        brightness(.7);
}
/* Door flash */
#doorFlash {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    background: white !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
#doorFlash.active {
    visibility: visible !important;
    animation:
        homeDoorFlash .65s ease forwards !important;
}
@keyframes homeDoorFlash {
    0% {
        opacity: 0;
    }
    30% {
        opacity: .85;
    }
    100% {
        opacity: 0;
    }
}
/* =========================================================
   FINAL OVERRIDE — HOME / DOOR
   This block intentionally comes LAST.
========================================================= */
/* HOME TEXT — FIX POSITION */
#homeScene .home-content {
    position: absolute !important;
    left: 7vw !important;
    top: 50% !important;
    width: 650px !important;
    max-width: 650px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(-50%) !important;
    opacity: 1;
    visibility: visible;
    text-align: left !important;
    z-index: 30 !important;
}
/* HOME TITLE */
#homeScene .home-content h1 {
    width: 650px !important;
    max-width: 650px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    text-align: left !important;
    font-size: clamp(48px, 5vw, 68px) !important;
    line-height: 1.05 !important;
}
/* TITLE LINES */
#homeScene .home-content h1 span {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    text-align: left !important;
}
/* HOME DESCRIPTION */
#homeScene .home-content p {
    width: 600px !important;
    max-width: 600px !important;
    margin: 22px 0 0 !important;
    transform: none !important;
    text-align: left !important;
}
/* HOME CTA */
#homeScene .home-content .home-cta {
    display: inline-block !important;
    margin-top: 20px !important;
    transform: none !important;
}
/* =========================================================
   REMOVE OLD DOOR HOTSPOT SHAPE
========================================================= */
#homeDoorHotspot {
    position: absolute !important;
    left: 64% !important;
    top: 56% !important;
    width: 170px !important;
    height: 170px !important;
    transform: translate(-50%, -50%) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    z-index: 300 !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
/* ONLY SHOW HOTSPOT AFTER DOOR ZOOM */
.cinematic.home-door-zoom #homeDoorHotspot {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
/* OPEN DOOR LABEL */
#homeDoorHotspot .door-hotspot-label {
    position: absolute !important;
    left: 50% !important;
    top: 15px !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    height: auto !important;
    padding: 8px 14px !important;
    white-space: nowrap !important;
    background: rgba(0,0,0,.82) !important;
    border: 1px solid #d7b34c !important;
    color: #fff !important;
    font-size: 9px !important;
    letter-spacing: .18em !important;
    z-index: 5 !important;
}
/* ROUND DOOR TARGET */
#homeDoorHotspot .door-hotspot-ring {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 68px !important;
    height: 68px !important;
    transform: translate(-50%, -50%) !important;
    border: 1px solid #d7b34c !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow:
        0 0 20px rgba(215,179,76,.35) !important;
    animation: finalDoorPulse 1.6s ease-in-out infinite !important;
}
@keyframes finalDoorPulse {
    0%, 100% {
        transform:
            translate(-50%, -50%)
            scale(1);
        opacity: .55;
    }
    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);
        opacity: 1;
    }
}
/* =========================================================
   BACKGROUND ZOOM ONLY
========================================================= */
#homeScene {
    transform: none !important;
    filter: none !important;
    overflow: hidden !important;
}
#homeScene::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image:
        url("../images/house/home.png") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    transform:
        scale(1) !important;
    transform-origin:
        64% 56% !important;
    transition:
        transform 1s cubic-bezier(.65,0,.35,1),
        filter 1s ease !important;
}
/* DARK OVERLAY ABOVE BACKGROUND */
#homeScene .scene-overlay {
    z-index: 5 !important;
}
/* HOME ? DOOR */
.cinematic.home-door-zoom #homeScene::before {
    transform:
        scale(1.48) !important;
    filter:
        brightness(.84) !important;
}
/* HIDE HOME CONTENT WHEN AT DOOR */
.cinematic.home-door-zoom #homeScene .home-content {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
/* =========================================================
   DOOR OPEN PUSH
========================================================= */
.cinematic.door-opening #homeScene::before {
    transform:
        scale(1.72) !important;
    filter:
        brightness(.65) !important;
}
/* =========================================================
   FLASH
========================================================= */
#doorFlash {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 999999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
#doorFlash.active {
    visibility: visible !important;
    animation:
        finalDoorFlash .7s ease forwards !important;
}
@keyframes finalDoorFlash {
    0% {
        opacity: 0;
    }
    30% {
        opacity: .9;
    }
    100% {
        opacity: 0;
    }
}
/* =========================================================
   FINAL SINGLE DOOR VISUAL OVERRIDE
========================================================= */
/* ---------------------------------------------------------
   HOME SCENE
--------------------------------------------------------- */
#homeScene {
    overflow: hidden !important;
}
/* ---------------------------------------------------------
   HOME CONTENT
   Never scale with the background.
--------------------------------------------------------- */
#homeScene .home-content {
    position: absolute !important;
    left: 7vw !important;
    top: 50% !important;
    width: min(650px, 48vw) !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 40 !important;
    text-align: left !important;
}
/* ---------------------------------------------------------
   BACKGROUND-ONLY CAMERA
--------------------------------------------------------- */
#homeScene::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image:
        url("../images/house/home.png") !important;
    background-position:
        center center !important;
    background-size:
        cover !important;
    background-repeat:
        no-repeat !important;
    transform:
        scale(1) !important;
    transform-origin:
        64% 56% !important;
    transition:
        transform 1s
        cubic-bezier(.65,0,.35,1),
        filter 1s ease !important;
}
/* Existing overlay stays above background */
#homeScene .scene-overlay {
    z-index: 5 !important;
}
/* ---------------------------------------------------------
   HOME ? DOOR
--------------------------------------------------------- */
.cinematic.home-door-zoom #homeScene::before {
    transform:
        scale(1.48) !important;
    filter:
        brightness(.82) !important;
}
/* Hide only the Home text */
.cinematic.home-door-zoom
#homeScene .home-content {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform:
        translateY(-50%) !important;
}
/* ---------------------------------------------------------
   DOOR HOTSPOT
--------------------------------------------------------- */
#homeDoorHotspot {
    position: absolute !important;
    left: 64% !important;
    top: 56% !important;
    width: 110px !important;
    height: 150px !important;
    transform:
        translate(-50%, -50%) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    z-index: 200 !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
/* Only after camera reaches door */
.cinematic.home-door-zoom
#homeDoorHotspot {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
/* ---------------------------------------------------------
   CLICK THE DOOR
--------------------------------------------------------- */
#homeDoorHotspot .door-hotspot-label {
    position: absolute !important;
    left: 50% !important;
    top: -38px !important;
    transform:
        translateX(-50%) !important;
    width: max-content !important;
    padding: 7px 12px !important;
    margin: 0 !important;
    background:
        rgba(0,0,0,.78) !important;
    border:
        1px solid
        rgba(215,179,76,.8) !important;
    color:
        #ffffff !important;
    font-size:
        8px !important;
    line-height:
        1 !important;
    letter-spacing:
        .18em !important;
    white-space:
        nowrap !important;
    opacity:
        1 !important;
}
/* ---------------------------------------------------------
   DOOR TARGET
--------------------------------------------------------- */
#homeDoorHotspot .door-hotspot-ring {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 54px !important;
    height: 54px !important;
    transform:
        translate(-50%, -50%) !important;
    border:
        1px solid
        rgba(215,179,76,.9) !important;
    border-radius:
        50% !important;
    background:
        transparent !important;
    box-shadow:
        0 0 22px
        rgba(215,179,76,.25) !important;
    animation:
        finalDoorTarget 1.7s
        ease-in-out
        infinite !important;
}
@keyframes finalDoorTarget {
    0%, 100% {
        transform:
            translate(-50%, -50%)
            scale(1);
        opacity:
            .55;
    }
    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);
        opacity:
            1;
    }
}
/* ---------------------------------------------------------
   DOOR OPENING
--------------------------------------------------------- */
.cinematic.door-opening
#homeScene::before {
    transform:
        scale(1.75) !important;
    filter:
        brightness(.55) !important;
    transition:
        transform .75s
        cubic-bezier(.65,0,.35,1),
        filter .75s ease !important;
}
/* Hide hotspot during opening */
.cinematic.door-opening
#homeDoorHotspot {
    opacity: 0 !important;
    pointer-events: none !important;
}
/* ---------------------------------------------------------
   CAMERA ENTERS HOUSE
--------------------------------------------------------- */
.cinematic.entering-entrance
#homeScene::before {
    transform:
        scale(2.15) !important;
    filter:
        brightness(.25) !important;
    transition:
        transform .6s
        cubic-bezier(.65,0,.35,1),
        filter .6s ease !important;
}
/* ---------------------------------------------------------
   WHITE FLASH
--------------------------------------------------------- */
#doorFlash {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    background:
        #ffffff !important;
    opacity:
        0 !important;
    visibility:
        hidden !important;
    pointer-events:
        none !important;
}
#doorFlash.active {
    visibility:
        visible !important;
    animation:
        finalWhiteFlash
        .7s
        ease
        forwards !important;
}
@keyframes finalWhiteFlash {
    0% {
        opacity: 0;
    }
    30% {
        opacity: .78;
    }
    100% {
        opacity: 0;
    }
}
/* ---------------------------------------------------------
   ENTRANCE REVEAL
--------------------------------------------------------- */
.cinematic.entering-entrance
#aboutScene {
    opacity:
        1 !important;
    visibility:
        visible !important;
    transform:
        scale(1.04) !important;
    transition:
        opacity .65s ease,
        transform .65s ease !important;
}

/* =====================================================
   FINAL DOOR OPEN IMAGE FLOW
===================================================== */
.door-open-image {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    background-image: url("../images/house/door-open.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform-origin: 64% 56%;
    transform: scale(1);
    transition:
        opacity .55s ease,
        transform 1.15s cubic-bezier(.65,0,.35,1),
        filter 1.15s ease;
}
.cinematic.door-open-visible .door-open-image {
    opacity: 1;
    visibility: visible;
}
.cinematic.door-open-enter .door-open-image {
    opacity: 1;
    visibility: visible;
    transform:
        scale(1.75);
    filter:
        brightness(.72);
    transition:
        opacity .25s ease,
        transform 1.15s cubic-bezier(.65,0,.35,1),
        filter 1.15s ease;
}
.cinematic.door-flash::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: white;
    pointer-events: none;
    animation: finalDoorFlash .42s ease-out forwards;
}
@keyframes finalDoorFlash {
    0% {
        opacity: 0;
    }
    35% {
        opacity: .9;
    }
    100% {
        opacity: 0;
    }
}
.cinematic.home-door-zoom #homeScene {
    transform-origin: 64% 56% !important;
    transform: scale(1.48) !important;
}
.cinematic.home-door-zoom #homeScene .home-content {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.cinematic.home-door-zoom #homeDoorHotspot {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.cinematic.door-open-visible #homeDoorHotspot,
.cinematic.door-open-enter #homeDoorHotspot {
    opacity: 0 !important;
    pointer-events: none !important;
}
/* =========================================
   FINAL ROUND CLICK THE DOOR INDICATOR
========================================= */
#homeDoorHotspot {
    width: 90px !important;
    height: 90px !important;
    left: 64% !important;
    top: 50% !important;
    border: 1px solid rgba(215,179,76,.75) !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,.18) !important;
    box-shadow:
        0 0 0 1px rgba(215,179,76,.15),
        0 0 25px rgba(215,179,76,.15) !important;
    overflow: visible !important;
}
/* Remove old rectangular box */
#homeDoorHotspot::before {
    display: none !important;
}
/* Round click text */
#homeDoorHotspot .door-hotspot-label {
    left: 50% !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    letter-spacing: .16em !important;
    text-align: center !important;
    opacity: 1 !important;
    white-space: nowrap !important;
}
/* Hide old ring */
#homeDoorHotspot .door-hotspot-ring {
    display: none !important;
}
/* Subtle pulse */
@keyframes finalDoorPulse {
    0%,100% {
        transform: scale(1);
        opacity: .75;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}
.cinematic.home-door-zoom #homeDoorHotspot {
    animation: finalDoorPulse 1.8s ease-in-out infinite !important;
}
/* FINAL SMALL DOOR CLICK TARGET */
#homeDoorHotspot {
    width: 58px !important;
    height: 58px !important;
    left: 64% !important;
    top: 50% !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,.12) !important;
}
#homeDoorHotspot .door-hotspot-label {
    font-size: 7px !important;
    letter-spacing: .12em !important;
}
/* EXTRA SMALL CLICK TARGET */
#homeDoorHotspot {
    width: 38px !important;
    height: 38px !important;
    left: 64% !important;
    top: 50% !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,.08) !important;
    border: 1px solid rgba(215,179,76,.8) !important;
}
#homeDoorHotspot .door-hotspot-label {
    font-size: 5px !important;
    letter-spacing: .10em !important;
    line-height: 1.2 !important;
}
/* FINAL DOOR LAYER FIX */
#finalDoorOpenImage {
    z-index: 9000 !important;
    background-position: center 52% !important;
}
#finalDoorFlash {
    z-index: 100000 !important;
    background: #ffffff !important;
}
/* =====================================================
   FINAL OVERRIDE - HOME DOOR ALIGNMENT
===================================================== */
/* Door zoom */
.cinematic.home-door-zoom #homeScene {
    transform-origin: 64% 56% !important;
    transform: scale(1.48) !important;
    filter: brightness(.82) !important;
}
/* Hide home content */
.cinematic.home-door-zoom #homeScene .home-content {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
/* Small click target - exact door center */
#homeDoorHotspot {
    position: absolute !important;
    left: 64% !important;
    top: 56% !important;
    width: 38px !important;
    height: 38px !important;
    transform: translate(-50%, -50%) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(215,179,76,.8) !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,.08) !important;
    z-index: 300 !important;
}
/* Only show after zoom */
.cinematic.home-door-zoom #homeDoorHotspot {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
/* Small CLICK THE DOOR text */
#homeDoorHotspot .door-hotspot-label {
    position: absolute !important;
    left: 50% !important;
    top: -30px !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: #ffffff !important;
    font-size: 8px !important;
    font-weight: 500 !important;
    letter-spacing: .12em !important;
    white-space: nowrap !important;
    opacity: 1 !important;
}
/* Hide old ring */
#homeDoorHotspot .door-hotspot-ring {
    display: none !important;
}
/* Open door image */
#finalDoorOpenImage {
    z-index: 9000 !important;
    background-position: center 52% !important;
    transform-origin: 64% 56% !important;
}
/* Flash MUST be above open-door image */
#finalDoorFlash {
    z-index: 10000 !important;
    background: #ffffff !important;
}
/* =========================================================
   MASTER CINEMATIC CONTROLLER
   HOME -> DOOR -> ENTRANCE -> HALL -> ROOM -> CONTACT
========================================================= */
/* ---------- HOME DOOR ---------- */
.cinematic.home-door-zoom #homeScene {
    transform-origin: 64% 56% !important;
    transform: scale(1.48) !important;
    filter: brightness(.82) !important;
    transition:
        transform 1.15s cubic-bezier(.65,0,.35,1),
        filter 1.15s ease !important;
}
.cinematic.home-door-zoom #homeScene .home-content {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
/* Small round click target */
#homeDoorHotspot {
    position: absolute !important;
    left: 64% !important;
    top: 56% !important;
    width: 42px !important;
    height: 42px !important;
    transform: translate(-50%,-50%) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(215,179,76,.85) !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,.05) !important;
    z-index: 500 !important;
}
.cinematic.home-door-zoom #homeDoorHotspot {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
/* CLICK THE DOOR */
#homeDoorHotspot .door-hotspot-label {
    position: absolute !important;
    left: 50% !important;
    top: -30px !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 8px !important;
    font-weight: 500 !important;
    letter-spacing: .13em !important;
    white-space: nowrap !important;
    opacity: 1 !important;
}
#homeDoorHotspot .door-hotspot-ring {
    display: none !important;
}
/* ---------- OPEN DOOR IMAGE ---------- */
#finalDoorOpenImage {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9000 !important;
    background-size: cover !important;
    /*
       Shift open-door image slightly right
       so its entrance lines up with HOME door.
    */
    background-position: 43% 52% !important;
    background-repeat: no-repeat !important;
    transform-origin: 64% 56% !important;
    will-change:
        transform,
        opacity,
        filter !important;
    backface-visibility: hidden !important;
}
/* Door image entering camera */
.cinematic.master-door-enter #finalDoorOpenImage {
    transform:
        scale(1.28)
        translateX(0) !important;
    filter:
        brightness(.72)
        contrast(1.03) !important;
}
/* ---------- WHITE FLASH ---------- */
#finalDoorFlash {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 10000 !important;
    background: #fff !important;
    pointer-events: none !important;
    opacity: 0 !important;
    will-change: opacity !important;
}
#finalDoorFlash.master-flash {
    animation:
        masterWhiteFlash
        .42s
        ease-out
        forwards !important;
}
@keyframes masterWhiteFlash {
    0% {
        opacity: 0;
    }
    25% {
        opacity: .96;
    }
    55% {
        opacity: .72;
    }
    100% {
        opacity: 0;
    }
}
/* ---------- SCENE TRANSITION ---------- */
.cinematic.master-transition {
    will-change: transform, filter;
}
.cinematic.master-forward .scene.active {
    animation:
        masterSceneForward
        1.05s
        cubic-bezier(.65,0,.35,1)
        both !important;
}
.cinematic.master-backward .scene.active {
    animation:
        masterSceneBackward
        .95s
        cubic-bezier(.65,0,.35,1)
        both !important;
}
@keyframes masterSceneForward {
    0% {
        opacity: 0;
        transform:
            scale(.94)
            translateY(22px)
            rotateX(2deg);
        filter: brightness(.55) blur(2px);
    }
    45% {
        opacity: .7;
        transform:
            scale(1.02)
            translateY(5px)
            rotateX(0deg);
        filter: brightness(.82) blur(.5px);
    }
    100% {
        opacity: 1;
        transform:
            scale(1)
            translateY(0)
            rotateX(0deg);
        filter: brightness(1) blur(0);
    }
}
@keyframes masterSceneBackward {
    0% {
        opacity: 0;
        transform:
            scale(1.06)
            translateY(-18px);
        filter: brightness(.65) blur(2px);
    }
    100% {
        opacity: 1;
        transform:
            scale(1)
            translateY(0);
        filter: brightness(1) blur(0);
    }
}
/* ---------- ENTRANCE ---------- */
.cinematic.master-entrance .scene.active {
    animation:
        entrancePush
        1.25s
        cubic-bezier(.65,0,.35,1)
        both !important;
}
@keyframes entrancePush {
    0% {
        opacity: 0;
        transform:
            scale(1.22)
            translateZ(0);
        filter:
            brightness(.58)
            blur(2px);
    }
    55% {
        opacity: 1;
        transform:
            scale(1.07);
        filter:
            brightness(.84)
            blur(.6px);
    }
    100% {
        opacity: 1;
        transform:
            scale(1);
        filter:
            brightness(1)
            blur(0);
    }
}
/* ---------- ENTRANCE -> HALL ROTATION ---------- */
.cinematic.master-hall .scene.active {
    animation:
        hallRotate
        1.3s
        cubic-bezier(.65,0,.35,1)
        both !important;
    transform-origin: center center !important;
}
@keyframes hallRotate {
    0% {
        opacity: 0;
        transform:
            perspective(1200px)
            rotateY(-8deg)
            scale(1.12)
            translateX(55px);
        filter:
            brightness(.55)
            blur(2px);
    }
    45% {
        opacity: .75;
        transform:
            perspective(1200px)
            rotateY(3deg)
            scale(1.04)
            translateX(-12px);
        filter:
            brightness(.82)
            blur(.7px);
    }
    100% {
        opacity: 1;
        transform:
            perspective(1200px)
            rotateY(0)
            scale(1)
            translateX(0);
        filter:
            brightness(1)
            blur(0);
    }
}
/* ---------- HALL -> ROOM DOOR ---------- */
.cinematic.master-room .scene.active {
    animation:
        roomDoorZoom
        1.4s
        cubic-bezier(.65,0,.35,1)
        both !important;
    transform-origin: 50% 52% !important;
}
@keyframes roomDoorZoom {
    0% {
        opacity: 0;
        transform:
            scale(.88);
        filter:
            brightness(.58)
            blur(2px);
    }
    45% {
        opacity: .75;
        transform:
            scale(1.08);
        filter:
            brightness(.82)
            blur(.7px);
    }
    100% {
        opacity: 1;
        transform:
            scale(1);
        filter:
            brightness(1)
            blur(0);
    }
}
/* ---------- ROOM -> CONTACT ---------- */
.cinematic.master-contact .scene.active {
    animation:
        contactReveal
        1.15s
        cubic-bezier(.65,0,.35,1)
        both !important;
}
@keyframes contactReveal {
    0% {
        opacity: 0;
        transform:
            scale(1.08)
            translateY(28px);
        filter:
            brightness(.55)
            blur(2px);
    }
    100% {
        opacity: 1;
        transform:
            scale(1)
            translateY(0);
        filter:
            brightness(1)
            blur(0);
    }
}
/* ---------- DURING DOOR OPEN ---------- */
.cinematic.master-door-opening #homeDoorHotspot {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.cinematic.master-door-opening #homeScene {
    transform-origin: 64% 56% !important;
    transform: scale(1.58) !important;
    filter: brightness(.62) !important;
    transition:
        transform .9s cubic-bezier(.65,0,.35,1),
        filter .9s ease !important;
}
/* Prevent accidental page movement during cinematic */
.cinematic.master-lock {
    overflow: hidden !important;
}
/* =====================================================
   ENQUIRY POPUP
===================================================== */
.enquiry-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .3s ease,
        visibility .3s ease;
}
.enquiry-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.enquiry-popup-box {
    position: relative;
    width: min(760px, 94vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: 42px 44px 38px;
    background:
        linear-gradient(
            145deg,
            rgba(35, 31, 25, .98),
            rgba(15, 14, 12, .98)
        );
    border: 1px solid rgba(215, 179, 76, .5);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, .65),
        0 0 40px rgba(215, 179, 76, .08);
    transform: translateY(25px) scale(.96);
    transition: transform .35s cubic-bezier(.65,0,.35,1);
}
.enquiry-popup.is-open .enquiry-popup-box {
    transform: translateY(0) scale(1);
}
.enquiry-popup-box h2 {
    margin: 0 0 30px;
    color: #f4ead0;
    font-family: inherit;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 400;
    letter-spacing: .04em;
    text-align: center;
}
.enquiry-popup-close {
    position: absolute;
    top: 14px;
    right: 17px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(215,179,76,.55);
    border-radius: 50%;
    background: rgba(0,0,0,.3);
    color: #e8d7a2;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: .25s ease;
}
.enquiry-popup-close:hover {
    background: rgba(215,179,76,.16);
    transform: rotate(90deg);
}
.popup-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.popup-form-group {
    margin-bottom: 20px;
}
.popup-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d9c99c;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.popup-form-group input,
.popup-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.14);
    outline: none;
    border-radius: 2px;
    background: rgba(255,255,255,.055);
    color: #fff;
    padding: 13px 14px;
    font: inherit;
    transition:
        border-color .25s ease,
        background .25s ease;
}
.popup-form-group input::placeholder,
.popup-form-group textarea::placeholder {
    color: rgba(255,255,255,.4);
}
.popup-form-group input:focus,
.popup-form-group textarea:focus {
    border-color: rgba(215,179,76,.75);
    background: rgba(255,255,255,.08);
}
.popup-phone {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.055);
}
.popup-phone > span {
    padding-left: 12px;
    color: #ddd;
    font-size: 15px;
}
.popup-phone input {
    border: 0 !important;
    background: transparent !important;
    flex: 1;
}
.popup-service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.popup-service-options label {
    position: relative;
    margin: 0;
    cursor: pointer;
}
.popup-service-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.popup-service-options label span {
    display: block;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: none;
    transition: .25s ease;
}
.popup-service-options input:checked + span {
    border-color: #d7b34c;
    background: rgba(215,179,76,.12);
    color: #f2df9f;
}
.popup-send-button {
    width: 100%;
    margin-top: 4px;
    padding: 15px 20px;
    border: 1px solid #d7b34c;
    background: #d7b34c;
    color: #17130c;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: .25s ease;
}
.popup-send-button:hover {
    background: #ead28a;
    transform: translateY(-1px);
}
@media (max-width: 650px) {
    .enquiry-popup {
        padding: 14px;
    }
    .enquiry-popup-box {
        padding: 38px 22px 25px;
        max-height: 94vh;
    }
    .popup-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .enquiry-popup-box h2 {
        padding-right: 20px;
        font-size: 25px;
    }
}
/* Prevent background interaction while popup is open */
body.enquiry-popup-open {
    overflow: hidden !important;
}
/* ============================================================
   FINAL CONTACT / PROFESSIONAL PROFILE
============================================================ */
.contact-location-link {
    display: inline-flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all .3s ease !important;
}
.contact-location-link:hover {
    transform: translateX(5px) !important;
}
.location-name {
    color: #fff !important;
}
.location-direction {
    color: #d7b34c !important;
    font-size: 9px !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
}
/* ============================================================
   PROFESSIONAL PROFILE
============================================================ */
.professional-profile {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(215,179,76,.35);
}
.professional-profile-heading {
    margin-bottom: 25px;
}
.profile-kicker {
    display: block;
    margin-bottom: 10px;
    color: #d7b34c;
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
}
.professional-profile-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: .04em;
}
.professional-profile-heading p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: .08em;
}
/* COMPANY */
.professional-company {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
    padding: 18px;
    border-left: 2px solid #d7b34c;
    background: rgba(255,255,255,.035);
}
.professional-company strong {
    color: #fff;
    font-size: 18px;
    letter-spacing: .18em;
}
.professional-company span {
    color: #d7b34c;
    font-size: 9px;
    letter-spacing: .14em;
}
.professional-company small {
    color: rgba(255,255,255,.5);
    font-size: 9px;
    letter-spacing: .08em;
}
/* DESIGNATIONS */
.professional-designations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-bottom: 28px;
}
.professional-designations div {
    padding: 11px 13px;
    color: rgba(255,255,255,.78);
    font-size: 10px;
    line-height: 1.5;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.025);
}
.professional-designations div::before {
    content: "â€¢";
    margin-right: 8px;
    color: #d7b34c;
}
/* PANEL BANKS */
.panel-engineer-section {
    margin-bottom: 28px;
}
.panel-title {
    display: block;
    margin-bottom: 14px;
    color: #d7b34c;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.panel-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 7px 18px;
}
.panel-bank-grid span {
    color: rgba(255,255,255,.62);
    font-size: 9px;
    line-height: 1.5;
}
/* CONTACT */
.professional-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-bottom: 25px;
}
.professional-contact a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.1);
    transition: all .3s ease;
}
.professional-contact a:hover {
    border-color: rgba(215,179,76,.7);
    transform: translateY(-2px);
}
.professional-contact a span {
    color: #d7b34c;
    font-size: 10px;
    letter-spacing: .16em;
}
/* ADDRESS */
.profile-address {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 18px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(215,179,76,.35);
    background: rgba(215,179,76,.035);
    transition: all .3s ease;
}
.profile-address:hover {
    border-color: #d7b34c;
    transform: translateY(-2px);
}
.address-label {
    color: #d7b34c;
    font-size: 10px;
    letter-spacing: .2em;
}
.profile-address strong {
    font-size: 12px;
    line-height: 1.7;
}
.profile-address small {
    color: #d7b34c;
    font-size: 10px;
    letter-spacing: .18em;
}
/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 768px) {
    .professional-profile-heading h2 {
        font-size: 23px;
    }
    .professional-designations {
        grid-template-columns: 1fr;
    }
    .panel-bank-grid {
        grid-template-columns: 1fr;
    }
    .professional-contact {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   FINAL CONTACT SCROLL + CTA FIX
============================================================ */
/*
 * Contact scene must be independently scrollable.
 */
#contactScene {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: 100vh !important;
    max-height: 100vh !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
    scrollbar-width: thin !important;
}
/*
 * Make contact content actually extend naturally.
 */
#contactScene .contact-layout {
    min-height: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding-bottom: 100px !important;
}
/*
 * Contact left side must not clip content.
 */
#contactScene .contact-left {
    height: auto !important;
    min-height: 0 !important;
}
/*
 * Professional profile must remain visible.
 */
#contactScene .professional-profile {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 40px !important;
}
/*
 * Contact form must not clip.
 */
#contactScene .contact-form-panel {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}
/*
 * Home CTA always clickable.
 */
.home-cta {
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}
/*
 * Contact scene above other scene layers.
 */
#contactScene.active {
    z-index: 20 !important;
}
/*
 * Don't let generic cinematic overflow
 * hide contact content.
 */
.cinematic:has(#contactScene.active) {
    overflow: visible !important;
}
/*
 * Better visible scrollbar on desktop.
 */
#contactScene::-webkit-scrollbar {
    width: 7px;
}
#contactScene::-webkit-scrollbar-track {
    background: rgba(255,255,255,.04);
}
#contactScene::-webkit-scrollbar-thumb {
    background: rgba(215,179,76,.55);
    border-radius: 10px;
}
/*
 * Mobile
 */
@media (max-width: 768px) {
    #contactScene {
        height: 100dvh !important;
        max-height: 100dvh !important;
        overflow-y: auto !important;
    }
    #contactScene .contact-layout {
        min-height: auto !important;
        padding-bottom: 80px !important;
    }
}
/*
 * Accessibility / browser fallback
 */
#contactScene.active {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
/* ============================================================
   FINAL CONTACT SCROLL + BACKGROUND OVERLAY
============================================================ */
/*
 * CONTACT SCENE = REAL SCROLL AREA
 */
#contactScene {
    height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
}
/*
 * Content must be taller than viewport naturally.
 */
#contactScene .contact-layout {
    min-height: 100% !important;
    height: auto !important;
    padding-bottom: 120px !important;
    box-sizing: border-box !important;
}
/*
 * =====================================================
 * CONTACT BACKGROUND DARK OVERLAY
 *
 * Keep the cinematic dark layer across the entire
 * contact scene while scrolling.
 * =====================================================
 */
#contactScene .scene-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    min-height: 100% !important;
    height: 100% !important;
    background:
        rgba(0, 0, 0, .42) !important;
    opacity: 1 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}
/*
 * Contact content stays above overlay.
 */
#contactScene .contact-layout {
    position: relative !important;
    z-index: 2 !important;
}
/*
 * Keep profile/content readable but cinematic.
 */
#contactScene .contact-left,
#contactScene .contact-form-panel {
    position: relative !important;
    z-index: 3 !important;
}
/*
 * Make sure profile information is not clipped.
 */
#contactScene .contact-left {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}
/*
 * Make form area extend naturally.
 */
#contactScene .contact-form-panel {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}
/*
 * Scrollbar
 */
#contactScene::-webkit-scrollbar {
    width: 8px;
}
#contactScene::-webkit-scrollbar-track {
    background:
        rgba(0,0,0,.35);
}
#contactScene::-webkit-scrollbar-thumb {
    background:
        rgba(215,179,76,.65);
    border-radius: 10px;
}
#contactScene::-webkit-scrollbar-thumb:hover {
    background:
        rgba(215,179,76,.9);
}
/*
 * Firefox
 */
#contactScene {
    scrollbar-width: thin;
    scrollbar-color:
        rgba(215,179,76,.65)
        rgba(0,0,0,.35);
}
/*
 * MOBILE
 */
@media (max-width: 768px) {
    #contactScene {
        height: 100dvh !important;
        max-height: 100dvh !important;
        overflow-y: auto !important;
    }
    #contactScene .contact-layout {
        min-height: auto !important;
        padding-bottom: 100px !important;
    }
}

/* ============================================================
   CONTACT CINEMATIC BACKGROUND - FINAL
   Keep construction background + same dark tone while scrolling
   ============================================================ */
#contactScene {
    position: relative !important;
    background-color: transparent !important;
}
#contactScene .scene-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: rgba(0, 0, 0, .42) !important;
    opacity: 1 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}
#contactScene .contact-layout {
    position: relative !important;
    z-index: 2 !important;
}

/* ============================================================
   FINAL CONTACT DIM LOCK
   Keep the first-view cinematic darkness during full scroll
   ============================================================ */
#contactScene {
    position: relative !important;
    isolation: isolate !important;
    background: transparent !important;
}
/* Fixed darkness layer — does NOT scroll */
#contactScene::after {
    content: "" !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.42) !important;
    pointer-events: none !important;
    z-index: 5 !important;
}
/* Existing overlay stays behind the fixed dim layer */
#contactScene .scene-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    min-height: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
}
/* All contact content stays above darkness */
#contactScene .contact-layout,
#contactScene .contact-left,
#contactScene .professional-profile,
#contactScene .contact-form-panel {
    position: relative !important;
    z-index: 10 !important;
}

/* ============================================================
   CONTACT FINAL BACKGROUND + CINEMATIC DIM
   Construction image stays visible while scrolling.
   Same soft darkness throughout the entire contact scene.
============================================================ */
#contactScene {
    position: relative !important;
    /* Keep the actual construction image */
    background-image:
        url("../images/house/consruction.png") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    /*
     * IMPORTANT:
     * Background does NOT move with contact content.
     */
    background-attachment: fixed !important;
    background-color: transparent !important;
}
/*
 * Disable the older overlay layers which were making
 * the contact scene almost completely black.
 */
#contactScene .scene-overlay {
    display: none !important;
}
/*
 * Soft cinematic darkness.
 *
 * This is intentionally LIGHT:
 * construction image remains clearly visible.
 *
 * The same layer stays fixed while contact content scrolls.
 */
#contactScene::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    background:
        rgba(0, 0, 0, 0.48) !important;
    opacity: 1 !important;
    z-index: 1 !important;
}
/*
 * Contact content stays above the dim layer.
 */
#contactScene .contact-layout,
#contactScene .contact-left,
#contactScene .professional-profile,
#contactScene .contact-form-panel {
    position: relative !important;
    z-index: 10 !important;
}
/*
 * Keep contact scene scrollable.
 */
#contactScene {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
/*
 * LIGHT ON:
 * soft cinematic dim.
 */
body:not(.lights-off) #contactScene::after {
    background:
        rgba(0, 0, 0, 0.48) !important;
}
/*
 * LIGHT OFF:
 * slightly darker, but NEVER pure black.
 */
body.lights-off #contactScene::after {
    background:
        rgba(0, 0, 0, 0.58) !important;
}
/*
 * Mobile
 */
@media (max-width: 768px) {
    #contactScene {
        background-attachment: scroll !important;
    }
    #contactScene::after {
        position: absolute !important;
        min-height: 100% !important;
        height: 100% !important;
    }
}



/* ============================================================
   CONTACT CONTENT START POSITION
   Keep content below the fixed navigation.
   Background / dim untouched.
============================================================ */
#contactScene .contact-layout {
    padding-top: 105px !important;
    box-sizing: border-box !important;
}
#contactScene .professional-profile {
    margin-top: 45px !important;
}
@media (max-width: 768px) {
    #contactScene .contact-layout {
        padding-top: 85px !important;
    }
    #contactScene .professional-profile {
        margin-top: 30px !important;
    }
}
/* ============================================================
   FINAL CONTACT BACKGROUND DIM
   Construction image + dim are one background.
   Therefore scrolling cannot remove the dim.
============================================================ */
#contactScene {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.46),
            rgba(0, 0, 0, 0.46)
        ),
        url("../images/house/consruction.png") !important;
    background-position:
        center center,
        center center !important;
    background-size:
        cover,
        cover !important;
    background-repeat:
        no-repeat,
        no-repeat !important;
    background-attachment:
        fixed,
        fixed !important;
    background-color: transparent !important;
}
/*
 * Remove all previous contact overlay layers.
 * The dim is now part of the background itself.
 */
#contactScene .scene-overlay,
#contactScene::after {
    display: none !important;
}
/*
 * Light ON = same cinematic dim everywhere.
 */
body:not(.lights-off) #contactScene {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.46),
            rgba(0, 0, 0, 0.46)
        ),
        url("../images/house/consruction.png") !important;
}
/*
 * Light OFF = darker, but background remains visible.
 */
body.lights-off #contactScene {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.62)
        ),
        url("../images/house/consruction.png") !important;
}
/*
 * Keep contact content above background.
 */
#contactScene .contact-layout {
    position: relative !important;
    z-index: 10 !important;
}
/*
 * Contact itself remains the scroll container.
 */
#contactScene {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
/*
 * Mobile.
 */
@media (max-width: 768px) {
    #contactScene {
        background-attachment: scroll !important;
    }
}
/* =========================================================
   MR UNIFORM WEBSITE FONT
   ABOUT / SERVICES / PROJECTS / CONTACT
   ========================================================= */
body,
button,
input,
textarea,
select,
.page-content,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content p,
.info-item,
.service-item,
.project-item,
.contact-detail,
.contact-form-panel {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}
/* Keep existing gold italic headings consistent */
.page-content h1 em,
.contact-left h1 em,
.contact-form-panel h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}






.home-company {
    color: #ffffff !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}
.home-content h1 span:first-child {
    transform: translateY(12px);
}
/* FINAL CONTACT FONT AND SIZE */
.contact-left h1 {
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(52px, 5.5vw, 78px) !important;
    line-height: 0.98 !important;
}
.contact-intro {
    font-size: 17px !important;
    line-height: 1.75 !important;
}
.contact-detail span {
    font-size: 11px !important;
    letter-spacing: 0.22em !important;
}
.contact-detail strong {
    font-size: 17px !important;
    line-height: 1.45 !important;
}
.contact-form-panel h2 {
    font-size: 32px !important;
}
.profile-address {
    cursor: pointer !important;
}
.profile-address strong {
    font-size: 16px !important;
}
.profile-address small {
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
}
/* =========================================================
   FINAL CONTACT TYPOGRAPHY
========================================================= */
.contact-left h1 {
    font-family:
        Georgia,
        "Times New Roman",
        serif !important;
    font-size:
        clamp(52px, 5.5vw, 78px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.02em !important;
}
.contact-intro {
    font-size: 17px !important;
    line-height: 1.75 !important;
}
.contact-detail {
    gap: 17px !important;
}
.detail-icon {
    width: 46px !important;
    height: 46px !important;
    font-size: 18px !important;
}
.contact-detail span {
    font-size: 11px !important;
    letter-spacing: 0.22em !important;
}
.contact-detail strong {
    font-size: 17px !important;
    line-height: 1.5 !important;
}
.left-location-directions {
    display: inline-block !important;
    margin-top: 7px !important;
    color: #d7b34c !important;
    font-family:
        Arial,
        Helvetica,
        sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        transform 0.2s ease !important;
}
.left-location-directions:hover {
    color: #ffffff !important;
    transform: translateX(3px) !important;
}
.contact-form-panel h2 {
    font-size: 32px !important;
}
.profile-address strong {
    font-size: 16px !important;
    line-height: 1.5 !important;
}
.profile-address small {
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
}
/* =========================================================
   CONTACT ROUND ICONS - CLICKABLE
========================================================= */
.contact-icon {
    display: grid !important;
    place-items: center !important;
    width: 46px !important;
    height: 46px !important;
    flex-shrink: 0 !important;
    border: 1px solid #d7b34c !important;
    border-radius: 50% !important;
    color: #d7b34c !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease !important;
}
.contact-icon:hover {
    color: #111111 !important;
    background: #d7b34c !important;
    transform: translateY(-2px) !important;
}
.contact-icon i {
    pointer-events: none !important;
}

/* =========================================================
   CONTACT PAGE - FINAL DESIGN
========================================================= */
.contact-scene-final {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
.contact-final-left {
    position: absolute;
    left: 7vw;
    top: 50%;
    width: 38%;
    max-width: 510px;
    transform: translateY(-50%);
    z-index: 30;
}
.contact-kicker,
.contact-final-label {
    color: #d7b34c;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.contact-final-left h1 {
    margin: 20px 0 25px;
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(52px, 5.4vw, 78px);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.025em;
}
.contact-final-left h1 em {
    color: #d7b34c;
    font-style: italic;
}
.contact-final-intro {
    max-width: 470px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.82);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 16px;
    line-height: 1.65;
}
.contact-final-item {
    display: flex;
    align-items: center;
    gap: 17px;
    width: fit-content;
    margin: 12px 0;
    color: #ffffff;
    text-decoration: none;
}
.contact-round-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid #d7b34c;
    border-radius: 50%;
    color: #d7b34c;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.contact-round-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
.contact-final-item:hover .contact-round-icon {
    background: #d7b34c;
    color: #111111;
    transform: translateY(-2px);
}
.contact-final-text {
    display: flex;
    flex-direction: column;
}
.contact-final-text .contact-final-label {
    margin-bottom: 5px;
}
.contact-final-text strong {
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}
.contact-final-text small {
    margin-top: 4px;
    color: #d7b34c;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
}
.whatsapp-symbol {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
}
.email-symbol {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
}
/* =========================================================
   RIGHT PROFILE
========================================================= */
.contact-final-right {
    position: absolute;
    top: 9%;
    right: 5vw;
    width: 58%;
    max-width: 860px;
    z-index: 30;
}
.profile-final-header {
    padding: 15px 25px 18px;
    border: 1px solid rgba(215,179,76,0.45);
    background: rgba(0,0,0,0.18);
}
.profile-final-header h2 {
    margin: 10px 0 5px;
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 600;
}
.profile-final-header p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 13px;
    letter-spacing: 0.04em;
}
.company-final-header {
    padding: 18px 25px;
    border-left: 1px solid #d7b34c;
    border-right: 1px solid rgba(215,179,76,0.3);
    border-bottom: 1px solid rgba(215,179,76,0.3);
    background: rgba(0,0,0,0.22);
}
.company-final-header h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 24px;
    letter-spacing: 0.09em;
}
.company-final-header div {
    color: #d7b34c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.17em;
}
.company-final-header small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.70);
    font-size: 10px;
}
/* =========================================================
   PROFESSIONAL BOXES
========================================================= */
.professional-final-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid rgba(215,179,76,0.35);
}
.professional-final-box {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 68px;
    padding: 10px 14px;
    border-right: 1px solid rgba(215,179,76,0.28);
    border-bottom: 1px solid rgba(215,179,76,0.28);
    background: rgba(0,0,0,0.20);
}
.professional-wide {
    grid-column: 1 / -1;
}
.mini-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid #d7b34c;
    border-radius: 50%;
    color: #d7b34c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 700;
}
.professional-final-box strong {
    display: block;
    color: #d7b34c;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 13px;
    line-height: 1.25;
}
.professional-final-box p {
    margin: 3px 0 0;
    color: rgba(255,255,255,0.80);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 11px;
    line-height: 1.3;
}
/* =========================================================
   PANEL ENGINEER / VALUER
========================================================= */
.panel-final-section {
    padding: 14px 20px;
    border-left: 1px solid rgba(215,179,76,0.35);
    border-right: 1px solid rgba(215,179,76,0.35);
    border-bottom: 1px solid rgba(215,179,76,0.35);
    background: rgba(0,0,0,0.18);
}
.bank-final-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 25px;
    margin-top: 10px;
}
.bank-final-grid span {
    display: block;
    margin: 5px 0;
    color: rgba(255,255,255,0.82);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 9px;
    line-height: 1.35;
}
/* =========================================================
   OFFICE ADDRESS
========================================================= */
.office-final-address {
    display: block;
    padding: 14px 20px;
    border: 1px solid rgba(215,179,76,0.45);
    background: rgba(0,0,0,0.25);
    color: #ffffff;
    text-decoration: none;
}
.office-final-address strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 14px;
    font-weight: 400;
}
.office-final-address small {
    display: block;
    margin-top: 8px;
    color: #d7b34c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
}
.office-final-address:hover strong {
    color: #d7b34c;
}
/* =========================================================
   CONTACT RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .contact-final-left {
        left: 5vw;
        width: 40%;
    }
    .contact-final-right {
        right: 3vw;
        width: 57%;
    }
    .contact-final-left h1 {
        font-size: clamp(44px, 5vw, 65px);
    }
}
@media (max-width: 800px) {
    .contact-final-left,
    .contact-final-right {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 90%;
        max-width: none;
        transform: none;
        margin: 50px auto;
    }
    .contact-scene-final {
        height: auto !important;
        min-height: 100vh;
        overflow-y: auto !important;
    }
    .bank-final-grid {
        grid-template-columns: 1fr;
    }
    .professional-final-grid {
        grid-template-columns: 1fr;
    }
    .professional-wide {
        grid-column: auto;
    }
}

/* =========================================================
   CONTACT FINAL POSITION + EMAIL TEXT FIX
========================================================= */
.contact-final-left {
    position: absolute !important;
    left: 7vw !important;
    top: 50% !important;
    width: 34% !important;
    max-width: 480px !important;
    transform: translateY(-50%) !important;
    z-index: 30 !important;
}
.contact-final-left h1 {
    margin-top: 18px !important;
    margin-bottom: 24px !important;
    font-size: clamp(50px, 5vw, 72px) !important;
}
.contact-final-intro {
    max-width: 430px !important;
    margin-bottom: 24px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}
.contact-final-item {
    gap: 15px !important;
    margin: 11px 0 !important;
}
.contact-round-icon {
    width: 50px !important;
    height: 50px !important;
}
.contact-final-right {
    position: absolute !important;
    top: 9% !important;
    right: 5vw !important;
    left: auto !important;
    width: 55% !important;
    max-width: 790px !important;
    z-index: 30 !important;
}
.profile-final-header {
    padding: 14px 22px 16px !important;
}
.profile-final-header h2 {
    font-size: clamp(28px, 2.7vw, 40px) !important;
}
.company-final-header {
    padding: 16px 22px !important;
}
.company-final-header h3 {
    font-size: 22px !important;
}
.professional-final-box {
    min-height: 64px !important;
    padding: 9px 12px !important;
}
.professional-final-box strong {
    font-size: 12px !important;
}
.professional-final-box p {
    font-size: 10px !important;
}
.panel-final-section {
    padding: 12px 18px !important;
}
.bank-final-grid {
    gap: 4px 18px !important;
}
.bank-final-grid span {
    font-size: 9px !important;
    margin: 4px 0 !important;
}
.office-final-address {
    padding: 13px 18px !important;
}
/* =========================================================
   EMAIL ACTION TEXT - KEEP VISIBLE
========================================================= */
.contact-final-item[href^="mailto:"] .contact-final-text small {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 5px !important;
    color: #d7b34c !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.4 !important;
}
/* =========================================================
   PHONE / WHATSAPP / LOCATION ACTION TEXT
========================================================= */
.contact-final-item .contact-final-text small {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* =========================================================
   PREVENT RIGHT PANEL FROM OVERLAPPING LEFT CONTENT
========================================================= */
.contact-final-right {
    box-sizing: border-box !important;
}
.contact-final-left {
    box-sizing: border-box !important;
}
/* =========================================================
   DESKTOP HEIGHT FIT
========================================================= */
@media (min-width: 1101px) {
    .contact-final-right {
        max-height: 82vh !important;
        overflow: visible !important;
    }
    .contact-final-left {
        max-height: 82vh !important;
        overflow: visible !important;
    }
}

/* =========================================================
   CONTACT - SEND US A MESSAGE BOX
========================================================= */
.contact-message-box {
    position: absolute;
    left: 7vw;
    bottom: 38px;
    width: 360px;
    min-height: 125px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(215, 179, 76, 0.65);
    background: rgba(5, 5, 5, 0.62);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    z-index: 50;
}
.contact-message-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid #d7b34c;
    border-radius: 50%;
    color: #d7b34c;
    font-size: 20px;
}
.contact-message-content {
    min-width: 0;
}
.contact-message-label {
    display: block;
    margin-bottom: 5px;
    color: #d7b34c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
}
.contact-message-content h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.contact-message-content p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    line-height: 1.45;
}
.contact-message-button {
    padding: 7px 13px;
    border: 1px solid #d7b34c;
    background: transparent;
    color: #d7b34c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.contact-message-button:hover {
    background: #d7b34c;
    color: #111111;
}
@media (max-width: 1000px) {
    .contact-message-box {
        left: 5vw;
        bottom: 25px;
        width: 340px;
    }
}

/* =========================================================
   FINAL MOBILE HOME FIX
   Prevent heading/text from being clipped on phones
========================================================= */
@media (max-width: 800px) {
    .scene {
        overflow: hidden;
    }
    .home-content {
        left: 4%;
        width: 92vw;
        max-width: 92vw;
        top: 54%;
        transform: translateY(-50%);
        padding-right: 0;
    }
    .home-content h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(30px, 8.4vw, 44px);
        line-height: 0.98;
        letter-spacing: -0.025em;
        overflow: visible;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }
    .home-content h1 span {
        display: block;
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }
    .home-content p {
        width: 100%;
        max-width: 100%;
        font-size: 13px;
        line-height: 1.55;
    }
    .home-cta {
        max-width: 100%;
        font-size: 8px;
        padding: 12px 16px;
        white-space: normal;
    }
}
/* =========================================================
   SMALL PHONE — 412px / 390px / 375px
========================================================= */
@media (max-width: 480px) {
    .home-content {
        left: 5%;
        width: 90vw;
        max-width: 90vw;
        top: 53%;
    }
    .home-content h1 {
        font-size: clamp(29px, 8vw, 37px);
        line-height: 0.98;
        letter-spacing: -0.025em;
    }
    .home-content h1 span {
        width: 100%;
        max-width: 100%;
    }
    .home-content p {
        width: 100%;
        max-width: 100%;
        font-size: 12px;
        line-height: 1.5;
    }
    .home-content p + p {
        margin-top: 8px;
    }
    .home-cta {
        margin-top: 16px;
        padding: 11px 14px;
        font-size: 7px;
        letter-spacing: 0.14em;
    }
    .bottom-scroll {
        font-size: 6px;
    }
}
/* =========================================================
   VERY SMALL PHONES
========================================================= */
@media (max-width: 360px) {
    .home-content {
        left: 5%;
        width: 90vw;
        max-width: 90vw;
    }
    .home-content h1 {
        font-size: 27px;
        line-height: 1;
    }
    .home-content p {
        font-size: 11px;
    }
    .home-cta {
        font-size: 6px;
        padding: 10px 12px;
    }
}

/* =========================================================
   FINAL PHONE RESPONSIVE FIX
   HOME CONTENT MUST STAY INSIDE VIEWPORT
========================================================= */
@media screen and (max-width: 800px) {
    .scene {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }
    .home-content {
        position: absolute !important;
        top: 50% !important;
        left: 5vw !important;
        right: 5vw !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateY(-50%) !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    /* MAIN HOME HEADING */
    .home-content h1 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        color: #ffffff !important;
        font-size: 32px !important;
        font-weight: 600 !important;
        line-height: 1.04 !important;
        letter-spacing: -0.02em !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
    }
    .home-content h1 span {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
    }
    /* HOME DESCRIPTION */
    .home-content p {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 16px !important;
        box-sizing: border-box !important;
        font-size: 12px !important;
        line-height: 1.55 !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }
    .home-content p + p {
        margin-top: 9px !important;
    }
    /* BUTTON */
    .home-cta {
        display: inline-flex !important;
        max-width: 100% !important;
        margin-top: 16px !important;
        padding: 10px 13px !important;
        box-sizing: border-box !important;
        font-size: 7px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
    }
}
/* =========================================================
   SAMSUNG / NORMAL PHONES
   412 / 390 / 375
========================================================= */
@media screen and (max-width: 480px) {
    .home-content {
        top: 51% !important;
        left: 5vw !important;
        right: 5vw !important;
        width: auto !important;
    }
    .home-content h1 {
        font-size: 29px !important;
        line-height: 1.04 !important;
        letter-spacing: -0.015em !important;
    }
    .home-content p {
        font-size: 11px !important;
        line-height: 1.5 !important;
    }
    .home-cta {
        font-size: 7px !important;
        padding: 10px 12px !important;
    }
}
/* =========================================================
   SMALL PHONES
========================================================= */
@media screen and (max-width: 360px) {
    .home-content {
        left: 5vw !important;
        right: 5vw !important;
    }
    .home-content h1 {
        font-size: 26px !important;
        line-height: 1.05 !important;
    }
    .home-content p {
        font-size: 10.5px !important;
    }
    .home-cta {
        font-size: 6px !important;
        padding: 9px 11px !important;
    }
}
/* =========================================================
   END FINAL PHONE FIX
========================================================= */
/* =========================================================
   FINAL 412px PHONE FIX
========================================================= */
@media screen and (max-width: 480px) {
    .home-content {
        position: absolute !important;
        left: 6% !important;
        right: 6% !important;
        width: 88% !important;
        max-width: 88% !important;
        top: 50% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        transform: translateY(-50%) !important;
    }
    .home-content h1 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        font-size: 23px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.01em !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }
    .home-content h1 span {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }
    .home-content p {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 13px !important;
        font-size: 10px !important;
        line-height: 1.55 !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }
    .home-content p + p {
        margin-top: 7px !important;
    }
    .home-cta {
        max-width: 100% !important;
        margin-top: 13px !important;
        padding: 9px 11px !important;
        box-sizing: border-box !important;
        font-size: 6px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
    }
}
/* =========================================================
   360px AND BELOW
========================================================= */
@media screen and (max-width: 360px) {
    .home-content {
        left: 6% !important;
        right: 6% !important;
        width: 88% !important;
        max-width: 88% !important;
    }
    .home-content h1 {
        font-size: 21px !important;
        line-height: 1.08 !important;
    }
    .home-content p {
        font-size: 9px !important;
    }
    .home-cta {
        font-size: 5.5px !important;
    }
}
/* =========================================================
   FINAL MOBILE HOME HEADING - HARD FIX
   Fix reveal animation clipping
========================================================= */
@media screen and (max-width: 800px) {
    /* HOME CONTENT */
    #homeScene .home-content {
        position: absolute !important;
        left: 5% !important;
        right: 5% !important;
        width: 90% !important;
        max-width: 90% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    /* REMOVE REVEAL CLIPPING FROM HOME HEADING */
    #homeScene .home-content h1,
    #homeScene .home-content h1.mr-page-reveal-item,
    #homeScene .home-content h1.mr-page-reveal-show {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        transform: none !important;
    }
    /* EACH HEADING LINE */
    #homeScene .home-content h1 span,
    #homeScene .home-content h1 span.mr-page-reveal-item,
    #homeScene .home-content h1 span.mr-page-reveal-show {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        transform: none !important;
    }
    /* PHONE HEADING SIZE */
    #homeScene .home-content h1 {
        font-size: 25px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.01em !important;
    }
    /* DESCRIPTION */
    #homeScene .home-content p {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        font-size: 11px !important;
        line-height: 1.5 !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }
    /* BUTTON */
    #homeScene .home-cta {
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        overflow: visible !important;
        font-size: 6.5px !important;
    }
}
/* =========================================================
   412px / 390px / 375px
========================================================= */
@media screen and (max-width: 480px) {
    #homeScene .home-content {
        left: 5% !important;
        right: 5% !important;
        width: 90% !important;
        max-width: 90% !important;
        top: 51% !important;
    }
    #homeScene .home-content h1 {
        font-size: 24px !important;
        line-height: 1.08 !important;
    }
    #homeScene .home-content h1 span {
        font-size: inherit !important;
        line-height: inherit !important;
    }
    #homeScene .home-content p {
        font-size: 10.5px !important;
    }
}
/* =========================================================
   VERY SMALL PHONE
========================================================= */
@media screen and (max-width: 360px) {
    #homeScene .home-content {
        left: 5% !important;
        right: 5% !important;
        width: 90% !important;
        max-width: 90% !important;
    }
    #homeScene .home-content h1 {
        font-size: 21px !important;
        line-height: 1.08 !important;
    }
    #homeScene .home-content p {
        font-size: 10px !important;
    }
}
/* =========================================================
   END FINAL MOBILE HOME HEADING FIX
========================================================= */
/* =========================================================
   FINAL MOBILE HOME DESCRIPTION TEXT
========================================================= */
@media screen and (max-width: 800px) {
    #homeScene .home-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: rgba(255,255,255,0.90) !important;
        letter-spacing: 0.01em !important;
        margin-top: 18px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }
    #homeScene .home-content p + p {
        margin-top: 14px !important;
    }
}
/* =========================================================
   412 / 390 / 375 PHONE
========================================================= */
@media screen and (max-width: 480px) {
    #homeScene .home-content p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        margin-top: 16px !important;
    }
    #homeScene .home-content p + p {
        margin-top: 12px !important;
    }
}
/* =========================================================
   SMALL PHONE
========================================================= */
@media screen and (max-width: 360px) {
    #homeScene .home-content p {
        font-size: 12.5px !important;
        line-height: 1.55 !important;
    }
}
/* =========================================================
   END MOBILE DESCRIPTION FIX
========================================================= */

/* =========================================================
   MASTER MOBILE RESPONSIVE & OVERLAP FIX
========================================================= */
@media screen and (max-width: 800px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto !important;
        height: 100% !important;
        position: relative !important;
    }

    .cinematic {
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        overflow: hidden !important;
        position: relative !important;
    }

    /* Fixed Navbar on Mobile */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 76px !important;
        z-index: 10000 !important;
        background: rgba(5, 5, 5, 0.92) !important;
        backdrop-filter: blur(10px) !important;
        padding: 0 5vw !important;
    }

    /* Scene Containers on Mobile */
    .scene {
        width: 100vw !important;
        height: 100% !important;
        box-sizing: border-box !important;
    }

    /* Enable Vertical Scroll on Content Scenes */
    #aboutScene,
    #servicesScene,
    #servicesScene2,
    #servicesScene3,
    #projectsScene,
    #contactScene,
    .contact-scene-final {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
        height: 100% !important;
    }

    /* Page Content Layout on Mobile */
    .page-content,
    .about-content,
    .services-content,
    .projects-content {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 90vw !important;
        max-width: 90vw !important;
        margin: 0 auto !important;
        padding-top: 90px !important;
        padding-bottom: 80px !important;
        max-height: none !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    /* Grid Layouts Stack Vertically on Mobile */
    .info-list,
    .service-list,
    .project-types,
    .about-profile-designations,
    .professional-final-grid,
    .bank-final-grid,
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .info-item,
    .service-item,
    .project-item {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 16px 18px !important;
        box-sizing: border-box !important;
    }

    /* CRITICAL CONTACT SCENE OVERLAP FIX: Stack Left & Right Panels Vertically */
    .contact-final-left,
    .contact-final-right {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 0 0 25px 0 !important;
        float: none !important;
        box-sizing: border-box !important;
        z-index: 5 !important;
    }

    #contactScene,
    .contact-scene-final {
        padding: 90px 5vw 80px !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    .contact-final-left h1 {
        font-size: clamp(32px, 8vw, 44px) !important;
        line-height: 1.1 !important;
        margin: 15px 0 !important;
    }

    .contact-final-intro {
        font-size: 13.5px !important;
        margin-bottom: 20px !important;
    }

    .contact-final-item {
        display: flex !important;
        align-items: center !important;
        margin: 12px 0 !important;
    }

    .office-final-address,
    .panel-final-section,
    .profile-final-header,
    .company-final-header {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-message-box {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        width: 100% !important;
        margin-top: 25px !important;
    }

    /* Home Scene Adjustments */
    #homeScene {
        overflow: hidden !important;
    }

    .door-hotspot {
        left: 70% !important;
        top: 54% !important;
        z-index: 50 !important;
    }
}

