/* ═══════════════════════════════════════════
   KLAUDIA BRONOWSKA — Luxury Dubai Real Estate
   ═══════════════════════════════════════════ */

:root {
    --gold: #C9A96E;
    --gold-light: #D4BC8B;
    --gold-dark: #A8874D;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --dark-grey: #2A2A2A;
    --medium-grey: #888888;
    --light-grey: #E8E4DF;
    --cream: #F5F1EC;
    --white: #FAFAF8;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── LOADER ─── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-text {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.3em;
    animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ─── NAVIGATION ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    background: transparent;
}
nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.nav-logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 0.6rem 1.8rem !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease !important;
    font-family: var(--sans);
}
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}
.hamburger span {
    width: 28px;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    display: block;
}

/* ─── HERO ─── */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.4) 0%,
        rgba(10,10,10,0.2) 40%,
        rgba(10,10,10,0.3) 70%,
        rgba(10,10,10,0.7) 100%
    );
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(201,169,110,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,110,0.5) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}
.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}
.hero-subtitle {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero-cta {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem 3rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
    backdrop-filter: blur(5px);
}
.hero-cta:hover {
    background: var(--gold);
    color: var(--black);
}
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
    z-index: 2;
}
.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SECTIONS COMMON ─── */
section {
    padding: 8rem 4rem;
    position: relative;
}
.section-eyebrow {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.section-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--medium-grey);
    max-width: 560px;
}
.gold-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── ABOUT ─── */
.about {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.2;
    pointer-events: none;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,169,110,0.15);
}
.stat-number {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
}
.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--medium-grey);
    margin-top: 0.5rem;
}

/* ─── FULL-WIDTH IMAGE BANNER ─── */
.image-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}
.image-banner img {
    width: 100%;
    height: auto;
    display: block;
}
.image-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.4) 100%);
}
.image-banner-text {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    text-align: center;
    padding: 0 2rem;
}

/* ─── FEATURED PROPERTY ─── */
.featured {
    background: var(--black);
    padding: 8rem 4rem;
}
.featured-header {
    text-align: center;
    margin-bottom: 5rem;
}
.property-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.property-gallery {
    position: relative;
}
.property-main-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.property-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.property-main-image:hover img {
    transform: scale(1.03);
}
.property-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.property-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.property-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-thumb:hover img {
    transform: scale(1.08);
}
.property-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-align: center;
}
.property-details {
    padding-top: 1rem;
}
.property-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.property-name {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.property-location {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}
.property-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--medium-grey);
    margin-bottom: 2.5rem;
}
.property-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.spec-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spec-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--medium-grey);
    margin-bottom: 0.5rem;
}
.spec-value {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
}
.property-price-section {
    background: rgba(201,169,110,0.05);
    border: 1px solid rgba(201,169,110,0.12);
    padding: 2rem;
    margin-bottom: 2rem;
}
.price-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--medium-grey);
    margin-bottom: 0.5rem;
}
.price-value {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
}
.price-note {
    font-size: 0.75rem;
    color: var(--medium-grey);
    margin-top: 0.5rem;
}
.property-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--sans);
}
.property-cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,110,0.2);
}

/* ─── IMAGE GALLERY GRID ─── */
.gallery-section {
    background: var(--charcoal);
    padding: 6rem 4rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-label {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
}
.gallery-item.large {
    grid-column: span 2;
}

/* ─── WHY DUBAI ─── */
.why-dubai {
    background: var(--black);
}
.why-dubai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}
.why-card {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.why-card:hover {
    border-color: rgba(201,169,110,0.2);
    transform: translateY(-5px);
}
.why-card:hover::before { opacity: 1; }
.why-card-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: block;
}
.why-card-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.why-card-text {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--medium-grey);
}

/* ─── LOCATION ─── */
.location-section {
    background: var(--charcoal);
    padding: 6rem 4rem;
}
.location-map {
    margin-top: 3rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.location-map img {
    width: 100%;
    height: auto;
}
.location-distances {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.distance-item {
    text-align: center;
    padding: 1.5rem 0;
}
.distance-time {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.distance-place {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--medium-grey);
    line-height: 1.5;
}

/* ─── PAYMENT PLAN ─── */
.payment {
    background: var(--black);
}
.payment-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    position: relative;
    padding: 0 2rem;
}
.payment-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(201,169,110,0.2));
}
.payment-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}
.step-circle {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    background: var(--black);
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}
.step-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--medium-grey);
    line-height: 1.6;
    max-width: 140px;
}

/* ─── SERVICES ─── */
.services {
    background: var(--charcoal);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.service-item {
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.04);
    background: rgba(255,255,255,0.015);
    transition: all 0.5s ease;
    position: relative;
}
.service-item:hover {
    border-color: rgba(201,169,110,0.15);
    background: rgba(201,169,110,0.03);
}
.service-number {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201,169,110,0.15);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}
.service-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.service-text {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--medium-grey);
}

/* ─── TESTIMONIAL ─── */
.testimonial {
    background: var(--black);
    text-align: center;
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}
.testimonial::before {
    content: '"';
    font-family: var(--serif);
    font-size: 20rem;
    color: rgba(201,169,110,0.04);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.testimonial-quote {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--light-grey);
}
.testimonial-author {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ─── CONTACT ─── */
.contact {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--medium-grey);
}
.form-group input,
.form-group textarea,
.form-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.8rem 0;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.3s;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
.form-group select option {
    background: var(--charcoal);
    color: var(--white);
}
.form-submit {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1.1rem 3rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--sans);
    margin-top: 1rem;
    align-self: flex-start;
}
.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,110,0.15);
}
.contact-info {
    padding-top: 1rem;
}
.contact-detail {
    margin-bottom: 2.5rem;
}
.contact-detail-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.contact-detail-value {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--light-grey);
    line-height: 1.7;
}
.contact-detail-value a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-detail-value a:hover { color: var(--gold); }
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.social-link {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--medium-grey);
    text-decoration: none;
    transition: color 0.3s;
}
.social-link:hover { color: var(--gold); }

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-logo {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
}
.footer-text {
    font-size: 0.7rem;
    color: var(--medium-grey);
    letter-spacing: 0.05em;
}

/* ─── FLOATING BUTTONS ─── */
.float-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.float-whatsapp {
    background: #25D366;
    color: white;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
.float-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}
.float-instagram:hover { transform: scale(1.1); }

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid rgba(201,169,110,0.1);
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
    font-family: var(--sans);
    font-weight: 200;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,169,110,0.3);
    transition: all 0.3s;
}
.lightbox-close:hover {
    background: var(--gold);
    color: var(--black);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    section { padding: 6rem 3rem; }
    .about { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { max-height: 500px; }
    .about-image::after { display: none; }
    .property-showcase { grid-template-columns: 1fr; }
    .why-dubai-grid { grid-template-columns: 1fr 1fr; }
    .contact { grid-template-columns: 1fr; gap: 4rem; }
    .payment-timeline { flex-wrap: wrap; gap: 2rem; }
    .payment-timeline::before { display: none; }
    .payment-step { flex: unset; width: 30%; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-column: span 2; }
    .location-distances { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    nav { padding: 1.2rem 2rem; }
    nav.scrolled { padding: 0.8rem 2rem; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,10,0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 0.9rem; }
    .hamburger { display: flex; }
    section { padding: 5rem 1.5rem; }
    .gallery-section, .location-section { padding: 5rem 1.5rem; }
    .why-dubai-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .property-thumb-row { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .payment-step { width: 45%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; }
    .location-distances { grid-template-columns: repeat(2, 1fr); }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
}
