/* Footer CSS Start */
/* NoidaLuxury Footer — CSS Variables */
:root {
    --nl-gdark: #0b1e14;
    --nl-gmid: #112a1c;
    --nl-gaccent: #1b6b5a;
    --nl-gold: #c9a84c;
    --nl-gold-light: #e8cc7e;
    --nl-text-light: #f5f0e8;
    --nl-text-muted: #a0b8a8;
    --nl-border: #2a4a35;
}

.nl-footer {
    background: linear-gradient(160deg, #0b1e14 0%, #112a1c 50%, #0d2117 100%);
    font-family: "DM Sans", sans-serif;
    color: #f5f0e8;
    position: relative;
    overflow: hidden;
}

.nl-footer::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.nl-footer::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(27, 107, 90, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Top grid */
.nl-ftop {
    border-bottom: 1px solid #2a4a35;
    padding: 48px 40px 40px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Brand column */
.nl-fbrand h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.nl-ftag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0b8a8;
    margin-bottom: 18px;
}

.nl-fdivider {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #c9a84c, transparent);
    margin-bottom: 18px;
}

.nl-fci {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.nl-ficon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: 1px solid #2a4a35;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.07);
}

.nl-ficon svg {
    width: 13px;
    height: 13px;
    fill: #c9a84c;
}

.nl-fct {
    font-size: 12.5px;
    line-height: 1.65;
    color: #a0b8a8;
}

.nl-fct strong {
    display: block;
    color: #f5f0e8;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 2px;
}

.nl-fct a {
    color: #f5f0e8;
    text-decoration: none;
    transition: color 0.2s;
}

.nl-fct a:hover {
    color: #c9a84c;
}

/* Section headings */
.nl-fh4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a84c;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.nl-fh4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 1px;
    background: #c9a84c;
    opacity: 0.5;
}

.nl-fh4-gap {
    margin-top: 26px;
}

/* Link lists */
.nl-flinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nl-flinks li {
    margin-bottom: 9px;
}

.nl-flinks li a {
    font-size: 13px;
    color: #a0b8a8;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nl-flinks li a::before {
    content: "";
    width: 3px;
    height: 3px;
    background: #c9a84c;
    border-radius: 50%;
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.nl-flinks li a:hover {
    color: #f5f0e8;
    padding-left: 4px;
}

.nl-flinks li a:hover::before {
    opacity: 1;
}

/* Social buttons */
.nl-socgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.nl-socbtn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid #2a4a35;
    border-radius: 8px;
    text-decoration: none;
    color: #a0b8a8;
    font-size: 11.5px;
    transition: all 0.22s;
    background: rgba(255, 255, 255, 0.02);
    font-family: "DM Sans", sans-serif;
}

.nl-socbtn:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-2px);
}

.nl-socbtn svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0;
}

.nl-socbtn-full {
    grid-column: span 2;
}

/* Newsletter box */
.nl-nbox {
    padding: 15px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.13);
    border-radius: 10px;
    margin-bottom: 14px;
}

.nl-nbox p {
    font-size: 11px;
    color: #a0b8a8;
    margin-bottom: 10px;
    line-height: 1.5;
}

.nl-nform {
    display: flex;
    border: 1px solid #2a4a35;
    border-radius: 7px;
    overflow: hidden;
}

.nl-nform input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    outline: none;
    padding: 9px 12px;
    font-size: 12px;
    color: #f5f0e8;
    font-family: "DM Sans", sans-serif;
}

.nl-nform input::placeholder {
    color: #a0b8a8;
}

.nl-nform button {
    background: #c9a84c;
    color: #0b1e14;
    border: none;
    padding: 9px 13px;
    font-size: 11px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    white-space: nowrap;
}

.nl-nform button:hover {
    background: #e8cc7e;
}

/* CTA pill buttons */
.nl-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.nl-ctabtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.22s;
    font-family: "DM Sans", sans-serif;
}

.nl-ctabtn.nl-ctacall {
    background: rgba(27, 107, 90, 0.15);
    border: 1px solid #1b6b5a;
    color: #4ecdc4;
}

.nl-ctabtn.nl-ctacall:hover {
    background: #1b6b5a;
    color: #fff;
}

.nl-ctabtn.nl-ctawa {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #4ade80;
}

.nl-ctabtn.nl-ctawa:hover {
    background: #128c7e;
    color: #fff;
}

.nl-ctabtn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Bottom bar */
.nl-fbot {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.nl-fcopy {
    font-size: 12px;
    color: #a0b8a8;
    line-height: 1.6;
}

.nl-fcopy span {
    color: #c9a84c;
}

.nl-flast {
    font-size: 11px;
    color: rgba(160, 184, 168, 0.45);
    margin-top: 3px;
}

.nl-fright {
    font-size: 11px;
    color: rgba(160, 184, 168, 0.35);
    text-align: right;
    line-height: 1.8;
}

/* Floating fixed buttons */
.nl-floating {
    position: fixed;
    bottom: 24px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.nl-floating a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.nl-floating a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.nl-floating a svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.nl-floating .nl-fphone {
    background: #1b6b5a;
}

.nl-floating .nl-fwa {
    background: #25d366;
}

/* Responsive */
@media (max-width: 1024px) {
    .nl-ftop {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .nl-ftop > div:nth-child(3) {
        grid-column: 1;
    }

    .nl-ftop > div:nth-child(4) {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .nl-ftop {
        grid-template-columns: 1fr;
        padding: 32px 20px 28px;
    }

    .nl-fbot {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 16px 20px;
    }

    .nl-fright {
        text-align: center;
    }
}

.nl-footer {
    margin-top: 20px;
}
/* Footer CSS End*/

/* Header CSS Start*/
:root {
    --nl-gdark: #0b1e14;
    --nl-gmid: #112a1c;
    --nl-gaccent: #1b6b5a;
    --nl-gold: #c9a84c;
    --nl-gold-light: #e8cc7e;
    --nl-text-light: #f5f0e8;
    --nl-text-muted: #a0b8a8;
    --nl-border: #2a4a35;
}

* {
    box-sizing: border-box;
}

.nl-header {
    background: #0d2117;
    font-family: "DM Sans", sans-serif;
    border-bottom: 1px solid var(--nl-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nl-topbar {
    background: var(--nl-gdark);
    border-bottom: 1px solid rgba(42, 74, 53, 0.5);
    padding: 7px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nl-topbar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nl-topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--nl-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nl-topbar-link:hover {
    color: var(--nl-gold);
}

.nl-topbar-link .nl-ti {
    width: 12px;
    height: 12px;
    fill: var(--nl-gold);
    flex-shrink: 0;
}

.nl-topbar-right {
    display: flex;
    gap: 8px;
}

.nl-tsoc {
    width: 26px;
    height: 26px;
    border: 1px solid var(--nl-border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--nl-text-muted);
    transition: all 0.2s;
}

.nl-tsoc:hover {
    border-color: var(--nl-gold);
    color: var(--nl-gold);
}

.nl-tsoc svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
}

.nl-navbar {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nl-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.nl-logo img,
.nl-logo .nl-logo-icon {
    width: 42px;
    height: 42px;
    display: block;
}

.nl-logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.nl-logo-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--nl-gold);
    letter-spacing: 0.3px;
    line-height: 1.1;
}

.nl-logo-sub {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--nl-text-muted);
    margin-top: 2px;
    font-weight: 300;
}

.nl-nav {
    display: flex;
    gap: 2px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nl-nav li a {
    font-size: 13px;
    font-weight: 400;
    color: var(--nl-text-muted);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
    display: block;
}

.nl-nav li a:hover {
    color: var(--nl-text-light);
    background: rgba(255, 255, 255, 0.04);
}

.nl-nav li a.nl-active {
    color: var(--nl-gold);
}

.nl-nav li a.nl-active::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--nl-gold);
    border-radius: 1px;
}

.nl-nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nl-btn-call {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--nl-gaccent);
    background: rgba(27, 107, 90, 0.12);
    color: #4ecdc4;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-family: "DM Sans", sans-serif;
}

.nl-btn-call:hover {
    background: var(--nl-gaccent);
    color: #fff;
}

.nl-btn-call svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.nl-btn-wa {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--nl-gold);
    color: #0b1e14;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-family: "DM Sans", sans-serif;
}

.nl-btn-wa:hover {
    background: var(--nl-gold-light);
}

.nl-btn-wa svg {
    width: 13px;
    height: 13px;
    fill: #0b1e14;
}

.nl-gold-line {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--nl-gold),
        rgba(201, 168, 76, 0.2),
        transparent
    );
}

.nl-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nl-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nl-text-muted);
    border-radius: 1px;
    transition: all 0.3s;
}

.nl-mobile-nav {
    display: none;
    background: var(--nl-gdark);
    border-top: 1px solid var(--nl-border);
    padding: 16px 20px 20px;
}

.nl-mobile-nav.nl-open {
    display: block;
}

.nl-mobile-nav a {
    display: block;
    font-size: 14px;
    color: var(--nl-text-muted);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(42, 74, 53, 0.4);
    transition: color 0.2s;
}

.nl-mobile-nav a:last-child {
    border-bottom: none;
}

.nl-mobile-nav a:hover {
    color: var(--nl-gold);
}

.nl-mobile-ctas {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .nl-topbar {
        display: none;
    }

    .nl-navbar {
        padding: 0 20px;
        height: 60px;
    }

    .nl-nav,
    .nl-nav-cta {
        display: none;
    }

    .nl-hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nl-logo-sub {
        display: none;
    }
}
/* Header CSS End*/
