/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #0a5c36;
    --primary-light: #148f54;
    --primary-tint: #e8f4ec;
    --primary-dark: #064024;
    
    --accent-color: #d4af37;
    --accent-light: #f5a623;
    --accent-dark: #b8931d;
    --accent-tint: #fdfaf2;
    
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --bg-dark: #1c1f22;
    --bg-dark-gray: #2d3135;
    
    --text-main: #2d3748;
    --text-muted: #718096;
    --text-light: #ffffff;
    --text-dark-blue: #1a202c;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-deep: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-round: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography resets */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark-blue);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

section[id] {
    scroll-margin-top: 130px;
}

.bg-light {
    background-color: var(--bg-light);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center {
    align-items: center;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary-color); }
.mt-4 { margin-top: 32px; }

.rounded-lg { border-radius: var(--radius-md); }
.shadow-lg { box-shadow: var(--shadow-medium); }
.responsive-img { width: 100%; object-fit: cover; }

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
}

.section-header .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-light);
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
    position: relative;
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: var(--radius-sm);
}

/* Badge System */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-primary {
    background-color: var(--primary-tint);
    color: var(--primary-color);
}

.badge-accent {
    background-color: var(--accent-tint);
    color: var(--accent-dark);
}

.badge-success {
    background-color: #c6f6d5;
    color: #22543d;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: 12px 28px;
    font-size: 0.95rem;
    line-height: 1.5;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-dark-blue);
}

.btn-secondary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.animate-pulse-btn {
    position: relative;
    overflow: hidden;
}

.animate-pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.6s, height 0.6s, opacity 0.6s;
}

.animate-pulse-btn:active::after {
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: 0s;
}

/* ==========================================================================
   STICKY NAV / HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

/* Scroll Active Header state */
.main-header.scroll-active {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    height: 70px;
}

.main-header.scroll-active .logo {
    color: var(--text-dark-blue);
}

.main-header.scroll-active .nav-link {
    color: var(--text-main);
}

.main-header.scroll-active .nav-link:hover {
    color: var(--primary-color);
}

.main-header.scroll-active .nav-link.active {
    color: var(--primary-color);
}

/* ==========================================================================
   STICKY SECTION JUMP MENU
   ========================================================================== */
.section-jump-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 999;
    transition: top var(--transition-normal), background-color var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.main-header.scroll-active + .section-jump-menu {
    top: 70px;
    background-color: rgba(255, 255, 255, 0.98);
}

.jump-menu-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 24px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.jump-menu-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.jump-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 20px;
    transition: var(--transition-fast);
    display: inline-block;
}

.jump-link:hover {
    color: var(--primary-color);
    background-color: var(--primary-tint);
}

.jump-link.active {
    color: var(--text-light);
    background-color: var(--primary-color);
    box-shadow: var(--shadow-soft);
}

@media (min-width: 992px) {
    .jump-menu-container {
        justify-content: center;
        overflow-x: visible;
    }
}

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

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

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-normal);
}

.main-header.scroll-active .logo-img {
    filter: none;
}

.logo-text-suffix {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    transition: var(--transition-normal);
}

.main-header.scroll-active .logo-text-suffix {
    color: var(--primary-color);
}

.nav-menu {
    display: none;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 16px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-light);
}

/* Nav Hover Line Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    color: var(--accent-light);
    font-weight: 700;
}

.header-cta-btn {
    display: block;
}

/* Menu Toggle Bar Style (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-normal);
}

.main-header.scroll-active .menu-toggle .bar {
    background-color: var(--text-dark-blue);
}

/* Active Hamburger menu transformation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--text-dark-blue) !important;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--text-dark-blue) !important;
}

/* ==========================================================================
   1. HERO BANNER
   ========================================================================== */
.hero-banner {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-grow: 1;
    gap: 40px;
}

.hero-content {
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(10, 92, 54, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(245, 166, 35, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
    }
}

.hero-banner h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Quick Overview Grid */
.hero-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.overview-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.overview-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.22);
}

.overview-card .icon {
    font-size: 1.8rem;
    color: var(--accent-light);
    width: 48px;
    text-align: center;
}

.overview-card .info {
    display: flex;
    flex-direction: column;
}

.overview-card .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.overview-card .value {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* ==========================================================================
   2. ABOUT PROJECT
   ========================================================================== */
.about-text-content h3 {
    font-size: 1.75rem;
    margin-bottom: 18px;
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-highlights-list {
    margin: 24px 0 32px 0;
}

.about-highlights-list .list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-highlights-list i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 1.1rem;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap .image-box {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-image-wrap .image-box::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    border: 6px solid var(--accent-tint);
    border-radius: var(--radius-md);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.experience-badge .txt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ==========================================================================
   3. PROJECT HIGHLIGHTS
   ========================================================================== */
.highlight-card {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid transparent;
    transition: var(--transition-normal);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-bottom-color: var(--accent-light);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-tint);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.highlight-card:hover .card-icon {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   4. PRICE LIST
   ========================================================================== */
.table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-md);
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    min-width: 650px;
}

.responsive-table th,
.responsive-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.responsive-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
}

.responsive-table tr:last-child td {
    border-bottom: none;
}

.responsive-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.price-disclaimer {
    max-width: 800px;
    margin: 0 auto;
}

.price-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.link-styled {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.price-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   5. PAYMENT PLAN
   ========================================================================== */
.payment-timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 20px 0;
}

/* Center Line */
.payment-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45px;
    width: 4px;
    background-color: var(--primary-tint);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 110px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: 4px solid var(--bg-white);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 24px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-light);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   6. FLOOR PLANS
   ========================================================================== */
.tabs-container {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    padding: 30px;
}

.tabs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 40px;
    gap: 8px;
}

.tab-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

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

.floor-graphic {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floor Plan Image Zoom Layout */
.floor-graphic-img-wrap {
    position: relative;
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
}

.floorplan-zoom-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    transition: var(--transition-slow);
}

.floor-graphic-img-wrap:hover .floorplan-zoom-img {
    transform: scale(1.04);
}

.floorplan-overlay-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 92, 54, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.floor-graphic-img-wrap:hover .floorplan-overlay-zoom {
    opacity: 1;
    background-color: rgba(10, 92, 54, 0.4);
}

.floorplan-overlay-zoom span {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.floor-graphic-img-wrap:hover .floorplan-overlay-zoom span {
    transform: translateY(0);
}

/* Floor Plan Areas Box */
.floor-areas-box {
    background-color: var(--primary-tint);
    border: 1px solid rgba(10, 92, 54, 0.15);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-item {
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.area-item strong {
    font-weight: 600;
}

.floor-details h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.floor-details .lead {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.floor-details p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.features-bullet-list {
    margin-bottom: 30px;
}

.features-bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.features-bullet-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-light);
}

/* ==========================================================================
   7. SITE LAYOUT
   ========================================================================== */
.site-layout-graphic {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    padding: 20px;
}

/* Site Layout Image Zoom Layout */
.site-layout-img-wrap {
    position: relative;
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sitelayout-zoom-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: var(--transition-slow);
}

.site-layout-img-wrap:hover .sitelayout-zoom-img {
    transform: scale(1.04);
}

.sitelayout-overlay-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 92, 54, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.site-layout-img-wrap:hover .sitelayout-overlay-zoom {
    opacity: 1;
    background-color: rgba(10, 92, 54, 0.4);
}

.sitelayout-overlay-zoom span {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.site-layout-img-wrap:hover .sitelayout-overlay-zoom span {
    transform: translateY(0);
}

.tower-node {
    cursor: pointer;
    transition: var(--transition-fast);
}

.tower-node:hover {
    fill: var(--primary-tint);
    stroke: var(--accent-light);
}

.layout-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.layout-info-cards .info-card {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-color);
}

.layout-info-cards h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.layout-info-cards p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   8. AMENITIES
   ========================================================================== */
.amenity-card {
    background-color: var(--bg-white);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-normal);
}

.amenity-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-medium);
}

.amenity-card i {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   9. LOCATION ADVANTAGES
   ========================================================================== */
.location-list h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.location-list p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.transit-table-wrap {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 10px;
}

.transit-table {
    width: 100%;
    border-collapse: collapse;
}

.transit-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.transit-table tr:last-child td {
    border-bottom: none;
}

.transit-table i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.map-placeholder {
    background-color: var(--bg-white);
    padding: 16px;
}

.map-image-box {
    position: relative;
    background-color: #fafbfc;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
}

.location-map-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.map-image-box:hover .location-map-img {
    transform: scale(1.04);
}

.map-overlay-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 92, 54, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.map-image-box:hover .map-overlay-zoom {
    opacity: 1;
    background-color: rgba(10, 92, 54, 0.4);
}

.map-overlay-zoom span {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.map-image-box:hover .map-overlay-zoom span {
    transform: translateY(0);
}

.map-meta {
    margin-top: 20px;
}

.map-meta h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.map-meta p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* ==========================================================================
   10. PROJECT SPECIFICATIONS
   ========================================================================== */
.specs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.specs-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.accordion-item.active {
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-tint);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark-blue);
    text-align: left;
}

.accordion-header span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-header i {
    color: var(--primary-color);
}

.accordion-header .arrow {
    transition: var(--transition-normal);
}

.accordion-item.active .accordion-header .arrow {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 300px; /* arbitrary height to slide down */
    padding-bottom: 24px;
}

/* ==========================================================================
   11. CONSTRUCTION STATUS
   ========================================================================== */
.status-grid {
    margin-bottom: 50px;
}

.status-counter-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.status-counter-card .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    display: inline-block;
}

.status-counter-card .suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.status-counter-card .label {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.status-info-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    border-top: 6px solid var(--accent-light);
    max-width: 850px;
    margin: 0 auto;
}

.status-badge {
    margin-bottom: 16px;
}

.status-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.status-info-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   12. GALLERY
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-light);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background-color: var(--primary-tint);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.gallery-grid {
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    background-color: #cbd5e0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-svg-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-svg-placeholder svg {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-svg-placeholder .icon-center {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

.gallery-overlay h4 {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--accent-light);
    font-size: 1.25rem;
}

/* ==========================================================================
   13. FAQ
   ========================================================================== */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Active FAQ animations */
.faq-item.active .faq-icon {
    transform: rotate(135deg);
    color: var(--accent-light);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 20px;
}

/* ==========================================================================
   14. CONTACT FORM
   ========================================================================== */
.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.info-item i {
    width: 45px;
    height: 45px;
    background-color: var(--primary-tint);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.rera-badge-box {
    display: flex;
    gap: 16px;
    background-color: var(--accent-tint);
    border: 1px dashed var(--accent-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.rera-badge-box i {
    font-size: 2.25rem;
    color: var(--accent-light);
    margin-top: 4px;
}

.rera-badge-box h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.rera-badge-box p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.rera-agent {
    color: var(--accent-dark);
    font-weight: 600;
    margin-top: 4px;
}

.contact-form-wrap {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-deep);
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
}

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

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

.required {
    color: #e53e3e;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid #cbd5e0;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-fast);
    background-color: #fafbfc;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-tint);
    background-color: var(--bg-white);
}

.phone-input-group {
    display: flex;
}

.phone-input-group .country-code {
    background-color: #e2e8f0;
    border: 1px solid #cbd5e0;
    border-right: none;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    color: var(--text-muted);
}

.phone-input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.error-msg {
    color: #e53e3e;
    font-size: 0.75rem;
    display: none;
    margin-top: 4px;
}

.form-group.has-error .form-control {
    border-color: #e53e3e;
    background-color: #fffaf0;
}

.form-group.has-error .error-msg {
    display: block;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 60px;
}

.footer-top {
    border-bottom: 1px solid var(--bg-dark-gray);
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.footer-logo-suffix {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.brand-col .footer-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--bg-dark-gray);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.legal-col p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 30px 0;
}

.disclaimer-box {
    background-color: var(--bg-dark-gray);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.disclaimer-box p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.45);
}

.copyright-bar {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-round);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: var(--transition-normal);
}

.scroll-to-top:hover {
    background-color: var(--accent-light);
    color: var(--text-dark-blue);
    transform: translateY(-3px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   MOBILE STICKY ACTION FOOTER
   ========================================================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 998;
    display: none;
    grid-template-columns: repeat(3, 1fr);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    gap: 6px;
    height: 100%;
}

.sticky-cta-btn.phone-btn {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.sticky-cta-btn.whatsapp-btn {
    background-color: #25d366;
    color: var(--text-light);
}

.sticky-cta-btn.enquiry-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* ==========================================================================
   MODAL DIALOG POPUPS
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px;
    z-index: 2;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal.open .modal-dialog {
    transform: scale(1);
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-deep);
    overflow: hidden;
}

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

.modal-close:hover {
    color: var(--text-dark-blue);
}

.modal-header {
    background-color: var(--primary-tint);
    padding: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.modal-body {
    padding: 30px;
}

/* ==========================================================================
   LIGHTBOX FOR GALLERY
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 4px solid var(--text-light);
    box-shadow: var(--shadow-deep);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-caption {
    color: var(--text-light);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-align: center;
}

/* ==========================================================================
   SCROLL FADE-IN ANIMATIONS
   ========================================================================== */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-element.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   DEVELOPER PORTFOLIO SECTION
   ========================================================================== */
.developer-portfolio {
    background-color: var(--bg-light);
}

.developer-group-banner {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    margin-bottom: 50px;
    border-top: 6px solid var(--primary-color);
}

.developer-group-banner h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.developer-group-banner .lead {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark-blue);
}

.developer-group-banner p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stat-pill {
    background-color: var(--primary-tint);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.portfolio-img-wrap {
    position: relative;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: center;
    background-color: var(--bg-light);
}

.portfolio-zoom-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    transition: var(--transition-slow);
}

.portfolio-img-wrap:hover .portfolio-zoom-img {
    transform: scale(1.04);
}

.portfolio-overlay-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 92, 54, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-img-wrap:hover .portfolio-overlay-zoom {
    opacity: 1;
    background-color: rgba(10, 92, 54, 0.4);
}

.portfolio-overlay-zoom span {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.portfolio-img-wrap:hover .portfolio-overlay-zoom span {
    transform: translateY(0);
}

.portfolio-subsection {
    margin-top: 50px;
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark-blue);
}

.subsection-title i {
    font-size: 1.25rem;
}

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

.portfolio-grid {
    gap: 20px;
}

.project-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
    border: 1px solid #f1f3f5;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-icon-block {
    width: 48px;
    height: 48px;
    background-color: var(--primary-tint);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.card-icon-block.ongoing {
    background-color: var(--accent-tint);
    color: var(--accent-light);
}

.project-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.project-card .loc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.project-card .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.status-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.tag-delivered {
    background-color: #c6f6d5;
    color: #22543d;
}

.tag-ongoing {
    background-color: #feebc8;
    color: #9c4221;
}

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

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Large Tablets & Desktop down scaling */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-banner h1 {
        font-size: 3rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-prev { left: 10px; top: auto; bottom: -60px; transform: none; }
    .lightbox-next { right: 10px; top: auto; bottom: -60px; transform: none; }
}

/* Medium Tablets / iPads */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    /* Navigation Hamburger Menu */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-deep);
        padding: 90px 40px 40px 40px;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        color: var(--text-dark-blue);
        font-size: 1.15rem;
    }
    
    .header-cta-btn {
        display: none;
    }
    
    .hero-banner {
        padding-top: 140px;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Timeline left alignment */
    .payment-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 16px 20px;
    }
    
    /* Sticky footer spacing */
    body {
        padding-bottom: 60px;
    }
    
    .mobile-sticky-cta {
        display: grid;
    }
    
    .scroll-to-top {
        bottom: 75px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .hero-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .tabs-list {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-btn.active {
        border-left-color: var(--primary-color);
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
    }
}
