/* ===== CSS VARIABLES ===== */
:root {
    --charcoal: #111116; /* Dark Obsidian Charcoal */
    --dark-grey: #3A3A3C;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --cream: #f4f5f7; /* Cool Light Slate Grey */
    --warm: #E8E2D9;
    --gold: #c5a059; /* Refined Metallic Gold */
    --gold-deep: #B8945E;
    --gold-soft: rgba(197, 160, 89, .14);
    --text-dim: #A9A49B;
    --font-display: 'Times New Roman', 'Garamond', serif;
    --font-display: 'Times New Roman', 'Garamond', serif;
    --font-body: "Google Sans", sans-serif; 
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all .35s cubic-bezier(.2, .7, .2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}
.d-none {
    display: none !important;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 98%;
}
.ccws {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ccws img{
    height:30px;
}
.ccws a{
    margin-left:5px !important;
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height:1.3;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ===== PAGE HERO WITH IMAGE ===== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--black);
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(20, 20, 21, 0.85) 0%,
            rgba(20, 20, 21, 0.6) 50%,
            rgba(20, 20, 21, 0.85) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: auto !important;
}

.page-hero-content .eyebrow {
    color: var(--gold);
}

.page-hero-content .eyebrow::before {
    background: var(--gold);
}

.page-hero-content h1 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.page-hero-content h1 em {
    color: var(--gold);
    font-style: normal;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-content p {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 540px;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 1200;
    width: 0%;
    transition: width .1s linear;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: .06s;
}

.reveal-d2 {
    transition-delay: .12s;
}

.reveal-d3 {
    transition-delay: .18s;
}

.reveal-d4 {
    transition-delay: .24s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== EYEBROW / SECTION HEADING ===== */
.eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold-deep);
    display: inline-block;
}

.section-head {
    margin-bottom:25px;
    position: relative;
    z-index: 2;
}

.section-head h2 {
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -.01em;
}

.section-head.on-dark h2 {
    color: var(--white);
}

.section-head.on-dark .eyebrow {
    color: var(--gold);
}

.section-head p {
    margin-top: 5px;
    color: var(--dark-grey);
    font-size: 15px;
}

.section-head.on-dark p {
    color: var(--text-dim);
}

.section-pad {
    padding: 60px 0;
    position: relative;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 1px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(201, 168, 124, .3);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .3);
    color: var(--white);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 124, .06);
}

.btn-outline-dark {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.btn-outline-dark:hover {
    border-color: var(--gold-deep);
    color: var(--gold-deep);
    background: var(--gold-soft);
}

.btn-text {
    color: var(--gold-deep);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--gold);
}

.btn-text .arrow {
    transition: transform .3s ease;
}

.btn-text:hover .arrow {
    transform: translateX(5px);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
/*    padding: 10px 0;*/
    transition: var(--transition);
    background:#fff;
    color:#000;
}

header.scrolled {
    background:#fff;
    backdrop-filter: blur(14px) saturate(140%);
    padding: 5px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
    header.scrolled .nav-links a {
        color: #000;
    }

        header.scrolled .nav-links a:hover {
            color: #000;
        }

    header.scrolled .hamburger span {
        background: #000;
    }

    header.scrolled .logo img {
        height: 60px !important;
        transition: height .3s ease;
    }
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--white);
    font-weight: 700;
}

.logo img {
   height:80px !important;
   border-radius:3px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    position: relative;
    text-transform: uppercase;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1002;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== SIDE MENU (Mobile) ===== */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    padding: 80px 30px 30px;
    transition: right .4s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.side-menu.open {
    right: 0;
}

.side-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: color .3s ease;
}

.side-menu-close:hover {
    color: var(--gold);
}

.side-menu .menu-logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 32px;
    display: none;
}

.side-menu .menu-logo span {
    color: var(--gold);
    font-style: italic;
}

.side-menu .menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-menu .menu-links a {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: color .3s ease;
    display: block;
}

.side-menu .menu-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.side-menu .menu-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.side-menu .menu-cta .btn {
    width: 100%;
    justify-content: center;
}

.side-menu .menu-contact {
    margin-top: 24px;
    color: var(--text-dim);
    font-size: 13px;
}

.side-menu .menu-contact p {
    margin-bottom: 6px;
}

.side-menu .menu-contact i {
    color: var(--gold);
    width: 20px;
}

/* ===== HERO WITH VIDEO - FIXED ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(20, 20, 21, 0.75) 0%,
            rgba(20, 20, 21, 0.55) 45%,
            rgba(20, 20, 21, 0.95) 100%);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding-top: 80px;
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-tag::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.07;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -.01em;
    text-align: center;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal !important;
    font-weight: 500;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGold 3s ease-in-out infinite;
}

@keyframes shimmerGold {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom:25px;
}

.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 28px;
    max-width: 600px;
}

.hero-stats div {
    padding-right: 36px;
    margin-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero-stats div:last-child {
    border-right: none;
    margin: 0;
    padding: 0;
}

.hero-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    font-weight: 600;
}

.hero-stats span {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-cue .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-cue .line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--gold);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(50px);
    }
}

/* Mobile fallback for video */
@media (max-width: 640px) {
    .hero-video {
        display: none;
    }

    .hero {
        background:
            linear-gradient(180deg, rgba(20, 20, 21, .6) 0%, rgba(20, 20, 21, .3) 45%, rgba(20, 20, 21, .9) 100%),
            url('../images/hero-m.webp') center/cover no-repeat;
    }
}

/* ===== MARQUEE ===== */
.strip {
    background: var(--black);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.strip-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.strip-track span {
    color: var(--text-dim);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
}

.strip-track span strong {
    color: var(--gold);
    font-weight: 600;
    margin-right: 4px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(25px, 3.2vw, 38px);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.about-content p {
    color: var(--dark-grey);
    font-size: 15px;
    margin-bottom: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin: 2px 0 25px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--charcoal);
}

.about-features i {
    color: var(--gold-deep);
    font-size: 14px;
}

.about-image {
    position: relative;
    border-radius: 2px;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform .6s ease;
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--charcoal);
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .2);
}

.about-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
}

.about-badge span {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* ===== FEATURED PROJECT ===== */
.featured {
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 30px;
/*    align-items: center;*/
}

.featured-media {
    position: relative;
}

.featured-media img {
    border-radius: 1px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform .7s ease;
}

.featured-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--charcoal);
    color: var(--white);
    padding: 20px 26px;
    max-width: 210px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.featured-badge strong {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    display: block;
}

.featured-badge span {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.featured-info h3 {
    font-size: clamp(24px, 2.8vw, 32px);
    margin-bottom: 10px;
    color: var(--charcoal);
    letter-spacing: -.01em;
}

.featured-info > p {
    color: var(--dark-grey);
    margin-bottom: 24px;
    font-size: 15px;
    text-align: justify;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom:25px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--charcoal);
}

.feature-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--gold-deep);
    margin-top: 6px;
    flex-shrink: 0;
    border-radius: 1px;
    transform: rotate(45deg);
}

.featured-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== PROJECTS ===== */
.projects-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom:25px;
}

.project-tabs {
    display: flex;
    gap: 8px;
}

.tab-btn {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    border: 1px solid var(--warm);
    background: transparent;
    color: var(--dark-grey);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.tab-btn:hover:not(.active) {
    border-color: var(--gold);
    color: var(--gold);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pcard {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    cursor: pointer;
    transition: transform .35s ease;
}

.pcard:hover {
    transform: translateY(-6px);
}

.pcard img {
    height: 380px;
    width: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.pcard:hover img {
    transform: scale(1.06);
}

.pcard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.pcard-status {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 11px;
}

.pcard-status.upcoming {
    background: var(--cream);
    color: var(--charcoal);
}

.pcard-overlay h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 4px;
}

.pcard-overlay p {
    color: var(--text-dim);
    font-size: 12.5px;
    margin-bottom: 12px;
}

.pcard-link {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s ease;
}

.pcard:hover .pcard-link {
    gap: 10px;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--cream);
}

.gallery-slider-container {
    padding: 0;
    position: relative;
}

.gallerySwiper {
    width: 100%;
    padding: 0;
}

.gallerySwiper .swiper-slide {
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallerySwiper .swiper-slide:hover img {
    transform: scale(1.04);
}

.gallerySwiper .swiper-slide::after {
/*    content: "\f065";*/
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    opacity: 0;
    transition: opacity .35s ease;
}

.gallerySwiper .swiper-slide:hover::after {
    opacity: 1;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    background: var(--gold);
    color: var(--black);
}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
    display: none;
}

.gallerySwiper .swiper-button-next i,
.gallerySwiper .swiper-button-prev i {
    font-size: 16px;
}

.gallerySwiper .swiper-pagination-bullet {
    background: var(--text-dim);
    opacity: .5;
    display: none;
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

/* ============================================
   LIGHTBOX WITH CONTROLS
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 30px;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex !important;
    animation: fadeInLB 0.35s ease;
}

@keyframes fadeInLB {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
}

.lightbox img.loading {
    opacity: 0.5;
}

/* ===== LIGHTBOX CLOSE BUTTON ===== */
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
    transform: rotate(90deg);
}

/* ===== LIGHTBOX NAVIGATION ===== */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--gold);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-prev.disabled,
.lightbox-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== LIGHTBOX COUNTER ===== */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    z-index: 100000;
}

.lightbox-counter span {
    font-weight: 600;
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .lightbox {
        padding: 16px;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-counter {
        bottom: 16px;
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px !important;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .lightbox-prev {
        left: 6px;
    }

    .lightbox-next {
        right: 6px;
    }

    .lightbox-close {
        width: 34px;
        height: 34px;
        font-size: 14px;
        top: 12px;
        right: 12px;
    }
}

/* ===== WHY CHOOSE ===== */
.why {
    background: var(--black);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: var(--black);
    padding: 36px 30px;
    transition: background .4s ease;
}

.why-card:hover {
    background: var(--charcoal);
}

.why-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 26px;
    display: flex;
    align-items: center;
}

.why-card h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-card p {
    color: var(--text-dim);
    font-size: 13.5px;
}

/* ===== PARTNER ===== */
.partner-section {
    background: var(--warm);
    overflow: hidden;
}

.partner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-grid img {
    height: 300px;
    object-fit: cover;
    border-radius: 1px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .15);
}

/* ===== TESTIMONIALS ===== */
.testi {
    background: var(--cream);
    position: relative;
}

.testi-wrap {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
}

.testi-slide {
    display: none;
}

.testi-slide.active {
    display: block;
    animation: fadeIn .6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testi-quote {
    font-family: var(--font-display);
    font-size: clamp(19px, 2.4vw, 26px);
    color: var(--charcoal);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 24px;
}

.testi-person strong {
    display: block;
    font-size: 14px;
    color: var(--charcoal);
}

.testi-person span {
    font-size: 12.5px;
    color: var(--dark-grey);
}

.testi-stars {
    color: var(--gold-deep);
    font-size: 15px;
    letter-spacing: 2px;
    margin-top: 10px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.testi-dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: var(--warm);
    cursor: pointer;
    transition: var(--transition);
}

.testi-dots button.active {
    background: var(--gold-deep);
    width: 22px;
    border-radius: 3px;
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    border: 1px solid var(--warm);
    transition: box-shadow .35s ease, transform .35s ease;
}

.news-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
    transform: translateY(-3px);
}

.news-img {
    height: 250px;
    overflow: hidden;
}

.news-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-body {
    padding: 22px;
}

.news-date {
    font-size: 11px;
    color: var(--gold-deep);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.news-body h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--charcoal);
    line-height: 1.4;
}

.news-body p {
    font-size: 13.5px;
    color: var(--dark-grey);
    margin-bottom: 14px;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(125deg, var(--black) 0%, var(--charcoal) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 168, 124, .1);
    border-radius: 50%;
    top: -250px;
    right: -180px;
}

.cta-band::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(201, 168, 124, .08);
    border-radius: 50%;
    bottom: -200px;
    left: -140px;
}

.cta-band h2 {
    color: var(--white);
    font-size: clamp(26px, 3.6vw, 38px);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cta-band p {
    color: var(--text-dim);
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.cta-band .hero-ctas {
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== FOOTER ===== */
footer {
    background: #fff;
    color: #000;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

    .footer-logo img {
        width: 90%;
        border-radius: 5px;
    }

.footer-grid p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #000;
/*    text-align:center;*/
}

.footer-col h5 {
    color: #000;
    font-size: 12.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 8px;
}

    .footer-col ul li a {
        font-size: 13.5px;
        color: #000;
        transition: color .3s ease, padding-left .3s ease;
    }

        .footer-col ul li a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 10px;
    color: #000;
}

    .footer-bottom a {
/*        margin-left: 18px;*/
        color:var(--gold);
        transition: color .3s ease;
    }

        .footer-bottom a:hover {
            color: var(--gold);
        }
/* ===== FLOATING BUTTONS ===== */
.float-btns {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    cursor: pointer;
    font-size: 20px;
    transition: transform .3s ease;
    border: none;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.12);
}

.float-whatsapp {
    background: #25D366;
    color: #fff;
}

.float-enquire {
    background: var(--gold);
    color: var(--black);
}

.float-top {
    background: var(--charcoal);
    color: var(--gold);
    display: none;
}

/* ===== STICKY CALL ===== */
.sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    z-index: 900;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    border-top: 1px solid rgba(201, 168, 124, .2);
}

.sticky-call a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== COOKIE CONSENT ===== */
#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 16px 0;
    color: #fff;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

#cookieConsent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-content p {
    font-size: 13px;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media(max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 320px;
    }

    .about-badge {
        bottom: -12px;
        right: -12px;
        padding: 16px 20px;
    }

    .about-badge strong {
        font-size: 24px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-media img {
        height: 340px;
    }

    .featured-badge {
        position: static;
        margin-top: 14px;
        max-width: none;
        display: inline-block;
        width: 100%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-grid img {
        order: -1;
        height: auto !important;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stats div {
        border: none;
        margin: 0;
        padding: 0;
    }

    .gallery-slider-container {
        padding: 0;
    }

    .gallerySwiper .swiper-slide img {
        height: 260px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .projects-head {
        flex-wrap: wrap;
        gap: 16px;
    }

    .section-pad {
        padding: 60px 0;
    }
}

@media(max-width: 640px) {
    .d-none-sm {
        display: none !important;
    }

    .container {
        padding: 0 10px;
        width: 100%;
    }

    .py-10-sm {
        padding: 10px;
    }

    .nav-cta a,
    .side-menu-close {
        display: none;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
        grid-template-rows: repeat(2, auto);
        /* 2 rows */
        gap: 20px;
        width: 100%;
        text-align:center;
    }

    .section-pad, .gallery-detail-section, .amenities-section, .floorplans-section, .location-section, .specs-section, .cta-project, .video-gallery-section, footer, .why-partner-section, .process-section, .form-section, .partner-testimonials, .cta-band, .insights-section, .blog-detail-section, .contact-info-section, .social-section, .why-work-section,
.positions-section, .apply-section, .legal-section, .rera-section {
        padding: 40px 0 !important;
    }
    .blog-grid,.footer-grid {
        gap: 20px !important;
    }
     .gallery-grid-section, .contact-form-section {
        padding: 0 0 30px 0;
     }
    .project-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .projects-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sticky-call {
        display: flex;
    }

    .float-btns {
        bottom: 80px;
        right: 16px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .side-menu {
        width: 100%;
        padding: 70px 24px 24px;
    }

    .hero h1 {
        font-size: clamp(28px, 7vw, 38px);
    }

    .hero p {
        font-size: 15px;
    }

    .hero-stats strong {
        font-size: 22px;
    }

    .hero-ctas {
        gap: 10px;
    }

    .hero-ctas .btn {
        padding: 10px 20px;
        font-size: 11.5px;
    }

    .gallerySwiper .swiper-slide img {
        height: 180px;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .gallerySwiper .swiper-button-next i,
    .gallerySwiper .swiper-button-prev i {
        font-size: 12px;
    }

    .about-badge {
        position: static;
        margin-top: 16px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .scroll-cue {
        display: none;
    }

    .section-head {
        margin-bottom: 20px;
    }

    .section-head h2 {
        font-size: clamp(22px, 5vw, 30px);
    }

    .featured-media img {
        height: 240px;
    }

    .pcard img {
        height: 260px;
    }

    .about-image img {
        height: 240px;
    }

    .partner-grid img {
        height: 200px;
    }

    .news-img {
        height: auto;
    }
}