/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure all images scale properly */
img {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --light-blue: #dbeafe;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    /* overflow-x: hidden was causing position:fixed to be relative to the
       document (9232px) instead of the viewport. 'clip' prevents horizontal
       scrolling WITHOUT creating a scroll container — fixed stays viewport-relative. */
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Smooth anchor scroll so fixed navbar doesn't obscure section tops */
section[id] {
    scroll-margin-top: 130px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 130px;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo-img {
    height: 230px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: none;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    padding-top: 200px;    /* push text lower — visually centered in viewport */
    padding-bottom: 60px;
    box-sizing: border-box;
}

/* Zoomed background image via ::after so only the photo scales */
.hero::after {
    content: '';
    position: absolute;
    top: -6%;
    left: -6%;
    width: 112%;
    height: 112%;
    background: url('./public/heropic.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

/* Blue overlay — sits above the zoomed photo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.4);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    width: 100%;
    box-sizing: border-box;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.zeekay {
    color: var(--white);
}

.kay-special {
    color: var(--accent-blue);
    font-weight: 800;
    position: relative;
}

.kay-special::before {
    content: '<';
    position: absolute;
    left: -10px;
    color: var(--accent-blue);
}

.kay-special::after {
    content: 'Λ';
    position: absolute;
    right: -10px;
    color: var(--accent-blue);
}

.ay {
    color: var(--white);
}

.properties {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0.5rem;
    letter-spacing: 3px;
    color: var(--light-blue);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.95;
    line-height: 1.6;
}

/* ── Hero Typewriter ── */
.hero-typewriter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    animation: twFadeIn 1s ease 0.5s both;
}

@keyframes twFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tw-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tw-word-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.35);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 0.65rem 2rem;
    min-width: 320px;
    min-height: 54px;
}

.tw-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f0d080, #c9a84c, #f0d080);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.tw-cursor {
    font-size: 1.5rem;
    font-weight: 100;
    color: #c9a84c;
    animation: cursorBlink 0.75s step-end infinite;
    line-height: 1;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-display {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logo-img {
    width: 400px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white for dark background */
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.building-silhouettes {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><path d="M0,600 L0,400 L50,400 L50,300 L100,300 L100,200 L150,200 L150,100 L200,100 L200,50 L250,50 L250,100 L300,100 L300,200 L350,200 L350,300 L400,300 L400,400 L450,400 L450,500 L500,500 L500,400 L550,400 L550,300 L600,300 L600,200 L650,200 L650,100 L700,100 L700,50 L750,50 L750,100 L800,100 L800,200 L850,200 L850,300 L900,300 L900,400 L950,400 L950,500 L1000,500 L1000,600 Z" fill="white"/></svg>') no-repeat;
    background-size: cover;
    background-position: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}


/* =============================================
   About Section — Dark Prestige Redesign
   ============================================= */
.about {
    padding: 7rem 0;
    background: #0b1220;
    position: relative;
    overflow: hidden;
}

/* Dot-grid background texture */
.ab-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(96, 165, 250, 0.10) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Ambient glows */
.ab-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
}
.ab-glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.40) 0%, transparent 70%);
    top: -120px;
    right: -100px;
}
.ab-glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

/* ── Header ── */
.ab-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}

.ab-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.ab-title-gold {
    background: linear-gradient(90deg, #c9a84c, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Stats Bar ── */
.ab-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 4.5rem;
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 0;
}

.ab-stat {
    flex: 1;
    min-width: 130px;
    text-align: center;
    padding: 0.5rem 1rem;
}

.ab-stat-top {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.ab-stat-num {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.ab-stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
}

.ab-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.50);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

.ab-stat-divider {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* ── Two-Column Body ── */
.ab-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left column */
.ab-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ab-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.65;
    border-left: 3px solid #c9a84c;
    padding-left: 1.1rem;
    margin: 0;
}

.ab-text {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin: 0;
}

.ab-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    background: #25d366;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.ab-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
}

.ab-cta i {
    font-size: 1.15rem;
}

/* Right column — Founder card */
.ab-founder-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 20px;
    padding: 2.4rem 2.2rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ab-founder-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #f0d080, #c9a84c);
}

.ab-founder-card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.10);
}

.ab-quote-mark {
    font-size: 5rem;
    line-height: 0.6;
    color: #c9a84c;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.7;
}

.ab-founder-words {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 1.8rem;
}

.ab-founder-sig {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ab-sig-bar {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #f0d080);
    border-radius: 2px;
    flex-shrink: 0;
}

.ab-sig-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ab-founder-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.ab-founder-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    letter-spacing: 0.3px;
}

/* Value Pillars */
.ab-values {
    display: flex;
    gap: 1rem;
}

.ab-value {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 1.1rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ab-value:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.30);
    transform: translateY(-4px);
}

.ab-value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #c9a84c;
}

.ab-value-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.70);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* ── Crafting Legacies Section ── */
.crafting-legacies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.cl-image-wrap {
    position: relative;
    overflow: hidden;
}

.cl-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.05));
}

.cl-content-wrap {
    background: #0f172a;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cl-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cl-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.cl-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #f0d080);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.cl-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.cl-body:last-child {
    margin-bottom: 0;
}

/* ── Urban Homes Section ── */
.urban-homes {
    padding: 7rem 0;
    background: linear-gradient(160deg, #0a0f1e 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.urban-homes::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.uh-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.uh-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.uh-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.uh-cursive {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 3.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.15;
}

.uh-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    border-radius: 2px;
    margin: 0 auto 2rem;
}

.uh-tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.uh-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.uh-pillar {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.uh-pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-6px);
}

.uh-pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #f0d080);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.uh-pillar-icon i {
    font-size: 1.4rem;
    color: #0a0f1e;
}

.uh-pillar h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.uh-pillar p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.uh-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 14px 36px;
    background: linear-gradient(135deg, #c9a84c, #f0d080);
    color: #0a0f1e;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.uh-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

/* ── Urban Homes Slideshow ── */
.uh-slideshow {
    position: relative;
    width: 100%;
    max-width: 680px;
    height: 420px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.uh-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.uh-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.uh-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.uh-slide.active img {
    transform: scale(1.05);
}

.uh-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.4rem 1.1rem;
    background: linear-gradient(to top, rgba(5, 10, 25, 0.88) 0%, transparent 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.uh-slide-caption i {
    color: #c9a84c;
    font-size: 0.85rem;
}

/* Arrows */
.uh-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(10, 15, 30, 0.55);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.uh-arrow:hover {
    background: rgba(201, 168, 76, 0.75);
    border-color: #c9a84c;
    transform: translateY(-50%) scale(1.1);
}

.uh-arrow--prev { left: 14px; }
.uh-arrow--next { right: 14px; }

/* Dots */
.uh-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.uh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.uh-dot.active {
    background: #c9a84c;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .uh-slideshow {
        height: 260px;
        border-radius: 14px;
    }
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.feature h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.founder-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    margin-bottom: 1rem;
    max-width: 100%;
    height: auto;
}

.founder-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin: 0;
}

.leadership-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.founder-section, .coo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coo-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    margin-bottom: 1rem;
    max-width: 100%;
    height: auto;
}

.coo-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin: 0;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Projects Section */
.properties {
    padding: 6rem 0;
    background: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 200px;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: var(--primary-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.project-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.project-image .image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.project-image .image-placeholder p {
    font-size: 1rem;
    font-weight: 500;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.inquire-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 2px solid var(--white);
    font-size: 0.9rem;
}

.inquire-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: scale(1.05);
}

.project-content {
    padding: 1.2rem;
}

.project-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.project-location {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-location i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.project-description {
    color: var(--gray);
    margin-bottom: 0.7rem;
    line-height: 1.3;
    font-size: 0.9rem;
}

.project-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.project-details span {
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.project-details i {
    color: var(--primary-blue);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-logo-img {
    height: 200px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white for footer */
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p,
.footer-section li {
    color: var(--light-blue);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-blue);
}

/* Partnership strip */
.footer-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-partners-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.40);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-partners-label i {
    color: #c9a84c;
    font-size: 0.85rem;
}

.footer-partners-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 0.5px;
}



/* =============================================
   RESPONSIVE — 1024px (Tablet landscape)
   ============================================= */
@media (max-width: 1024px) {
    .about-content {
        gap: 2.5rem;
    }

    .invest-grid {
        grid-template-columns: 1fr 1fr;
    }

    .invest-card--featured {
        grid-column: span 2;
    }
}

/* =============================================
   RESPONSIVE — 768px (Tablet portrait / large phone)
   ============================================= */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .nav-container {
        height: 120px;
        padding: 0 16px;
    }

    .nav-logo-img {
        height: 210px;
        max-width: 320px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 1.5rem 0;
        gap: 0;
        box-sizing: border-box;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--light-blue);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Correct scroll offset for smaller navbar */
    section[id] {
        scroll-margin-top: 120px;
    }

    /* --- General --- */
    .container {
        padding: 0 16px;
    }

    /* --- Hero --- */
    .hero {
        padding-top: 80px;
        min-height: 100svh;
    }

    .hero-content {
        padding: 2rem 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* --- Section headers --- */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* --- About --- */
    .about {
        padding: 4.5rem 0;
    }

    .ab-body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ab-stats {
        gap: 0;
        padding: 1.8rem 1rem;
    }

    .ab-stat-divider {
        height: 40px;
    }

    .ab-values {
        gap: 0.75rem;
    }

    /* --- Services --- */
    .services {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* --- Properties --- */
    .properties {
        padding: 4rem 0;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* --- Invest --- */
    .invest-section {
        padding: 4rem 0;
    }

    .invest-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .invest-card--featured {
        grid-column: span 1;
    }

    .invest-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .invest-banner-text {
        text-align: center;
    }

    /* --- Contact --- */
    .contact {
        padding: 4rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-logo-img {
        height: 120px;
        max-width: 160px;
    }


}

/* =============================================
   RESPONSIVE — 480px (Small phones)
   ============================================= */
@media (max-width: 480px) {

    /* --- Navbar --- */
    .nav-container {
        height: 110px;
        padding: 0 12px;
    }

    .nav-logo-img {
        height: 190px;
        max-width: 280px;
    }

    .nav-menu {
        top: 110px;
    }

    section[id] {
        scroll-margin-top: 110px;
    }

    /* --- Hero --- */
    .hero {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.97rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    /* --- Section headers --- */
    .section-header h2 {
        font-size: 1.6rem;
    }

    /* --- About --- */
    .about {
        padding: 3rem 0;
    }

    .ab-stats {
        flex-wrap: wrap;
        padding: 1.5rem 0.75rem;
    }

    .ab-stat {
        min-width: 45%;
        flex: 1 1 45%;
        padding: 0.75rem 0.5rem;
    }

    .ab-stat-divider {
        display: none;
    }

    .ab-values {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ab-value {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.9rem 1rem;
        gap: 0.9rem;
        text-align: left;
    }

    .ab-cta {
        width: 100%;
        justify-content: center;
    }

    /* --- Services --- */
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    /* --- Properties --- */
    .properties {
        padding: 3rem 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-image {
        height: 190px;
    }

    /* --- Invest --- */
    .invest-section {
        padding: 3rem 0;
    }

    .invest-card {
        padding: 1.5rem;
    }

    .invest-area-name {
        font-size: 1.4rem;
    }

    .invest-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .invest-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 0.75rem;
        width: 100%;
    }

    .invest-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .invest-banner {
        padding: 1.25rem;
    }

    .btn-invest-banner {
        width: 100%;
        justify-content: center;
    }

    /* --- Contact --- */
    .contact {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* prevents iOS zoom on focus */
        padding: 0.85rem;
    }

    .contact-item {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 2.5rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-img {
        height: 100px;
        max-width: 140px;
    }


}

/* =============================================
   RESPONSIVE — 375px (iPhone SE / smallest phones)
   ============================================= */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .nav-logo-img {
        height: 95px;
        max-width: 160px;
    }

    .section-header h2 {
        font-size: 1.45rem;
    }

    .invest-area-name {
        font-size: 1.25rem;
    }

    .btn-invest-banner,
    .invest-cta {
        font-size: 0.85rem;
    }
}

/* ============================================
   Investment Opportunities Section
   ============================================ */
.invest-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.invest-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.invest-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.invest-header h2 {
    color: var(--white) !important;
}

.invest-header p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.invest-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Base card */
.invest-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.invest-card:hover::before {
    opacity: 1;
}

.invest-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Featured (Bath Island) card */
.invest-card--featured {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.08);
}

.invest-card--featured::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    opacity: 1;
}

.invest-card--featured:hover {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.18);
}

/* Card top row */
.invest-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.invest-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-blue);
}

.invest-card--featured .invest-icon-wrap {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.invest-zone-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.invest-zone-badge--gold {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

/* Area name */
.invest-area-name {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.invest-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

.invest-desc {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* Highlights list */
.invest-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
}

.invest-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.invest-highlights li i {
    color: var(--accent-blue);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.invest-card--featured .invest-highlights li i {
    color: #fbbf24;
}

/* Stats row */
.invest-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
    margin-top: auto;
}

.invest-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0.5rem;
    justify-content: flex-start;
}

.invest-stat-item:last-child {
    border-right: none;
}

.invest-stat-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invest-stat-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Inquiry CTA buttons */
.invest-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.invest-cta:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.invest-cta--gold {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.4);
}

.invest-cta--gold:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

/* Bottom CTA banner */
.invest-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.invest-banner-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.invest-banner-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.btn-invest-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-invest-banner:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Responsive invest section */
@media (max-width: 900px) {
    .invest-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .invest-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .invest-banner-text {
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
}

/* Ensure all sections respect viewport width */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Remove excessive WhatsApp clearance hack — button floats inline now */
.contact,
.footer {
    padding-bottom: 2rem;
}

.footer {
    padding-bottom: 3rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-size: 28px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Netlify Form Honeypot */
.hidden {
    display: none;
}

/* ── Responsive: Crafting Legacies & Urban Homes ── */
@media (max-width: 900px) {
    .crafting-legacies {
        grid-template-columns: 1fr;
    }

    .cl-image-wrap {
        height: 320px;
    }

    .cl-content-wrap {
        padding: 3.5rem 2rem;
    }

    .cl-heading {
        font-size: 2.2rem;
    }

    .uh-heading {
        font-size: 2.4rem;
    }

    .uh-cursive {
        font-size: 2.8rem;
    }

    .uh-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cl-content-wrap {
        padding: 2.5rem 1.5rem;
    }

    .cl-heading {
        font-size: 1.9rem;
    }

    .uh-heading {
        font-size: 2rem;
    }

    .uh-cursive {
        font-size: 2.4rem;
    }
}

/* =============================================
   WhatsApp Floating Button — Fresh Implementation
   ============================================= */
.wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7);
}

.wa-btn i {
    font-size: 32px;
    color: #fff;
    line-height: 1;
}
