﻿/* ================== BASE ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: #fff;
    background: #010202;
    font-family: 'Roboto', sans-serif;
    zoom: 1;
}

section {
    padding: 10px 0;
}



/* ================== LOGIN ================== */

.login-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}


.loginDashboardBTN {
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    border: 1px solid #D4A94F;
    color: #D4A94F;
    padding: 4px 20px;
    border-radius: 24px;
    font-size: 14px;
    gap: 12px;
    cursor: pointer;
}
    .loginDashboardBTN:hover {
        background: #d4a94f;
        color: black;
    }

    .loginDashboardBTN img {
        width: 24px;
        height: 24px;
    }

    .loginDashboardBTN:hover img {
        filter: brightness(0);
    }


.login-dashboard-btn {
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 9999;
    width: auto !important;
    display: inline-flex;
    background: transparent;
    border: 1px solid #d4a94f;
    color: #d4a94f;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    gap: 12px;
}

    .login-dashboard-btn:hover {
        background: #d4a94f;
        color: black;
    }

.login-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(4px) sepia(90%) brightness(60%);
}

.login-modal-content {
    background: #111;
    padding: 60px 70px;
    border-radius: 20px;
    width: 500px;
    max-width: 90vw;
    position: relative;
    text-align: center;
}

#closeLoginModal {
    color: #d4a94f;
    position: absolute;
    top: 14px;
    right: 20px;
    cursor: pointer;
    font-size: 40px;
    line-height: 1;
}

#loginModal {
    z-index: 10000;
    position: fixed;
}

.login-box {
    width: 720px;
    max-width: 90%;
    padding: 60px 70px;
    background: #1c1c1c;
    border: 1px solid #333;
    text-align: center;
}

.login-input,
.login-button {
    width: 100%;
    max-width: 460px;
    padding: 12px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 20px;
}

.login-button {
    background: #d4a94f;
    border: none;
    cursor: pointer;
    border-radius: 20px;
}

.login-password-wrap {
    position: relative;
    width: 100%;
}

    .login-password-wrap .login-input {
        width: 100%;
        padding-right: 50px;
    }

.login-toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.login-eye-icon {
    width: 22px;
    height: 22px;
    display: block;
}

#loginStatus {
    color: #c71414
}

.dashboard-email-box {
    margin: 30px auto 30px;
    width: 520px;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(212, 169, 79, 0.35);
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
}

    .dashboard-email-box h2 {
        color: #D4A94F;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .dashboard-email-box p {
        color: #fff;
        font-size: 16px;
    }


/* ================== RESET PASS ================== */

.reset-status {
    color: #ff3b3b;
    font-size: 16px;
    margin-top: 18px;
}






/* ================== DASHBOARD ================== */




.dashboard-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.dashboard-logo {
    width: 200px;
    margin-bottom: 30px;
}

.dashboard-card {
    width: min(1080px, 90vw);
    min-height: 620px;
    background: rgba(10, 10, 10, 0.25);
    border: 1px solid rgba(212, 169, 79, 0.35);
    border-radius: 20px;
    padding: 46px 38px;
    text-align: center;
    backdrop-filter: blur(6px);
    position: relative;
}

    .dashboard-card h1 {
        color: #D4A94F;
        font-size: 34px;
        font-weight: 600;
        margin-bottom: 14px;
    }

.dashboard-welcome {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 34px;
}

.dashboard-email-box {
    width: 560px;
    margin: 0 auto;
    padding: 24px 30px;
    border: 1px solid rgba(212, 169, 79, 0.35);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
}

.dashboard-user-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.dashboard-email-box h2 {
    color: #D4A94F;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px;
}

.dashboard-email-box p {
    color: #fff;
    font-size: 15px;
    margin: 0;
}

.dashboard-divider {
    width: 100%;
    height: 1px;
    background: rgba(212, 169, 79, 0.35);
    margin: 34px 0 72px;
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 0;
}

.dashboard-tab {
    padding: 14px 28px;
    border-radius: 26px;
    border: 1px solid #D4A94F;
    background: transparent;
    color: #D4A94F;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .dashboard-tab img {
        width: 20px;
        height: 20px;
    }

    .dashboard-tab.active,
    .dashboard-tab:hover {
        background: #D4A94F;
        color: #000;
    }

        .dashboard-tab.active img,
        .dashboard-tab:hover img {
            filter: brightness(0);
        }

.dashboard-panel {
    margin-top: 46px;
}

    .dashboard-panel p {
        color: #ccc;
        font-size: 16px;
        margin: 0;
    }

.dashboard-panel-list {
    display: grid;
    gap: 12px;
    margin: 24px auto 0;
    max-width: 420px;
}

    .dashboard-panel-list div {
        padding: 14px 18px;
        border: 1px solid rgba(212, 169, 79, 0.25);
        border-radius: 14px;
        color: #ddd;
        background: rgba(255, 255, 255, 0.03);
        cursor: pointer;
    }

        .dashboard-panel-list div:hover {
            border-color: #D4A94F;
            color: #D4A94F;
        }

.dashboard-logout {
    padding: 14px 58px;
    border-radius: 26px;
    border: 1px solid #D4A94F;
    color: #D4A94F;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .dashboard-logout img {
        width: 18px;
        height: 18px;
    }

    .dashboard-logout:hover {
        background: #D4A94F;
        color: #000;
    }

        .dashboard-logout:hover img {
            filter: brightness(0);
        }



.dashboard-panel-list a {
    text-decoration: none;
    color: inherit;
}

.dashboard-panel-list a:visited {
    color: inherit;
}







/* ================== DASHBOARD - INVOICE ================== */

.invoice-table {
    width: 720px;
    max-width: 90%;
    margin: 28px auto 0;
    border: 1px solid rgba(212, 169, 79, 0.35);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.invoice-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1fr;
    gap: 16px;
    padding: 16px 20px;
    color: #ddd;
    border-bottom: 1px solid rgba(212, 169, 79, 0.18);
}

    .invoice-row:last-child {
        border-bottom: none;
    }

.invoice-header {
    color: #D4A94F;
    font-weight: 600;
}












/* ================== RESET PAGE ================== */
.dashboard-card.reset-card {
    padding-top: 70px;
}

.reset-card .login-input {
    height: 48px;
    padding-right: 58px;
}

.reset-card .login-toggle-password {
    right: 28px;
}

.reset-card .dashboard-tabs {
    margin-top: 28px !important;
}


.reset-fields-box {
    width: 520px;
    margin: 42px auto 0;
    padding: 28px;
    border: 1px solid rgba(212, 169, 79, 0.35);
    border-radius: 18px;
    display: grid;
    gap: 18px;
}

    .reset-fields-box .login-password-wrap {
        border: none;
        padding: 0;
        background: transparent;
    }







/* ================== CART ================== */

.payment-wrapper {
    position: relative; /* wrapper for left box + button */
}

.payment-wrapper .back-button {
    position: absolute;
    bottom: 100%;      /* sits just above the box */
    left: 0;           /* aligned with left edge */
    margin-bottom: 12px;
    color: #D4A94F;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}



.cart-page {
    font-family: 'Roboto', sans-serif;
    background: #010202 url("Images/Background.png") no-repeat right top;
    background-size: cover;
    color: #fff;
    padding: 40px;
    min-height: 100vh;
}

.cart-page h1 {
    text-align: center;
    color: #D4A94F;
    margin: 40px 0;
}

.cart-checkout-layout {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cart-checkout-box {
    width: 420px;
    min-height: 390px;
    padding: 30px;
    border: 1px solid rgba(212, 169, 79, 0.35);
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(6px);
}

.cart-checkout-box h2 {
    color: #D4A94F;
    margin-bottom: 26px;
}

.cart-checkout-box h3 {
    line-height: 1.6;
}

#checkoutItems {
    margin-bottom: 6px;
}

#checkoutItems p {
    line-height: 1.6;
}

.StripeElement {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212, 169, 79, 0.35);
    border-radius: 14px;
    padding: 16px;
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    box-shadow: none;
}

.StripeElement--focus {
    border-color: #D4A94F;
}

.cart-button {
    margin-top: 24px;
    width: 100%;
    padding: 14px 28px;
    border-radius: 26px;
    border: 1px solid #D4A94F;
    background: transparent;
    color: #D4A94F;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.cart-button:hover {
    background: #D4A94F;
    color: #000;
}

#cart-payment-message {
    margin-top: 20px;
    color: #D4A94F;
}


.order-summary-row {
    margin-bottom: 14px;
}

.order-summary-label {
    color: #D4A94F;
    font-size: 14px;
    margin-bottom: 4px;
}

.order-summary-value {
    color: #fff;
    font-size: 16px;
}

.order-summary-total {
    margin-top: 20px;
    font-size: 22px;
    color: #fff;
}

.total-label {
    color: #D4A94F;
}



.secure-note {
    margin-top: 18px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.secure-note img {
    width: 16px;
    height: 16px;
}



.summary-divider {
    height: 1px;
    background: rgba(212, 169, 79, 0.25);
    margin: 24px 0;
}

.summary-extra p {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 12px;
}

.summary-extra span {
    color: #D4A94F;
}

.checkout-note {
    margin-top: 24px;
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}





/* ================== BACKGROUND ================== */
.bg-layer {
    will-change: transform;
    position: fixed;
    inset: 0;
    background: url("Images/Background.png") no-repeat;
    background-size: 100% auto;
    background-position: right top;
    z-index: -2;
}

.bg-layer-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: right top;
    z-index: -2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.bg-layer-video.bg-visible {
        opacity: 1;
}

.bg-layer-video {
    filter: brightness(50%);
}

/* ================== GLOBAL ICONS ================== */
.icons {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
}


/* ================== FADE ================== */
.fade-section {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-delay-1 {
    transition-delay: 0.15s;
}

.fade-delay-2 {
    transition-delay: 0.3s;
}

.fade-delay-3 {
    transition-delay: 0.45s;
}

.logo-fade,
.nav-fade {
    opacity: 0;
    transition: opacity 0.5s ease;
}

    .logo-fade.visible,
    .nav-fade.visible {
        opacity: 1;
    }


/* ================== LARGE RESOLUTION ================== */
@media (min-width: 1920px) {
    body {
        zoom: 1.3 !important;
    }
}


/* ================== TOP UI ================== */
.top-ui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1130px minmax(0, 1fr);
    padding: 0;
    height: 120px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.8), transparent);
}

    .top-ui > * {
        grid-column: 2;
    }

.top-left {
    display: flex;
    align-items: flex-start;
}

.logo-img {
    width: 150px;
    display: block;
}

.nav-center {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

    .nav-center .nav-cta {
        display: inline-block;
        padding: 6px 18px;
        border-radius: 20px;
        border: 1px solid #d4a94f;
        color: #d4a94f;
        background: transparent;
        text-decoration: none !important;
        transition: all 0.2s ease;
    }

        .nav-center .nav-cta:hover {
            background: #d4a94f;
            color: #000;
        }


/* ================== CTA BUTTON ================== */
.cta {
    font-size: 20px;
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid #d4a94f;
    color: #d4a94f;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 18px;
    margin-bottom: 18px;
    text-decoration: none; /* remove underline on links */
    display: inline-block; /* keeps button sizing */
}

    .cta:hover {
        background: #d6aa3e;
        color: #000;
        border-color: #d6aa3e;
        box-shadow: 0 0 22px rgba(214, 170, 62, 0.35);
        transform: translateY(-2px);
    }


/* ================== HERO ================== */
.hero {
    margin-top: 80px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-right: 600px;
}

    .hero h1 {
        font-size: 45px;
        line-height: 1.1;
        color: #fff;
        font-weight: 500;
    }

    .hero h2 {
        font-size: 45px;
        line-height: 1.1;
        color: #b8923e;
        font-weight: 500;
        margin-top: -8px;
    }

    .hero p {
        font-size: 15px;
        margin-top: 5px;
        color: #9a8f83;
        max-width: 520px;
        line-height: 1.5;
    }


/* ================== SECTION HEADER ================== */
.section-header {
    width: 1130px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .section-header h2 {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #f2c86b;
        margin-bottom: 12px;
    }

    .section-header a {
        color: #888;
        text-decoration: none;
        font-size: 14px;
        transition: 0.2s;
    }

        .section-header a:hover {
            color: #fff;
        }


/* ================== PORTFOLIO ================== */
.portfolio {
    width: 100%;
}


/* ================== FEATURED WORK ================== */
.featured {
    overflow: hidden;
    width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    justify-content: center;
    transition: 0.3s ease;
}

.featured-left,
.featured-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    width: 560px;
    height: 120px;
}

    .feature.right-top {
        height: 165px;
    }

    .feature.right-bottom {
        height: 210px;
    }

    .feature img {
        transition: 0.3s ease;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .feature:hover img {
        transform: scale(1.04);
    }


/* ================== RECENT WORK ================== */
.grid {
    display: grid;
    grid-template-columns: repeat(6, 180px);
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.card {
    width: 180px;
    height: 160px;
}

    .card img {
        overflow: hidden;
        transition: 0.3s ease;
        border-radius: 15px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card:hover img {
        transform: scale(1.05);
    }

.gallery-trigger {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    display: block;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    overflow: hidden;
    border-radius: 15px;
}

.recent-project[data-page="2"] {
    display: none;
}

.recent-work-grid {
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.recent-work-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.recent-work-arrow {
    background: none;
    border: none;
    color: #D4A94F;
    font-size: 34px;
    cursor: pointer;
    transition: 0.25s ease;
}

    .recent-work-arrow:hover {
        color: #f2c86b;
        transform: scale(1.12);
    }

.recent-work-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.recent-work-label {
    color: #D4A94F;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.recent-work-page {
    color: #8f7a45;
    font-size: 12px;
}


/* ================== GALLERY MODAL ================== */

#galleryInfo {
    color: #D4A94F;
    font-size: 14px;
    text-align: center;
    margin: 14px 0;
    min-height: 24px;
    display: block;
}

#galleryInfo h3 {
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 4px;
}

#galleryInfo p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}



.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    overflow: hidden;
}

    .gallery-modal.active {
        display: flex;
    }

.gallery-content {
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
}

#galleryImage {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
    transition: transform 0.15s ease;
    transform: scale(1);
    transform-origin: center center;
}

    #galleryImage.zoomed {
        cursor: zoom-out;
        transform: scale(1.8);
    }

.gallery-close {
    z-index: 2;
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #D4A94F;
    font-size: 42px;
    cursor: pointer;
}

.gallery-arrow {
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #D4A94F;
    font-size: 60px;
    cursor: pointer;
}

.gallery-prev {
    left: 32px;
}

.gallery-next {
    right: 32px;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

    .gallery-thumbs img {
        width: 160px;
        height: 90px;
        object-fit: cover;
        opacity: 0.45;
        cursor: pointer;
    }

        .gallery-thumbs img.active {
            opacity: 1;
            outline: 2px solid #D4A94F;
        }


/* ================== SERVICES ================== */
.services {
    margin-top: 40px;
}

.services-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
    color: #D4A94F;
}

.services-row {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 220px;
}

    .service img {
        width: 64px;
        height: 64px;
        object-fit: contain;
    }

    .service h3 {
        font-size: 14px;
        color: #fff;
        margin-bottom: 4px;
    }

    .service p {
        font-size: 12px;
        color: #888;
        line-height: 1.4;
    }

.divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #d4a94f, transparent);
    opacity: 0.6;
}

.services-bottom {
    width: 1300px;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}

.services-left {
    max-width: 500px;
}

    .services-left h3 {
        font-size: 20px;
        color: #e6ded3;
        margin-bottom: 12px;
    }

    .services-left p {
        font-size: 14px;
        color: #888;
        line-height: 1.6;
    }

.services-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 13px;
    color: #aaa;
}

    .services-right span {
        color: #d4a94f;
        margin-right: 10px;
    }






/* ================== TESTIMONIAL ================== */


.testimonials {
    padding: 100px 8%;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border: 1px solid rgba(212, 169, 79, 0.25);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-card span {
    display: block;
    margin-top: 20px;
    color: #D4A94F;
}







/* ================== CONTACT ================== */
.contact {
    margin-top: 50px;
    margin-bottom: 15px;
    text-align: center;
}

    .contact img {
        width: 64px;
    }

.contact-box p {
    color: #888;
    margin-bottom: 20px;
}

.contact-note {
    color: #888;
}

.contact-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(212, 169, 79, 0.35);
        color: #fff;
        padding: 12px 14px;
        border-radius: 8px;
        font-size: 13px;
        outline: none;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #777;
        }

    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    .contact-form .cta {
        width: 100%;
        padding: 13px 24px;
        border-radius: 30px;
        font-size: 24px;
        font-weight: 500;
        margin-top: 2px;
    }


/* ================== CUSTOM SELECT ================== */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 169, 79, 0.35);
    color: #aaa;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
}

    .custom-select-btn.disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

.custom-select-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #010202;
    border: 1px solid rgba(212, 169, 79, 0.45);
    border-radius: 8px;
    overflow: hidden;
    z-index: 20;
}

.custom-select.active .custom-select-menu {
    display: block;
}

.custom-select-menu div {
    padding: 10px 14px;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
}

    .custom-select-menu div:hover {
        background: rgba(212, 169, 79, 0.12);
        color: #D4A94F;
    }

#budgetDropdown .custom-select-menu:empty {
    display: none !important;
}

#budgetDropdown:has(.custom-select-btn:disabled) {
    pointer-events: none;
}




/* ================== BACK TO SITE ================== */



/* DASHBOARD back button aligned to left edge of card */
.dashboard-card {
    position: relative; /* make the card a positioning context */
}

.dashboard-card .back-button {
    position: absolute; /* position relative to card */
    top: 20px;          /* distance from top of card */
    left: 20px;         /* flush with left edge of card */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4A94F;
    font-size: 18px;
    text-decoration: none;
}






/* ================== BACK TO TOP ================== */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20,20,20,0.6);
    color: #d4a94f;
    border: none;
    display: none;
    cursor: pointer;
}


/* ================== MOBILE STICKY CONTACT ================== */
.mobile-sticky-contact {
    display: none !important;
}

    .mobile-sticky-contact.hidden {
        display: none !important;
    }


.mobile-sticky-Dashboard {
    display: none !important;
}

    .mobile-sticky-Dashboard.hidden {
        display: none !important;
    }

/* ================== FOOTER ================== */
.footer {
    background-color: #010202;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 2s ease-out;
    position: relative;
}

    .footer p {
        font-size: 0.7em;
        color: #888;
        margin: 4px 0;
    }

.social-icons {
    color: #d4a94f;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
    z-index: 100;
}

    .social-icons img {
        width: 40px;
        height: 40px;
        transition: transform 0.3s;
        animation: bounceIn 1s ease-out;
        z-index: 100;
    }

        .social-icons img:hover {
            transform: scale(1.2);
            filter: drop-shadow(0 0 10px rgba(214, 170, 62, 0.25));
        }












/* ================== MOBILE ================== */
@media (max-width: 935px) {
    body {
        overflow-x: hidden;
        max-width: 100%;
        zoom: 1.1;
    }



    /* ================== MOBILE DASHBOARD ================== */


    .loginDashboardBTN {
        top: 5px;
        left: 10px;
        right: auto;
        padding: 10px 14px;
        font-size: 0;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        border: 0px solid #D4A94F;
    }

        .loginDashboardBTN:hover {
            background: transparent;
            color: #D4A94F;
        }

            .loginDashboardBTN:hover img {
                filter: none;
            }







    .bg-layer-video {
        filter: brightness(35%);        
    }

    .top-ui {
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 10px 0 !important;
    }

    .top-left {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        width: 120px;
        max-width: 90vw;
    }

    .nav-center {
        display: none !important;
    }

    .mobile-sticky-contact {
        position: fixed;
        top: 8px;
        right: 16px;
        z-index: 999999;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
    }

        .mobile-sticky-contact:not(.hidden) {
            display: flex !important;
        }

        .mobile-sticky-contact.hidden {
            display: none !important;
        }

        .mobile-sticky-contact img {
            width: 22px;
            height: 22px;
        }




    .mobile-sticky-dashboard {
        position: fixed;
        top: 8px;
        right: 16px;
        z-index: 999999;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
    }

        .mobile-sticky-dashboard:not(.hidden) {
            display: flex !important;
        }

        .mobile-sticky-dashboard.hidden {
            display: none !important;
        }

        .mobile-sticky-dashboard img {
            width: 22px;
            height: 22px;
        }




    .hero {
        padding: 0 16px !important;
        margin-top: 120px !important;
        margin-bottom: 10px;
        text-align: center !important;
        justify-content: center !important;
    }

        .hero h1,
        .hero h2 {
            font-size: 30px !important;
            line-height: 1.05 !important;
        }

        .hero h2 {
            margin-top: -2px !important;
        }

        .hero p {
            font-size: 13px !important;
            max-width: 280px !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }

    .section-header {
        width: 100%;
        padding: 0 16px;
        margin: 0;
    }

    .featured {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: 400px margin: 0 !important;
        padding: 0 16px !important;
        gap: 12px !important;
        overflow: hidden !important;
    }

    .featured-left,
    .featured-right {
        display: contents !important;
    }

    .feature {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }

        .feature img {
            border-radius: 12px !important;
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            display: block;
        }

    .grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        width: 100%;
        padding: 0 16px;
        margin: 0;
        gap: 14px !important;
    }

    .card {
        width: 100% !important;
        height: auto !important;
    }

        .card img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
        }

    .gallery-close {
        top: 12px !important;
        right: 16px !important;
        z-index: 10000;
    }

    .gallery-arrow {
        z-index: 10000;
        font-size: 42px !important;
    }

    .gallery-prev {
        left: 10px !important;
    }

    .gallery-next {
        right: 10px !important;
    }

    .gallery-thumbs img {
        width: 80px !important;
        height: 45px !important;
        object-fit: cover;
        opacity: 0.45;
        cursor: pointer;
    }

    .services {
        margin-top: 20px !important;
    }

    .services-row {
        width: 100% !important;
        flex-direction: column !important;
        align-items: center;
        gap: 18px;
        padding: 0 16px;
    }

    .service {
        width: 100%;
        max-width: 420px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .service img {
            flex-shrink: 0;
        }

        .service div {
            text-align: left;
        }

    .divider {
        display: none;
    }

    .services-extended {
        margin-top: 16px !important;
        padding: 0 16px;
    }

    .services-bottom {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px;
        margin-top: 10px !important;
    }

    .services-left,
    .services-right {
        width: 100% !important;
    }


    .testimonial-grid {
        grid-template-columns: 1fr;
    }


/* ================== BASE ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: #fff;
    background: #010202;
    font-family: 'Roboto', sans-serif;
    zoom: 1;
}

section {
    padding: 10px 0;
}

/* ================== CTA BUTTON ================== */
.cta {
    font-size: 30px;
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid #d4a94f;
    color: #d4a94f;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 18px;
    text-decoration: none;
    display: inline-block;
}

.cta:hover {
    background: #d6aa3e;
    color: #000;
    border-color: #d6aa3e;
    box-shadow: 0 0 22px rgba(214, 170, 62, 0.35);
    transform: translateY(-2px);
}

/* ================== FADE ================== */
.fade-section {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-delay-1 { transition-delay: 0.15s; }
.fade-delay-2 { transition-delay: 0.3s; }
.fade-delay-3 { transition-delay: 0.45s; }

.logo-fade,
.nav-fade {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-fade.visible,
.nav-fade.visible { opacity: 1; }

/* ================== GLOBAL ICONS ================== */
.icons {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
}

/* ================== TOP UI ================== */
.top-ui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1130px minmax(0, 1fr);
    padding: 0;
    height: 120px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.8), transparent);
}

.top-ui > * { grid-column: 2; }

.top-left {
    display: flex;
    align-items: flex-start;
}

.logo-img { width: 150px; display: block; }

.nav-center {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.nav-center .nav-cta {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid #d4a94f;
    color: #d4a94f;
    background: transparent;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.nav-center .nav-cta:hover {
    background: #d4a94f;
    color: #000;
}

/* ================== FOOTER ================== */
.footer {
    background-color: #010202;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 2s ease-out;
    position: relative;
}

.footer p {
    font-size: 0.7em;
    color: #888;
    margin: 4px 0;
}

.social-icons {
    color: #d4a94f;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
    z-index: 100;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
    animation: bounceIn 1s ease-out;
}

.social-icons img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(214, 170, 62, 0.25));
}

/* ================== BACKGROUND ================== */
.bg-layer {
    will-change: transform;
    position: fixed;
    inset: 0;
    background: url("Images/Background.png") no-repeat;
    background-size: 100% auto;
    background-position: right top;
    z-index: -2;
}

.bg-layer-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: right top;
    z-index: -2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
    filter: brightness(50%);
}

.bg-layer-video.bg-visible { opacity: 1; }

/* ================== LARGE RESOLUTION ================== */
@media (min-width: 1920px) {
    body { zoom: 1.3 !important; }
}

/* ================== BACK TO TOP ================== */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20,20,20,0.6);
    color: #d4a94f;
    border: none;
    display: none;
    cursor: pointer;
}
    .contact-form .cta {
        width: fit-content !important;
        padding: 15px 30px !important;
        font-size: 20px !important;
        display: inline-block;
        margin: 0 auto;
    }
}
