@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #13375a; /* Navy Blue */
    --primary-hover: #1e4f80; /* Lighter Navy Blue */
    --secondary: #d4af37; /* Metallic Gold */
    --accent: #f0f4f8; /* Soft blue */
    --dark: #1a1a1a;
    --light: #ffffff;
    --canvas: #f0f4f8; /* Soft blue canvas background */
    --gray-bg: #f5f5f5;
    --text-main: #111111;
    --text-muted: #666666;
    --border-radius-xl: 40px;
    --border-radius-md: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Layout Utils --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2d6a4f);
    color: white;
    box-shadow: 0 10px 20px rgba(26, 77, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 77, 46, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-5px);
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 70px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-cta {
    background: #f1c40f;
    color: #13375a;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.btn-cta:hover {
    background: #e1b400;
    transform: translateY(-2px);
}

.phone-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-wrap a {
    text-decoration: none;
    color: #13375a;
    font-weight: 800;
    font-size: 1.1rem;
}

.phone-circle {
    width: 45px;
    height: 45px;
    background: #f1c40f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #13375a;
    font-size: 1.1rem;
}

/* --- Premium Hero Section (SpineEdge Style) --- */
.hero-canvas {
    background-color: var(--canvas);
    padding: 130px 30px 30px; /* Added top padding to account for fixed header */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════ */
/*  HERO V2 — Immersive Temple Banner (dark, gold accents)      */
/* ═══════════════════════════════════════════════════════════ */
.hero-v2 {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(212,175,55,0.10), rgba(212,175,55,0) 45%),
        linear-gradient(135deg, #0a1f33 0%, #13375a 55%, #0d2a4a 100%);
    padding: 170px 30px 110px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hv2-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.14), rgba(212,175,55,0) 60%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}

.hv2-mandala {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 420px;
    height: 420px;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
    animation: rotate 70s linear infinite;
}

.hv2-skyline {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 170px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.hv2-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

/* Left text column */
.hv2-flourish {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: var(--secondary);
}
.hv2-flourish .hv2-line {
    height: 2px;
    width: 44px;
    background: linear-gradient(90deg, transparent, var(--secondary));
    border-radius: 2px;
}
.hv2-flourish .hv2-line:last-child {
    background: linear-gradient(90deg, var(--secondary), transparent);
}
.hv2-flourish i {
    font-size: 1.7rem;
    filter: drop-shadow(0 4px 12px rgba(212,175,55,0.4));
}

.hv2-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 1.14;
    color: #ffffff;
    margin: 0 0 22px;
    letter-spacing: -0.5px;
}
.hv2-gold {
    background: linear-gradient(120deg, #f0d275, #d4af37 55%, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hv2-sub {
    color: rgba(255,255,255,0.82);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 540px;
    margin: 0 0 42px;
}

.hv2-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hv2-btn-primary,
.hv2-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hv2-btn-primary {
    background: linear-gradient(135deg, #e6c14d, #d4af37);
    color: #0a1f33;
    border: none;
    box-shadow: 0 16px 34px rgba(212,175,55,0.35);
}
.hv2-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(212,175,55,0.45);
}
.hv2-btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border: 1.5px solid rgba(212,175,55,0.55);
    backdrop-filter: blur(6px);
}
.hv2-btn-ghost:hover {
    background: rgba(212,175,55,0.14);
    border-color: var(--secondary);
    transform: translateY(-4px);
}

/* Right logo column — temple arch frame */
.hv2-logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.hv2-finial {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(212,175,55,0.18), 0 0 24px rgba(212,175,55,0.6);
    z-index: 3;
}
.hv2-finial::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: var(--secondary);
}
.hv2-logo-frame {
    position: relative;
    background: #ffffff;
    border-radius: 140px 140px 28px 28px; /* pointed temple-arch top */
    padding: 46px 38px 34px;
    width: 100%;
    max-width: 440px;
    border: 2px solid rgba(212,175,55,0.6);
    box-shadow:
        0 0 0 10px rgba(212,175,55,0.10),
        0 40px 80px rgba(0,0,0,0.45);
}
.hv2-logo-frame::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212,175,55,0.45);
    border-radius: 120px 120px 20px 20px;
    pointer-events: none;
}
.hv2-logo-frame img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Bottom divider */
.hv2-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-v2 { padding: 130px 22px 80px; min-height: auto; }
    .hv2-inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
    .hv2-flourish { justify-content: center; }
    .hv2-title { font-size: 2.5rem; }
    .hv2-sub { font-size: 1.15rem; margin-left: auto; margin-right: auto; }
    .hv2-actions { justify-content: center; }
    .hv2-logo-frame { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .hv2-title { font-size: 2rem; }
    .hv2-sub { font-size: 1.02rem; }
    .hv2-btn-primary, .hv2-btn-ghost { padding: 14px 26px; font-size: 0.98rem; }
    .hv2-logo-frame { padding: 34px 24px 24px; border-radius: 100px 100px 20px 20px; }
}

.hero-card {
    background:
        radial-gradient(circle at 82% 18%, rgba(212,175,55,0.10), rgba(212,175,55,0) 42%),
        linear-gradient(180deg, #ffffff 0%, #fbf9f3 100%);
    width: 100%;
    max-width: 1400px;
    border-radius: var(--border-radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(19,55,90,0.10);
    border: 1px solid rgba(212,175,55,0.18);
    min-height: 800px;
    display: flex;
    flex-direction: column;
}

.hero-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    z-index: 10;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo-icon {
    width: 30px;
    height: 30px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-signup {
    background-color: var(--primary);
    color: white;
    padding: 12px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-signup:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.hero-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 0 60px 60px;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    z-index: 5;
}

.hero-eyebrow {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    align-self: flex-start;
    width: fit-content;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
}

.house-inline-icon {
    width: 80px;
    vertical-align: middle;
    margin-top: -10px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.search-bar {
    background: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    max-width: 600px;
    margin-bottom: 60px;
}

.search-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid #eee;
}

.search-group:last-of-type {
    border-right: none;
}

.search-group i {
    color: #999;
    font-size: 0.9rem;
}

.search-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 10px 0;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary), #1e4f80);
    color: white;
    padding: 16px 34px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 14px 28px rgba(19,55,90,0.28);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(19,55,90,0.36);
}

/* Premium hero accents */
.hero-accent-line {
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 4px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--secondary), rgba(212,175,55,0));
}

.hero-accent {
    background: linear-gradient(120deg, #e6c14d, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-logo-glow {
    position: absolute;
    inset: 6% 0 12% 0;
    background: radial-gradient(ellipse at 55% 45%, rgba(212,175,55,0.22), rgba(212,175,55,0) 62%);
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.hero-logo-pedestal {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 26px;
    background: radial-gradient(ellipse, rgba(19,55,90,0.20), rgba(19,55,90,0) 70%);
    filter: blur(7px);
    z-index: 1;
    pointer-events: none;
}

.hero-milestones {
    display: flex;
    gap: 50px;
    align-items: center;
}

.milestone-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    width: 120px;
}

.milestone-item {
    display: flex;
    flex-direction: column;
}

.milestone-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
}

.milestone-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.main-building-img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 40px 40px 0 0;
    z-index: 2;
}

.building-bg-overlay {
    position: absolute;
    top: 10%;
    right: -20px;
    width: 80%;
    height: 80%;
    background: #f8f9fa;
    z-index: 1;
}

.hero-seal {
    position: absolute;
    bottom: 50px;
    left: -80px;
    width: 160px;
    z-index: 10;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wavy-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.btn-main-cta:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 900px;
    max-width: 95%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    background: rgba(0,0,0,0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    display: flex;
}

.modal-image {
    flex: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 500px;
}

.modal-form-side {
    flex: 1.2;
    padding: 3rem;
    background: #f8fafc;
}

.modal-form-side h3 {
    font-size: 2rem;
    color: #1a4d2e;
    margin-bottom: 0.5rem;
}

.modal-form-side p {
    margin-bottom: 2rem;
    opacity: 0.7;
}

.actual-form input, .actual-form textarea {
    width: 100%;
    padding: 12px 18px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.actual-form input:focus {
    border-color: #f1c40f;
}

@media (max-width: 768px) {
    .modal-body { flex-direction: column; }
    .modal-image { min-height: 200px; }
    .modal-form-side { padding: 2rem; }
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slide-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slide-arrow:hover {
    background: white;
    color: black;
}

/* Floating Elements */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-item {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    text-decoration: none;
    transition: var(--transition);
}

.social-item:hover {
    transform: translateX(-5px) scale(1.1);
}

.social-item.wa { background: #25D366; }
.social-item.ph { background: #3498db; }
.social-item.chat { background: #1a4d2e; }

@media (max-width: 992px) {
    .main-heading { font-size: 3rem; }
    .hero-right-panel {
        width: 100%;
        background: rgba(0,0,0,0.7);
        padding: 150px 5% 50px;
        justify-content: flex-start;
    }
    .slider-nav { left: 20px; bottom: 20px; }
    .price-range { font-size: 2rem; }
}

/* --- Highlights --- */
.highlights {
    display: flex;
    justify-content: space-around;
    padding: 3rem;
    background: var(--primary);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(19,55,90,0.2);
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.highlight-item {
    text-align: center;
}

.highlight-item h4 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 77, 46, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(30px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* --- Responsive --- */
/* --- Testimonials --- */
.testimonial-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    flex: 1;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.video-thumb {
    position: relative;
    height: 180px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.testimonial-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary);
    color: white;
}

.thumb-caption {
    padding: 1.2rem;
    text-align: center;
}

.thumb-caption h4 {
    margin-bottom: 0.2rem;
    color: var(--dark);
    font-size: 1.1rem;
}

.thumb-caption p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #64748b;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--light);
    border-color: var(--secondary);
    color: var(--secondary);
}

.view-all-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-link:hover {
    color: var(--primary);
    gap: 15px;
}

@media (max-width: 992px) {
    .slider-arrow {
        display: none;
    }
    header {
        position: relative;
    }
    nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    .header-right {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    .hero {
        flex-direction: column;
        height: auto;
        padding: 50px 0 100px;
    }
    .hero-form-container {
        position: static;
        width: 100%;
        margin-top: 3rem;
        transform: none;
    }
    .hero h1 {
        font-size: 3rem;
    }
    @keyframes fadeInRight {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* --- VALENCIA LAYOUT STYLES --- */
/* Design System — Grow Value Properties Brand */


.highlight {
    color: var(--secondary);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand-text {
    font-family: var(--font-serif);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: #333;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #D4AC0D;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(238, 188, 68, 0.35);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.accent {
    color: var(--primary);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: transparent;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

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

.brand-text {
    font-size: 1.7rem;
    color: white;
    font-family: var(--font-serif);
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.brand-text .accent {
    color: var(--secondary);
    transition: var(--transition);
}

.scrolled .brand-text {
    color: var(--primary);
}

.scrolled .brand-text .accent {
    color: var(--secondary); /* Keep accent gold even when scrolled */
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: white;
    margin-left: 28px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.scrolled .desktop-nav a {
    color: var(--primary);
}

.desktop-nav a.btn-primary {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 10px 22px;
    border-radius: 4px;
    margin-left: 35px;
    text-transform: uppercase;
    font-weight: 800;
    border: none;
}

.scrolled .desktop-nav a.btn-primary {
    background: var(--secondary);
    color: var(--primary) !important;
}

.desktop-nav a:not(.btn-primary):hover {
    color: var(--secondary);
}

.desktop-nav a:not(.btn-primary).nav-active {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    margin-bottom: 6px;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

.scrolled .mobile-menu-btn span {
    background-color: var(--primary);
}

/* Mobile Nav Overlay */
@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }

    .desktop-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .desktop-nav.mobile-active {
        right: 0;
    }

    .desktop-nav a {
        color: var(--primary) !important;
        margin: 20px 0;
        font-size: 1.2rem;
    }

    .desktop-nav a.btn-primary {
        margin-left: 0;
        width: 80%;
        text-align: center;
    }

    /* Burger Animation */
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: #0B2D4B; /* Fallback color */
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11,45,75,0.7), rgba(11,45,75,0.3));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 .highlight {
    font-size: 1.6rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-form-container {
    flex: 0 0 380px;
}

.hero-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    color: #333;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.hero-form p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background-color: var(--secondary);
    color: #333;
    font-weight: 700;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #D4AC0D;
}

.form-footer {
    text-align: center;
    font-size: 0.8rem !important;
    margin-top: 15px;
    margin-bottom: 0 !important;
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
}

.dark-section {
    background-color: var(--primary);
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dark-section h2 {
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.dark-section h2 .accent,
.dark-section h2 span.accent {
    color: #ffffff;
    text-shadow: none;
    background: none;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.dark-section .section-tag {
    color: var(--secondary);
}

h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Vertical Title Animation */
.vertical-title {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(11, 45, 75, 0.04);
    pointer-events: none;
    white-space: nowrap;
    font-family: var(--font-serif);
    z-index: 0;
}

.vertical-title.right {
    left: auto;
    right: 20px;
    transform: translateY(-50%) rotate(90deg);
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image-box img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(11,45,75,0.4);
}

.badge-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-serif);
    color: var(--secondary);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    opacity: 0.9;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-stat {
    flex: 1;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-serif);
    color: var(--secondary);
    line-height: 1;
}

.about-stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.about-stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.85;
}

/* About Right Content */
.creative-heading {
    font-size: 2.4rem;
    line-height: 1.2;
    color: #444 !important;
    margin-bottom: 30px;
    font-weight: 800;
    text-align: left;
}

.creative-heading span {
    color: var(--primary) !important;
    display: inline;
}

.about-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Counters Strip */
.counters-strip {
    background: var(--primary);
    padding: 28px 0;
}

.counters-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.counter-item {
    flex: 1;
    text-align: center;
    padding: 20px 40px;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-serif);
    color: var(--secondary);
    line-height: 1;
}

.counter-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.counter-label {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
    line-height: 1.5;
}

.counter-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.25);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.value-card:hover {
    border-left-color: var(--secondary);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: var(--font-sans);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-stats {
        gap: 15px;
    }
    /* Stop a tall/portrait photo from filling the whole mobile screen */
    .about-image-box img {
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
}

/* Project Details Section */
.project-details-section {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
}

.pd-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pd-heading {
    font-size: 3rem;
    line-height: 1.15;
    color: #333;
    margin-bottom: 20px;
}

.pd-italic {
    font-style: italic;
    color: var(--primary);
}

.pd-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

/* Specs Card */
.specs-card {
    background: #f0f2f5;
    border-radius: 16px;
    padding: 40px 30px 30px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.specs-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 20px rgba(11,45,75,0.3);
}

.specs-badge i {
    font-size: 1.1rem;
}

.specs-list {
    margin-top: 20px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 14px;
    border: 1.5px solid #c8cdd6;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-row:hover {
    background: rgba(11, 45, 75, 0.03);
    border-color: var(--primary);
}

.spec-row--highlight {
    background: linear-gradient(90deg, rgba(11, 45, 75, 0.1), rgba(11, 45, 75, 0.03));
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.spec-value--price {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 0.9rem;
}

.spec-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.spec-content {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.spec-label {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.spec-value {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Right Column Image */
.pd-right {
    position: relative;
    width: 400px;
    max-width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.pd-image-wrapper {
    position: relative;
    width: 480px;
    height: 580px;
    max-width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    margin: 0 auto;
}

.pd-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-site-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 992px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pd-heading {
        font-size: 2.2rem;
    }
    .pd-right {
        min-height: 350px;
    }
}


/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.amenity-card:hover {
    background: white;
    color: #333;
    transform: translateY(-10px);
}

.amenity-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 162, 67, 0.15);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--secondary);
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.amenity-card h3 {
    margin-bottom: 15px;
}

.amenity-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Highlight Section */
.highlight-section {
    background-image: linear-gradient(rgba(11, 45, 75, 0.7), rgba(11, 45, 75, 0.7)), url('Pr 3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 150px 0;
    text-align: center;
    color: white;
}

.highlight-content h2 {
    font-size: 4rem;
}

.highlight-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* Location Section */
.location-list {
    margin-top: 40px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.distance {
    font-weight: 700;
    color: var(--primary);
    background: rgba(11, 45, 75, 0.07);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Testimonials Bento Grid */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.testimonials-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
    margin-top: 50px;
}

.bento-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid #eef0f3;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--secondary);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 50px;
}

.bento-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.05;
}

.bento-large .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.bento-medium {
    grid-column: span 1;
}

.bento-small {
    grid-column: span 1;
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    position: relative;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-serif);
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.verified-badge {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 1100px) {
    .testimonials-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .testimonials-bento {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-medium, .bento-small {
        grid-column: span 1;
    }
    .bento-large {
        padding: 35px;
    }
    .bento-large .testimonial-text {
        font-size: 1.1rem;
    }
}


/* Vicinity Section */
.vicinity-section {
    padding: 100px 0;
    background: white;
}

.vicinity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vicinity-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eef0f3;
    transition: var(--transition);
}

.vicinity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--secondary);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--primary);
}

.category-header i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.category-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.vicinity-list {
    list-style: none;
}

.vicinity-list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
}

.vicinity-list li:last-child {
    border-bottom: none;
}

.v-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v-name {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.mt-30 { margin-top: 30px; }

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}

.gallery-item { cursor: pointer; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 45, 75, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .vicinity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vicinity-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section styles live inline with the section in index.html
   (the old dark-themed FAQ CSS was removed because the new FAQ uses
    a light cool-grey theme that matches the Neighbourhood section). */

/* Section-tag chips on light backgrounds — plain text, no pill */
.vicinity-tabs-section .section-tag,
.faq-section .section-tag {
    display: inline-block !important;
    width: auto !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 14px;
}

/* FAQ tag chip is plain gold text on navy — no pill background */

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    max-width: 100%;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.1);
    position: relative;
}

.map-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    transition: background 0.3s ease;
}

.map-overlay-link:hover {
    background: rgba(11, 45, 75, 0.15);
}

.map-cta-btn {
    background: var(--secondary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.map-overlay-link:hover .map-cta-btn {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-details {
    margin-top: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.detail-item span {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary);
}

.contact-form-box {
    background: white;
    padding: 50px;
    border-radius: 8px;
}

/* Connect With Us */
.connect-with-box {
    background: white;
    padding: 45px 40px;
    border-radius: 16px;
}

.connect-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.connect-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.connect-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.connect-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1.5px solid #e8edf2;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.connect-card:hover {
    border-color: var(--primary);
    background: white;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(11,45,75,0.1);
}

.connect-card--whatsapp:hover { border-color: #25D366; }
.connect-card--insta:hover { border-color: #E1306C; }

.connect-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.connect-card--whatsapp .connect-icon { background: #25D366; color: #fff; }
.connect-card--insta .connect-icon { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }

.connect-info {
    display: flex;
    flex-direction: column;
}

.connect-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.connect-value {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2px;
}

/* Contact Detail Cards */
.contact-detail-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cdc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f4f7fb;
    border: 1.5px solid #e4eaf2;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.cdc-item:hover {
    border-color: var(--primary);
    background: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(11,45,75,0.1);
}

.cdc-whatsapp:hover { border-color: #25D366 !important; }

.cdc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cdc-whatsapp .cdc-icon { background: #25D366; color: #fff; }

.cdc-info {
    display: flex;
    flex-direction: column;
}

.cdc-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.cdc-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 3px;
    line-height: 1.5;
}

.contact-form-box input, 
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    background: #fdfdfd;
    font-size: 1rem;
    color: #333;
}

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

.w-full { width: 100%; }

/* Footer */
.main-footer {
    padding: 14px 0;
    background: white;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-top: none;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
}

/* Floating CTAs */
.floating-ctas {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--primary); }

.float-btn:hover {
    transform: scale(1.1);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Intersection Observer Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .vertical-title {
        display: none;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .image-badge {
        right: 0;
        bottom: 0;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .highlight-content h2 {
        font-size: 2.5rem;
    }

    /* Counters strip — mobile */
    .counters-grid {
        flex-wrap: wrap;
        gap: 0;
    }

    .counter-item {
        flex: 0 0 100%;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .counter-item:last-child {
        border-bottom: none;
    }

    .counter-divider {
        display: none;
    }

    .counter-number {
        font-size: 2.4rem;
    }

    .counter-plus {
        font-size: 1.8rem;
    }

    .counter-label {
        font-size: 0.8rem;
        margin-top: 4px;
    }

    /* Contact section — mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section .container {
        padding: 0 16px;
    }

    .contact-form-box {
        padding: 24px 20px;
    }

    .contact-map {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .cdc-item {
        padding: 14px 14px;
        gap: 12px;
    }

    .cdc-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .cdc-label {
        font-size: 0.7rem;
    }

    .cdc-value {
        font-size: 0.9rem;
    }

    .map-wrapper {
        height: 280px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .map-wrapper iframe {
        border-radius: 16px;
        width: 100% !important;
        max-width: 100%;
    }
}
/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 45, 75, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    padding: 50px;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #fdfdfd;
    color: #333;
    transition: var(--transition);
}

.modal-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center/15px;
}

.modal-form textarea {
    height: 100px;
    resize: none;
}

.hero-ctas-custom {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-pill {
    background: var(--secondary); /* Brand Gold */
    color: var(--primary); /* Brand Navy */
    padding: 16px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(238, 188, 68, 0.3);
}

.btn-pill:hover {
    background: #d4ac0d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 188, 68, 0.4);
}

.cta-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.cta-icon-circle i {
    transform: rotate(45deg); /* Diagonal arrow effect */
}

.cta-wrapper:hover .cta-icon-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Custom Form Styles (Modal & Footer) */
.modal-title-custom {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.modal-subtitle-custom {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-group-custom {
    margin-bottom: 22px;
}

.form-group-custom label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-group-custom label i {
    width: 24px;
    color: #555;
    font-size: 0.9rem;
}

.form-group-custom input, 
.form-group-custom select,
.form-group-custom textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: #fdfdfd;
    transition: var(--transition);
    font-family: inherit;
}

.form-group-custom input:focus, 
.form-group-custom select:focus {
    border-color: #8B0000;
    outline: none;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
}

.btn-red-submit {
    background-color: #8B0000;
    color: white;
    padding: 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    text-transform: none;
    margin-top: 10px;
}

.btn-red-submit:hover {
    background-color: #A61A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}


/* Highlight Section CTAs */
.highlight-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Testimonials Marquee */
.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    background: #fdfdfd;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-scroll 50s linear infinite;
}

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

.marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-simple-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-quote-icon {
    font-size: 1.8rem;
    color: #f0f0f0;
}

.testimonial-simple-card .testimonial-stars {
    color: #EEBC44;
    font-size: 0.9rem;
}

.testimonial-simple-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f8f8f8;
}

.author-avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.avatar-blue { background: #5D5FEF; }
.avatar-pink { background: #EF5DA8; }
.avatar-cyan { background: #5DCBEF; }
.avatar-purple { background: #A85DEF; }

.author-info-small strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.author-info-small span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Responsiveness & Fixes */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-form-container {
        display: none; /* Hide hero form on small tablets/mobiles */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero h1 .highlight {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 140px 0 80px;
    }
    .hero h1 {
        font-size: 1.85rem !important;
        line-height: 1.1;
        margin-top: 20px;
    }
    .hero h1 .highlight {
        font-size: 1.15rem !important;
    }
    .hero h1 br {
        display: block !important;
    }
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas-custom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-pill {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .highlight-ctas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .highlight-ctas .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .pd-grid {
        grid-template-columns: 1fr;
    }
    .pd-right {
        order: -1; /* Image first on mobile */
    }
    .testimonial-simple-card {
        width: 320px;
    }
}

@media (max-width: 480px) {
    .main-header .brand-text {
        font-size: 1.2rem;
    }
    .hero h1 {
        font-size: 1.65rem !important;
    }
    .hero h1 .highlight {
        font-size: 1.05rem !important;
    }
}

/* ═══════════════════════════════════════════ */
/*  STATS BAND                                 */
/* ═══════════════════════════════════════════ */
.stats-band {
    background: var(--primary);
    padding: 3rem 0;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(212,175,55,0.3);
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    line-height: 1.4;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
}
@media (max-width: 600px) {
    .stats-grid { gap: 2rem; }
    .stat-number { font-size: 2.2rem; }
    .stat-divider { display: none; }
}

/* ═══════════════════════════════════════════ */
/*  SPECS CARD – PREMIUM REDESIGN              */
/* ═══════════════════════════════════════════ */
.project-details-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f6 100%);
}
.project-details-section .creative-heading {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 30px;
}
.project-details-section .creative-heading span {
    color: var(--secondary);
}
.specs-card {
    background: linear-gradient(145deg, #ffffff, #f4f6fb);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(19,55,90,0.08), 0 1px 3px rgba(19,55,90,0.06);
    border: 1px solid rgba(19,55,90,0.06);
    position: relative;
    overflow: hidden;
}
.specs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    border-radius: 24px 24px 0 0;
}
.specs-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    margin-top: 8px;
    box-shadow: 0 8px 25px rgba(19,55,90,0.25);
    position: relative;
    z-index: 2;
}
.specs-badge i {
    color: var(--secondary);
    font-size: 1.1rem;
}
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.spec-row {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(19,55,90,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.spec-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--secondary);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.spec-row:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(19,55,90,0.1);
    border-color: rgba(212,175,55,0.3);
}
.spec-row:hover::before {
    opacity: 1;
}
.spec-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(19,55,90,0.08), rgba(212,175,55,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.spec-row:hover .spec-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.spec-icon i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}
.spec-row:hover .spec-icon i {
    color: white;
}
.spec-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.spec-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.pd-image-wrapper {
    position: relative;
}
.pd-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(19,55,90,0.08));
    border-radius: 30px;
    filter: blur(20px);
    z-index: 0;
}
.pd-image-wrapper video,
.pd-image-wrapper img {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .pd-grid { grid-template-columns: 1fr; gap: 2rem; }
    .specs-card { padding: 1.5rem; }
    .spec-row { padding: 1rem; }
}

/* ═══════════════════════════════════════════ */
/*  VICINITY – HEXAGONAL DESIGN                */
/* ═══════════════════════════════════════════ */
.vicinity-hex-section {
    background: linear-gradient(160deg, #0a1e36 0%, #13375a 40%, #0d2a4a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.vicinity-hex-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.vicinity-hex-section::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(19,55,90,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

/* Hex Ring Wrapper – the main circular layout */
.hex-ring-wrapper {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 3rem auto 0;
}

/* Center Logo */
.hex-center-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(212,175,55,0.25), 0 0 120px rgba(19,55,90,0.18), 0 0 0 6px rgba(212,175,55,0.15);
    z-index: 5;
    border: 4px solid rgba(212,175,55,0.4);
}
.hex-center-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 280px; height: 280px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255,255,255,0.55);
    border-radius: 50%;
    z-index: 1;
    animation: orbitSpin 60s linear infinite;
}
.orbit-ring-2 {
    width: 420px; height: 420px;
    border-color: rgba(255,255,255,0.08);
    animation-duration: 90s;
    animation-direction: reverse;
}
@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Individual Hex Items */
.hex-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    transition: transform 0.4s ease;
}
.hex-item:hover {
    transform: scale(1.1);
}

/* Hexagon Icon Shape */
.hex-icon-wrap {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    backdrop-filter: blur(10px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}
.hex-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #1a4a75, #0d2a4a);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}
.hex-icon-wrap i {
    font-size: 1.6rem;
    color: var(--secondary);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
}

/* Make accent text visible on the dark vicinity / amenities background */
.vicinity-hex-section h2 .accent,
.vicinity-hex-section h2 span.accent,
.amenities-hex-section h2 .accent,
.amenities-hex-section h2 span.accent {
    color: var(--secondary) !important;
    text-shadow: 0 2px 12px rgba(212,175,55,0.25);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: var(--secondary);
}
.hex-item:hover .hex-icon-wrap {
    background: linear-gradient(135deg, rgba(212,175,55,0.4), rgba(212,175,55,0.15));
}
.hex-item:hover .hex-icon-wrap::before {
    background: linear-gradient(135deg, #1e5580, #13375a);
}

/* Hex Label */
.hex-label {
    text-align: center;
    max-width: 140px;
}
.hex-label strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
}
.hex-label span {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.75rem;
    margin-top: 3px;
    font-weight: 500;
}

/* Hex Positions – 8 items around the circle */
.hex-pos-1 { top: 2%;   left: 50%;  transform: translateX(-50%); }
.hex-pos-2 { top: 12%;  right: 5%;  }
.hex-pos-3 { top: 42%;  right: -2%; }
.hex-pos-4 { bottom: 12%; right: 5%; }
.hex-pos-5 { bottom: 2%;  left: 50%; transform: translateX(-50%); }
.hex-pos-6 { bottom: 12%; left: 5%;  }
.hex-pos-7 { top: 42%;  left: -2%;  }
.hex-pos-8 { top: 12%;  left: 5%;   }

.hex-pos-1:hover, .hex-pos-5:hover { transform: translateX(-50%) scale(1.1); }

/* Connecting dots on orbit */
.hex-ring-wrapper::before,
.hex-ring-wrapper::after {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    background: #ffffff;
    border-radius: 50%;
    top: 50%; left: 50%;
    box-shadow:
        -140px 0 0 rgba(255,255,255,0.9),
        140px 0 0 rgba(255,255,255,0.9),
        0 -140px 0 rgba(255,255,255,0.9),
        0 140px 0 rgba(255,255,255,0.9),
        -100px -100px 0 rgba(255,255,255,0.7),
        100px -100px 0 rgba(255,255,255,0.7),
        -100px 100px 0 rgba(255,255,255,0.7),
        100px 100px 0 rgba(255,255,255,0.7);
    z-index: 2;
    transform: translate(-50%, -50%);
}

/* Mobile Fallback Grid */
.hex-mobile-grid {
    display: none;
}
.hex-mobile-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.hex-mobile-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-5px);
}
.hex-mobile-card .hex-icon-wrap {
    width: 65px; height: 65px;
}
.hex-mobile-card strong {
    color: white;
    font-size: 0.9rem;
}
.hex-mobile-card > span {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(212,175,55,0.12);
    padding: 3px 12px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .hex-ring-wrapper { display: none; }
    .hex-mobile-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
}
@media (max-width: 480px) {
    .hex-mobile-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════ */
/*  HERO – TABLET & MOBILE                                          */
/*  Targets the current Hero markup:                                */
/*    .hero-canvas > .hero-card > .hero-main                        */
/*      ├── .hero-content (left text + buttons)                     */
/*      └── .hero-image-container (Temple Town logo on right)       */
/* ═══════════════════════════════════════════════════════════════ */

/* Tablet ─────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-canvas {
        padding: 110px 16px 30px;
        min-height: auto;
    }
    .hero-card {
        min-height: auto;
        border-radius: 28px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    }
    .hero-main {
        grid-template-columns: 1fr;       /* Stack: text on top, image below */
        padding: 36px 36px 36px;
        gap: 30px;
    }
    .hero-content {
        padding-right: 0;
        text-align: left;
    }
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 28px;
    }
    .hero-eyebrow {
        font-size: 0.78rem;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }
    .hero-image-container {
        align-items: center;
        justify-content: center;
        padding-top: 10px;
    }
    .main-building-img {
        width: 100%;
        max-width: 460px;
        height: auto;
        border-radius: 20px;
    }
    .building-bg-overlay { display: none; }

    /* Hide the desktop nav menu — hamburger takes over */
    .nav-menu { display: none; }
    .nav-menu.open { display: flex !important; }
}

/* Phone ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .hero-canvas {
        padding: 96px 12px 24px;
    }
    .hero-card {
        border-radius: 22px;
    }
    .hero-main {
        padding: 26px 20px 28px;
        gap: 22px;
    }

    /* Headline */
    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.18;
        margin-bottom: 16px;
    }
    .hero-title br { display: none; }   /* Let it wrap naturally on phones */

    /* Eyebrow chip */
    .hero-eyebrow {
        font-size: 0.7rem;
        padding: 5px 12px;
        letter-spacing: 1.2px;
        margin-bottom: 16px;
    }

    /* Description text */
    .hero-description {
        font-size: 0.95rem !important;
        margin-bottom: 24px !important;
    }
    .hero-description strong {
        font-size: 0.95rem !important;
    }
    .hero-description br { display: block; }

    /* CTA buttons — stack vertically full-width */
    .hero-content > div[style*="display: flex"][style*="gap: 15px"] {
        flex-direction: column;
        gap: 12px !important;
        margin-bottom: 32px !important;
        width: 100%;
    }
    .hero-content .btn-book {
        width: 100% !important;
        padding: 14px 22px !important;
        font-size: 0.95rem !important;
        justify-content: center !important;
        text-align: center;
    }

    /* Temple Town logo image */
    .main-building-img {
        max-width: 320px;
    }

    /* Header — tighter padding so logo + hamburger fit */
    #header .container { padding: 0 12px; }
    .header-logo { height: 38px !important; width: auto; }
    .btn-cta {
        padding: 9px 16px !important;
        font-size: 0.78rem !important;
    }
    .btn-cta i { display: none !important; }
}

/* Small phones (iPhone SE etc.) ──────────────────────────────── */
@media (max-width: 380px) {
    .hero-title { font-size: 1.55rem !important; }
    .hero-description { font-size: 0.88rem !important; }
    .main-building-img { max-width: 260px; }
    .btn-cta { padding: 8px 12px !important; font-size: 0.72rem !important; }
}


/* ═══════════════════════════════════════════════════════════════ */
/*  ALL SECTION HEADINGS – MOBILE RESPONSIVE                       */
/*  Scales section h2 + creative-heading + subtitles across every  */
/*  section (Gallery, About, Vicinity, FAQ, Testimonials, etc.)    */
/* ═══════════════════════════════════════════════════════════════ */

/* Tablet ─────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    h2 { font-size: 2.1rem !important; line-height: 1.2; }
    .section-header h2,
    .creative-heading { font-size: 2.1rem !important; line-height: 1.2; }
    .section-header p { font-size: 0.98rem; }
    .about-section,
    .project-details-section,
    .amenities-section,
    .vicinity-hex-section,
    .vicinity-tabs-section,
    .gallery-section,
    .faq-section,
    .reviews-section,
    .testimonials-section,
    .contact-section,
    .dream-cta { padding: 4rem 0 !important; }
}

/* Phone ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    h2 { font-size: 1.65rem !important; line-height: 1.22; margin-bottom: 16px !important; }
    .section-header h2,
    .creative-heading { font-size: 1.65rem !important; line-height: 1.22; }
    .section-header h2 .accent,
    .creative-heading span { display: inline; }   /* Stay inline so heading wraps naturally */

    .section-header p,
    .section-header > p {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
        padding: 0 8px;
    }

    /* Section-tag pill chip */
    .section-tag {
        font-size: 0.7rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 12px;
    }

    /* Tighten vertical rhythm */
    .about-section,
    .project-details-section,
    .amenities-section,
    .vicinity-hex-section,
    .vicinity-tabs-section,
    .gallery-section,
    .faq-section,
    .reviews-section,
    .testimonials-section,
    .contact-section { padding: 3rem 0 !important; }
    .dream-cta { padding: 2.5rem 1rem 3rem !important; }

    /* Section header bottom margin */
    .section-header { margin-bottom: 30px !important; }

    /* Stats band heading sizes */
    .stat-number { font-size: 2rem !important; }
    .stat-label { font-size: 0.78rem !important; }

    /* Dream CTA serif heading on phones */
    .dream-heading { font-size: 1.7rem !important; }
    .dream-sub { font-size: 0.92rem !important; }
    .dream-eyebrow { font-size: 0.7rem !important; letter-spacing: 1.5px !important; }

    /* About-section heading scoping */
    .about-section .creative-heading { font-size: 1.7rem !important; }
    .about-desc { font-size: 0.92rem !important; line-height: 1.65 !important; }

    /* Project Details */
    .pd-left .creative-heading { font-size: 1.7rem !important; }
    .specs-card { padding: 1.5rem !important; }
    .spec-value { font-size: 0.92rem !important; }
}

/* Small phones (iPhone SE etc.) ──────────────────────────────── */
@media (max-width: 380px) {
    h2 { font-size: 1.4rem !important; }
    .section-header h2,
    .creative-heading { font-size: 1.4rem !important; }
    .section-header p { font-size: 0.86rem !important; }
    .section-tag { font-size: 0.65rem !important; letter-spacing: 1.2px !important; }
    .dream-heading { font-size: 1.45rem !important; }
}


/* ═══════════════════════════════════════════════════════════════ */
/*  HEADER – MOBILE SINGLE-ROW LAYOUT                              */
/*  Logo (left)  •  Hamburger toggle (right)                       */
/*  Overrides the legacy mobile rules that were stacking the       */
/*  nav vertically and stretching the gold CTA button full-width.  */
/* ═══════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
    #header nav {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding: 10px 0 !important;
    }
    .header-right {
        flex-direction: row !important;
        width: auto !important;
        gap: 10px !important;
        align-items: center !important;
    }
    /* Hide the gold "Get In Touch" CTA on mobile — hamburger menu serves as the primary action */
    .header-right .btn-cta { display: none !important; }
    .nav-toggle { display: inline-flex !important; align-items: center; justify-content: center; }
    .header-logo { height: 42px !important; width: auto !important; }
}

@media (max-width: 640px) {
    #header nav { padding: 8px 0 !important; gap: 8px !important; }
    .header-logo { height: 38px !important; }
    .nav-toggle { width: 40px !important; height: 40px !important; font-size: 1rem !important; }
}

