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

:root {
    --primary: #1a365d;
    --primary-light: #2563eb;
    --accent: #c7a44a;
    --accent-light: #e2c36b;
    --dark: #0f172a;
    --darker: #020617;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --green: #22c55e;
    --green-light: #86efac;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--dark) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--darker) 0%, var(--primary) 50%, var(--dark) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(199, 164, 74, 0.1) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(199, 164, 74, 0.15);
    border: 1px solid rgba(199, 164, 74, 0.3);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
    display: block;
    color: #fff;
    line-height: 1.15;
}

.title-line:first-child {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
}

.title-line.accent {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--accent);
    font-weight: 700;
}

.title-line.location {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--gray-400);
    margin-top: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    color: var(--gray-400);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-unit {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-700);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(199, 164, 74, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--gray-400);
    background: rgba(255, 255, 255, 0.05);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gray-500);
    border-bottom: 2px solid var(--gray-500);
    transform: rotate(45deg);
    margin: 8px auto 0;
    animation: bounce 2s infinite;
}

/* === Sections === */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1rem;
    margin-top: 12px;
}

/* === Overview === */
.overview {
    background: var(--gray-50);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.overview-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.card-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.overview-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.overview-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === Property Details === */
.details-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.details-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.detail-row:first-child {
    border-top: 1px solid var(--gray-200);
}

.detail-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 16px;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}

.detail-value.highlight {
    color: var(--primary-light);
}

.detail-value.status-available {
    color: var(--green);
    position: relative;
    padding-left: 16px;
}

.detail-value.status-available::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

/* Gallery */
.gallery-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-top: 8px;
}

.thumb {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    padding: 0;
    background: none;
}

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

.thumb:hover,
.thumb.active {
    border-color: var(--primary-light);
}

.thumb.active {
    opacity: 1;
}

.thumb:not(.active) {
    opacity: 0.6;
}

/* === 3D Site Plan === */
.site-plan-section {
    background: var(--gray-50);
}

.site-plan-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}

.site-plan-container {
    perspective: 800px;
    height: 500px;
    background: linear-gradient(145deg, #e8f4f8, #d4e8d8);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: grab;
    position: relative;
    border: 1px solid var(--gray-200);
}

.site-plan-container:active {
    cursor: grabbing;
}

.site-plan-3d {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    transform: rotateX(55deg) rotateZ(-30deg);
}

.ground {
    width: 380px;
    height: 340px;
    background: linear-gradient(135deg, #c5deb5, #b5d4a5);
    position: relative;
    transform-style: preserve-3d;
    border: 2px solid #8cb878;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
}

/* Warehouse zone */
.warehouse-zone {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 160px;
    height: 110px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px dashed rgba(37, 99, 235, 0.4);
    transform-style: preserve-3d;
}

.warehouse-building {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 140px;
    height: 90px;
    transform-style: preserve-3d;
}

.building-face {
    position: absolute;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: 1px solid #1d4ed8;
}

.building-face.front {
    width: 140px;
    height: 50px;
    bottom: 0;
    left: 0;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    background: linear-gradient(180deg, #60a5fa, #3b82f6);
}

.building-face.back {
    width: 140px;
    height: 50px;
    top: 0;
    left: 0;
    transform: rotateX(-90deg);
    transform-origin: top;
    background: linear-gradient(0deg, #2563eb, #1d4ed8);
}

.building-face.left {
    width: 90px;
    height: 50px;
    top: 0;
    left: 0;
    transform: rotateY(90deg) rotateX(-90deg);
    transform-origin: top left;
    background: linear-gradient(90deg, #1e40af, #2563eb);
}

.building-face.right {
    width: 90px;
    height: 50px;
    top: 0;
    right: 0;
    transform: rotateY(-90deg) rotateX(-90deg);
    transform-origin: top right;
    background: linear-gradient(270deg, #3b82f6, #60a5fa);
}

.building-face.top {
    width: 140px;
    height: 90px;
    top: 0;
    left: 0;
    transform: translateZ(50px);
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
    border: 1px solid #3b82f6;
}

.building-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(52px);
    color: #1e3a5f;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 4px rgba(255,255,255,0.8);
    white-space: nowrap;
}

/* Hall B zone */
.warehouse-zone-b {
    position: absolute;
    top: 150px;
    left: 30px;
    width: 200px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border: 1px dashed rgba(30, 64, 175, 0.4);
    transform-style: preserve-3d;
}

.warehouse-building-b {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 190px;
    height: 50px;
    transform-style: preserve-3d;
}

.warehouse-building-b .building-face.front {
    width: 190px;
    height: 40px;
    bottom: 0;
    left: 0;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    background: linear-gradient(180deg, #818cf8, #6366f1);
}

.warehouse-building-b .building-face.back {
    width: 190px;
    height: 40px;
    top: 0;
    left: 0;
    transform: rotateX(-90deg);
    transform-origin: top;
    background: linear-gradient(0deg, #4f46e5, #4338ca);
}

.warehouse-building-b .building-face.left {
    width: 50px;
    height: 40px;
    top: 0;
    left: 0;
    transform: rotateY(90deg) rotateX(-90deg);
    transform-origin: top left;
    background: linear-gradient(90deg, #3730a3, #4f46e5);
}

.warehouse-building-b .building-face.right {
    width: 50px;
    height: 40px;
    top: 0;
    right: 0;
    transform: rotateY(-90deg) rotateX(-90deg);
    transform-origin: top right;
    background: linear-gradient(270deg, #6366f1, #818cf8);
}

.warehouse-building-b .building-face.top {
    width: 190px;
    height: 50px;
    top: 0;
    left: 0;
    transform: translateZ(40px);
    background: linear-gradient(135deg, #a5b4fc, #818cf8);
    border: 1px solid #6366f1;
}

.warehouse-building-b .building-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(42px);
    color: #1e1b4b;
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 0 4px rgba(255,255,255,0.8);
    white-space: nowrap;
}

/* Barren land zones */
.barren-zone {
    position: absolute;
    background: rgba(134, 239, 172, 0.25);
    border: 1px dashed rgba(34, 197, 94, 0.5);
    transition: background 0.3s;
}

.barren-zone:hover {
    background: rgba(134, 239, 172, 0.45);
}

.zone-1 {
    top: 30px;
    left: 210px;
    width: 140px;
    height: 110px;
}

.zone-2 {
    top: 220px;
    left: 30px;
    width: 160px;
    height: 80px;
}

.zone-3 {
    top: 150px;
    left: 250px;
    width: 100px;
    height: 100px;
}

.zone-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(2px);
    font-size: 0.6rem;
    font-weight: 600;
    color: #166534;
    text-align: center;
    line-height: 1.4;
    opacity: 0.8;
}

/* Road */
.road-strip {
    position: absolute;
    bottom: -2px;
    left: -20px;
    right: -20px;
    height: 36px;
    background: #64748b;
    transform: translateZ(1px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
}

.road-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.road-marking {
    width: 30px;
    height: 3px;
    background: rgba(255,255,255,0.4);
}

/* Trees */
.tree {
    position: absolute;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #22c55e, #15803d);
    border-radius: 50%;
    transform: translateZ(20px);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.tree::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: #7c5e3c;
    border-radius: 2px;
}

.tree-1 { top: 10px; right: 20px; }
.tree-2 { top: 60px; right: 10px; }
.tree-3 { top: 280px; left: 10px; }
.tree-4 { top: 145px; left: 200px; }
.tree-5 { top: 8px; left: 195px; }

/* Boundary */
.boundary {
    position: absolute;
    inset: -4px;
    border: 2px dashed rgba(239, 68, 68, 0.4);
    pointer-events: none;
    transform: translateZ(3px);
}

/* Compass */
.compass {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--dark);
    transform: translateZ(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.compass::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #ef4444;
}

/* Legend */
.site-plan-legend {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.site-plan-legend h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

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

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* === Investment === */
.invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.invest-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.invest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.invest-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.invest-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.invest-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* === Lease Details === */
.lease-details {
    background: var(--gray-50);
}

.lease-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.lease-info-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.lease-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.lease-info-card.featured {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, #eff6ff, #fff);
}

.lease-info-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.lease-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.lease-info-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.permitted-list {
    list-style: none;
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.permitted-list li {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 6px;
    border-left: 3px solid var(--primary-light);
}

/* === Location === */
.location-section {
    background: var(--gray-50);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-map {
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.connectivity-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.connectivity-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.connectivity-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.connectivity-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* === Lease Banner === */
.lease-banner {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 40px 0;
    border-top: 3px solid var(--accent);
}

.lease-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.lease-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.lease-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.lease-text p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === Contact === */
.contact {
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--gray-50);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-weight: 600;
    color: var(--dark);
}

.info-icon {
    font-size: 1.1rem;
}

.info-card.disclaimer {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.info-card.disclaimer h4 {
    color: var(--gray-600);
    font-size: 0.85rem;
}

.info-card.disclaimer p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* === Footer === */
.footer {
    background: var(--darker);
    padding: 48px 0;
    text-align: center;
}

.footer-content {
    color: var(--gray-500);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--gray-600);
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-8px); }
    60% { transform: rotate(45deg) translateY(-4px); }
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* === Responsive === */
@media (max-width: 1024px) {
    .site-plan-wrapper {
        grid-template-columns: 1fr;
    }

    .site-plan-legend {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-plan-legend h4 {
        width: 100%;
        margin-bottom: 4px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .details-layout,
    .location-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .site-plan-container {
        height: 380px;
    }

    .ground {
        width: 300px;
        height: 270px;
    }

    .warehouse-zone {
        width: 120px;
        height: 85px;
    }

    .warehouse-building {
        width: 100px;
        height: 65px;
    }

    .building-face.front,
    .building-face.back { width: 100px; }
    .building-face.left,
    .building-face.right { width: 65px; }
    .building-face.top { width: 100px; height: 65px; }

    .zone-1 {
        left: 165px;
        width: 110px;
        height: 85px;
    }

    .zone-2 {
        top: 130px;
        width: 120px;
        height: 80px;
    }

    .zone-3 {
        top: 130px;
        left: 165px;
        width: 110px;
        height: 80px;
    }

    .lease-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 64px 0;
    }

    .container {
        padding: 0 16px;
    }

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

    .site-plan-container {
        height: 320px;
    }

    .ground {
        width: 250px;
        height: 220px;
    }
}
