/* ============================================
   WEALTHPLUS GEOMATICS — STYLESHEET
   Theme: Dark Editorial / Architectural Luxury
   ============================================ */

:root {
    --gold: #C9A84C;
    --gold-light: #E8CB7D;
    --gold-dark: #9E7B2E;
    --charcoal: #0F0F0F;
    --dark: #141414;
    --dark-2: #1A1A1A;
    --dark-3: #222222;
    --dark-4: #2A2A2A;
    --gray: #888888;
    --gray-light: #BBBBBB;
    --white: #F5F2EC;
    --white-pure: #FFFFFF;
    --red-accent: #C0392B;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Josefin Sans', sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--charcoal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

em { font-style: italic; color: var(--gold); font-family: var(--font-display); }

/* ============ CUSTOM CURSOR ============ */
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-outline {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.12s var(--ease);
}

body.cursor-hover .cursor-dot { width: 16px; height: 16px; background: var(--gold-light); }
body.cursor-hover .cursor-outline { width: 56px; height: 56px; border-color: var(--gold); opacity: 0.6; }

/* ============ PRELOADER ============ */
#preloader {
    position: fixed; inset: 0;
    background: var(--charcoal);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#preloader.done { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo-img {
    width: 200px; height: 200px;
    overflow: hidden;
    margin: 0 auto 28px;
    animation: pulseLogo 1.5s ease-in-out infinite;
}

.preloader-logo-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.35));
}

@keyframes pulseLogo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.preloader-bar {
    width: 200px; height: 2px;
    background: var(--dark-4);
    margin: 0 auto 16px;
}

.preloader-fill {
    height: 100%; width: 0%;
    background: var(--gold);
    animation: fillBar 2.2s var(--ease-out) forwards;
}

@keyframes fillBar { to { width: 100%; } }

.preloader-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--gray);
}

/* ============ HEADER ============ */
#header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 60px;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

#header.scrolled {
    background: rgba(14, 14, 14, 0.95);
    padding: 16px 60px;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link { display: flex; align-items: center; gap: 12px; }

.logo-img-wrap {
    width: 60px; height: 60px;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-img-wrap .logo-img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    width: 48px; height: 48px;
}

.logo-text { display: flex; flex-direction: column; gap: 2px; }

.logo-main {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 300;
}

.main-nav ul { display: flex; gap: 36px; }

.nav-link {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.header-cta {
    padding: 10px 24px;
    border: 1px solid var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    transition: background 0.3s, color 0.3s;
}

.header-cta:hover { background: var(--gold); color: var(--charcoal); }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ============ MOBILE NAV ============ */
.mobile-nav {
    position: fixed; inset: 0;
    background: var(--dark);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-close {
    position: absolute; top: 24px; right: 28px;
    background: none; border: none;
    color: var(--white); font-size: 1.5rem;
    cursor: pointer;
}

.mobile-link {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-link:hover, .mobile-link.cta { color: var(--gold); }

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease), gap 0.3s var(--ease);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary:hover { background: var(--gold-light); gap: 14px; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(245, 242, 236, 0.3);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: border-color 0.3s, background 0.3s;
}

.btn-ghost:hover { border-color: var(--white); background: rgba(245,242,236,0.05); }

/* ============ SECTION LABELS ============ */
.section-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto;
}

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-reveal="up"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.9s var(--ease-out) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 20s linear;
}

.hero-img.zoomed { transform: scale(1); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.45) 0%,
        rgba(10, 10, 10, 0.65) 60%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(245, 242, 236, 0.75);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 120px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-scroll-indicator span {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.hero-stats {
    position: absolute;
    bottom: 40px; left: 0; right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
    gap: 6px;
}

.stat-number-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.58rem;
    letter-spacing: 2.5px;
    color: rgba(245, 242, 236, 0.55);
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.stat-divider {
    width: 1px; height: 44px;
    background: rgba(201, 168, 76, 0.25);
    flex-shrink: 0;
}

/* ============ MARQUEE STRIP ============ */
.marquee-strip {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-right: 12px;
}

.marquee-track .sep { color: var(--charcoal); opacity: 0.5; margin-right: 12px; }

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ ABOUT ============ */
.about {
    padding: 120px 60px;
    background: var(--dark-2);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    height: 550px;
}

.about-img-wrap .about-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}

.about-img-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 60%; height: 60%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-badge-float {
    position: absolute;
    bottom: 30px; left: -30px;
    background: var(--gold);
    padding: 20px 24px;
    text-align: center;
    color: var(--charcoal);
}

.badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.3;
}

.about-copy p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-pillars {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--white);
}

.pillar i { color: var(--gold); font-size: 1rem; }

/* ============ SERVICES ============ */
.services {
    padding: 120px 60px;
    background: var(--charcoal);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--dark-4);
    border: 1px solid var(--dark-4);
}

.service-card {
    background: var(--dark-2);
    padding: 36px 28px;
    position: relative;
    transition: background 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
                background 0.3s var(--ease);
    transition-delay: calc(var(--i, 1) * 0.07s);
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover { background: var(--dark-3); }

.service-card.featured { background: var(--dark-3); border-top: 2px solid var(--gold); }

.service-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
    position: absolute;
    top: 20px; right: 24px;
}

.service-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 16px;
    transition: transform 0.3s var(--ease);
}

.service-card:hover .service-icon { transform: translateY(-4px); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card ul {
    list-style: none;
    flex: 1;
}

.service-card ul li {
    font-size: 0.78rem;
    color: var(--gray-light);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card ul li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--gray-light);
    line-height: 1.8;
    flex: 1;
}

.service-link-wrap { margin-top: 24px; }

.service-link {
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s var(--ease), color 0.3s;
}

.service-link:hover { gap: 14px; color: var(--gold-light); }

/* ============ PROJECTS ============ */
.projects {
    padding: 120px 60px;
    background: var(--dark-2);
}

.projects-header {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.project-item {
    position: relative;
    overflow: hidden;
}

.project-item.large {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.project-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.project-item:hover img { transform: scale(1.06); }

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s;
}

.project-cat {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.project-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.project-item.large .project-overlay h3 { font-size: 1.6rem; }

/* ============ WHY US ============ */
.why-us {
    padding: 120px 60px;
    background: var(--charcoal);
}

.why-us-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.why-us-copy p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 36px;
}

.feature-row {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: padding-left 0.3s var(--ease);
}

.feature-row:first-child { padding-top: 0; }
.feature-row:hover { padding-left: 8px; }

.feature-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.feature-row:hover .feature-icon { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.feature-body h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.feature-body p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============ LISTINGS (Properties & Projects) ============ */
.listings {
    padding: 120px 60px;
    background: var(--dark-2);
    position: relative;
}

.listings::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.listings-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.listings-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.listing-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
                border-color 0.3s, transform 0.4s var(--ease);
    transition-delay: calc(var(--i, 1) * 0.08s);
}

.listing-card.revealed { opacity: 1; transform: translateY(0); }

.listing-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-6px);
}

.listing-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.listing-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.listing-card:hover .listing-img-wrap img { transform: scale(1.08); }

.listing-tag {
    position: absolute;
    top: 14px; left: 14px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    color: var(--charcoal);
}

.listing-tag.for-sale { background: var(--gold); }
.listing-tag.ongoing { background: var(--white); color: var(--dark-2); }

.listing-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.listing-loc {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.listing-body p {
    font-size: 0.78rem;
    color: var(--gray-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}

.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.listing-price {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: var(--gray);
    font-weight: 600;
}

.listing-link {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s var(--ease), color 0.3s;
}

.listing-link:hover { gap: 10px; color: var(--gold-light); }

.listings-cta {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
}

.listings-cta p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* ============ BOOKING ============ */
.booking {
    padding: 120px 60px;
    background: var(--dark-2);
}

.booking-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.booking-copy p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

.booking-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--gray-light);
    transition: color 0.3s;
}

.bc-item i {
    width: 36px; height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.bc-item:hover { color: var(--white); }
.bc-item.whatsapp:hover { color: #25D366; }
.bc-item.whatsapp:hover i { border-color: #25D366; color: #25D366; }

/* FORM */
.booking-form-wrap {
    background: var(--dark-3);
    padding: 48px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gray-light);
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 14px 16px;
    transition: border-color 0.3s;
    outline: none;
    appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    display: none;
    color: #4CAF50;
    font-size: 0.85rem;
    text-align: center;
    padding: 12px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    gap: 8px;
}

.form-success.visible { display: flex; align-items: center; justify-content: center; }

/* ============ FOOTER ============ */
footer {
    background: #0A0A0A;
    padding: 80px 60px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.85rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-links h4, .footer-locations h4 {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links ul li a {
    font-size: 0.82rem;
    color: var(--gray);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links ul li a:hover { color: var(--white); padding-left: 6px; }

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.location-item i { color: var(--gold); font-size: 0.75rem; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .listings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    #header { padding: 20px 24px; }
    #header.scrolled { padding: 14px 24px; }
    .main-nav, .header-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    .about-inner, .why-us-inner, .booking-inner { grid-template-columns: 1fr; gap: 50px; }
    .about, .services, .projects, .why-us, .booking, .listings { padding: 80px 24px; }
    footer { padding: 60px 24px 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .project-item.large { grid-row: auto; grid-column: 1 / 3; height: 320px; }
    .hero-stats { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .booking-form-wrap { padding: 28px 20px; }
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: default; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .project-item.large { grid-column: 1; height: 260px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-actions { flex-direction: column; align-items: center; }
}
