:root {
    --navy: #0A1A2F;
    --champagne-gold: #D4AF7F;
    --cream: #F7F3E9;
    --charcoal: #1C1C1C;
    --primary-color: #0A1A2F;
    --accent-color: #D4AF7F;
    --text-dark: #1C1C1C;
    --text-light: #6C757D;
    --bg-light: #F7F3E9;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--cream);
}

/* Header & Navigation */
.site-header {
    position: relative;
    z-index: 1000;
}

.top-bar {
    background: #0A1A2F;
    color: var(--white);
    font-size: 14px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--cream);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
}

.top-bar-action {
    margin-left: auto;
}

.btn-brochure {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-brochure i {
    font-size: 14px;
}

.btn-brochure:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    border-color: transparent;
}
.btn-margin{
    margin-top: 5rem;
}

.navbar {
    background: var(--white);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.brand-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.brand-text strong {
    display: block;
    font-size: 18px;
}

.brand-text small {
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    padding: 12px 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0A1A2F 100%);
    color: var(--white);
    text-align: center;
    padding: 30px 10px 20px;
    overflow: hidden;
}

/* Video full background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* Content should stay on top */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 26, 47, 0.75) 0%,
        rgba(10, 26, 47, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    font-size: 24px;
    color: var(--champagne-gold);
}

.prelaunch-badge {
    background: rgba(212, 175, 127, 0.2);
    border: 2px solid var(--champagne-gold);
}

.badge strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.badge span {
    font-size: 12px;
    opacity: 0.9;
}

.hero-headline {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-only {
    display: none;
}

.hero-subheadline {
    font-size: 14px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
    cursor:pointer;
}

.metric-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 24px;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.btn {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 127, 0.4);
}

.btn-primary:hover {
    background: #C19F6F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 127, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Value Proposition Section */
.value-proposition {
    padding-top: 30px;
    background: var(--cream);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.content-block {
    padding: 24px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(10, 26, 47, 0.08);
    box-shadow: 0 15px 35px rgba(10, 26, 47, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.block-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.block-index {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.content-block h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    padding: 24px 18px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--champagne-gold);
}

.benefit-item i {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 16px;
    transition: var(--transition);
}

.benefit-item:hover i {
    color: var(--champagne-gold);
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

/* Property Types Section */
.property-types {
    padding-top: 30px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.property-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 35px;
}

.property-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 20px 24px;
    box-shadow: 0 4px 20px rgba(10, 26, 47, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    margin-top: 12px;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--champagne-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.property-card:hover::before {
    transform: scaleX(1);
}

.property-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10, 26, 47, 0.2);
    border-color: var(--champagne-gold);
    background: linear-gradient(145deg, #ffffff 0%, #f7f3e9 100%);
}

.card-badge {
    position: absolute;
    top: -8px;
    left: 20px;
    background: linear-gradient(135deg, var(--champagne-gold) 0%, #e8c9a0 100%);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(212, 175, 127, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid var(--white);
}

.property-card:hover .card-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 127, 0.5);
}

.card-badge.accent-gold {
    background: var(--navy);
    color: var(--white);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 8px;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.property-card:hover .card-icon::before {
    width: 200px;
    height: 200px;
}

.property-card:hover .card-icon {
    transform: rotateY(360deg) scale(1.1);
}

.icon-residential {
    background: linear-gradient(135deg, var(--navy) 0%, #0d1f3a 100%);
    box-shadow: 0 4px 15px rgba(10, 26, 47, 0.3);
}

.icon-commercial {
    background: linear-gradient(135deg, var(--navy) 0%, #0d1f3a 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 26, 47, 0.3);
}

.icon-industrial {
    background: linear-gradient(135deg, var(--navy) 0%, #0d1f3a 100%);
    box-shadow: 0 4px 15px rgba(10, 26, 47, 0.3);
}

.card-header h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.property-card:hover .card-header h3 {
    color: var(--navy);
}

.card-subtitle {
    color: var(--text-light);
    font-size: 13px;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.property-card:hover .card-subtitle {
    color: var(--text-dark);
}

.card-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
    padding: 14px;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(247, 243, 233, 0.5) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.property-card:hover .card-pricing {
    background: linear-gradient(135deg, rgba(212, 175, 127, 0.1) 0%, rgba(212, 175, 127, 0.05) 100%);
    transform: scale(1.05);
}

.card-pricing small {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-light);
}

.price-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.property-card:hover .price-value {
    color: var(--navy);
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(27, 72, 84, 0.08);
}

.spec-pill {
    background: rgba(10, 26, 47, 0.04);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(10, 26, 47, 0.08);
}

.spec-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.spec-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.card-features {
    list-style: none;
    margin-bottom: 34px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px 18px;
}

.card-features li {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text-dark);
    font-size: 14px;
    border: 1px solid rgba(10, 26, 47, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.card-features li i {
    color: var(--navy);
    margin-top: 4px;
    font-size: 14px;
}

.btn-card {
    width: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(10, 26, 47, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.btn-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-card:hover::before {
    width: 300px;
    height: 300px;
}

.btn-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(10, 26, 47, 0.4);
    background: linear-gradient(135deg, var(--champagne-gold) 0%, #e8c9a0 100%);
    color: var(--text-dark);
}

/* Location Section */
.location-section {
    padding: 30px 10px;
    background: var(--cream);
}

.whats-included {
    padding: 30px 10px;
    background: var(--white);
}

.checklist-container {
    max-width: 900px;
    margin: 0 auto;
}

.investment-checklist {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.investment-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    font-size: 15px;
    line-height: 1.6;
}

.investment-checklist li i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.market-opportunity {
    padding: 30px 10px;
    background: var(--cream);
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 35px;
}

.advantage-card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--champagne-gold);
}

.advantage-card i {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 16px;
    transition: var(--transition);
}

.advantage-card:hover i {
    color: var(--champagne-gold);
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.location-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.location-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.connectivity-table {
    margin-top: 50px;
    overflow-x: auto;
}

.connectivity-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
}

.connectivity-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.connectivity-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #E0E0E0;
    color: var(--text-dark);
}

.connectivity-table tr:last-child td {
    border-bottom: none;
}

.connectivity-table tr:hover {
    background: var(--bg-light);
}

/* Amenities Section */
.amenities-section {
    padding: 30px 10px;
    background: var(--white);
}

.amenities-grid-slider {
    position: relative;
    margin: 40px 0;
}

.amenities-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.amenities-slide-set {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.amenities-slide-set.active {
    display: block;
    opacity: 1;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.amenity-item-image {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10, 26, 47, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.amenity-item-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 26, 47, 0.2);
}

.amenity-item-image .amenity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.amenity-item-image .amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amenity-item-image:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-item-image h3 {
    padding: 20px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.amenities-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 26, 47, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.amenities-slider-btn:hover {
    background: var(--champagne-gold);
    transform: translateY(-50%) scale(1.1);
}

.amenities-slider-btn.prev {
    left: -25px;
}

.amenities-slider-btn.next {
    right: -25px;
}

.amenities-slider-btn i {
    font-size: 20px;
}

.amenities-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.amenities-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10, 26, 47, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(10, 26, 47, 0.5);
}

.amenities-slider-dot.active {
    background: var(--champagne-gold);
    width: 30px;
    border-radius: 6px;
    border-color: var(--champagne-gold);
}

.amenity-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.amenity-item:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-item h3 {
    padding: 25px 25px 10px;
    color: var(--primary-color);
    font-size: 24px;
}

.amenity-item p {
    padding: 0 25px 25px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Slider Styles */
.image-slider-container {
    margin: 40px 0;
    position: relative;
}

.image-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 26, 47, 0.2);
    background: var(--white);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 26, 47, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--champagne-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-btn i {
    font-size: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: var(--champagne-gold);
    width: 30px;
    border-radius: 6px;
}

/* Master Plan Section */
.master-plan-section {
    padding: 30px 10px;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.master-plan-section .section-title {
    color: var(--primary-color);
}

.master-plan-section .section-subtitle {
    color: var(--text-light);
}

/* Layout Section */
.floor-plans-section {
    padding: 30px 10px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.floor-plans-section .section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.floor-plans-section .section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Location Map Section */
.location-map-section {
    padding: 30px 10px;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.location-map-section .section-title {
    color: var(--primary-color);
}

.location-map-section .section-subtitle {
    color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
    padding: 30px 10px;
    background: var(--white);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.gallery-tab:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 26, 47, 0.2);
}

.gallery-tab.active {
    background: var(--champagne-gold);
    color: var(--white);
    border-color: var(--champagne-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(10, 26, 47, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 26, 47, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 47, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 32px;
}

.gallery-item.hidden {
    display: none;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 20000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    z-index: 20001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 20001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--champagne-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Lead Form Popup */
.lead-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.lead-form-overlay.active {
    display: flex;
}

.lead-form-popup {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

.form-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0A1A2F 100%);
    padding: 25px 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.form-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/m3m/gic-form.jpg') center/contain no-repeat;
    z-index: 0;
}

.form-branding {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.brand-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
    background-color: #ffffff !important;
    color: var(--champagne-gold);
}
.investment-checklist li {
    display: block;
}

.investment-checklist li strong {
    display: block;
    margin-bottom: 5px;
}

.investment-checklist li br {
    display: none;
}

.brand-tagline {
    font-size: 11px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.form-branding h2 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--champagne-gold);
}

.project-location {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.project-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 11px;
}

.feature-tag i {
    color: var(--champagne-gold);
    font-size: 16px;
}

.form-right {
    padding: 30px 25px;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.form-right h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 6px;
    text-align: center;
    line-height: 1.3;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 18px;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 127, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 120px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

.checkbox-group {
    margin-bottom: 18px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
}

.btn-submit:hover {
    background: #C19F6F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 127, 0.4);
}

.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--text-dark);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-message.active {
    display: flex;
}

.success-content {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-content i {
    font-size: 64px;
    color: #28A745;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-content>p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.success-steps {
    text-align: left;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.success-steps p {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.success-steps ol {
    margin-left: 20px;
    color: var(--text-light);
    line-height: 2;
}

.success-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 18px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 127, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 127, 0.5);
}

/* Footer */
.site-footer {
    background: #0A1A2F;
    color: var(--white);
    padding-top: 60px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-column-main {
    max-width: 100%;
}

.footer-column-main .brand {
    margin-bottom: 20px;
}

.footer-column-main p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column-contact {
    display: flex;
    flex-direction: column;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--champagne-gold);
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-certifications i {
    color: var(--champagne-gold);
    margin-right: 10px;
}

.contact-list {
    gap: 20px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
    color: var(--champagne-gold);
    font-size: 18px;
    margin-top: 4px;
}

.footer-cta {
    margin-top: 25px;
    width: 100%;
}

.footer-bottom {
    background: #1C1C1C;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom a {
    color: var(--champagne-gold);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #f0f0f0;
        display: none;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .key-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .metric-card {
        padding: 15px;
    }

    .advantage-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lead-form-popup {
        grid-template-columns: 1fr;
        max-width: 95%;
        max-height: 95vh;
    }

    .form-left {
        max-height: 200px;
        padding: 20px;
    }

    .form-branding h2 {
        font-size: 16px;
    }

    .project-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .form-right {
        padding: 30px 20px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .floating-cta span {
        display: none;
    }

    .floating-cta {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .top-bar-item {
        justify-content: flex-start;
        font-size: 13px;
    }

    .top-bar-action {
        margin-left: 0;
        width: 100%;
    }

    .btn-brochure {
        width: auto;
        align-self: flex-start;
        border-radius: 999px;
        font-size: 13px;
        padding: 9px 16px;
    }

    .nav-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .brand {
        flex: 1;
        justify-content: flex-start;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        width: 100%;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 24px;
        border-radius: 18px;
        border: 1px solid rgba(10, 26, 47, 0.08);
        box-shadow: 0 24px 60px rgba(10, 26, 47, 0.18);
        z-index: 20;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 4px 0;
    }

    .nav-cta {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-specs,
    .card-features {
        grid-template-columns: 1fr;
    }

    .card-pricing {
        flex-direction: column;
    }

    .slider-wrapper {
        height: 400px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-slider-btn {
        width: 40px;
        height: 40px;
    }

    .amenities-slider-btn.prev {
        left: -15px;
    }

    .amenities-slider-btn.next {
        right: -15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .nav-links {
        left: 10px;
        right: 10px;
    }
    .btn-margin{
        margin-top: -23px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .property-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .slider-wrapper {
        height: 300px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .amenities-slider-btn.prev {
        left: 10px;
    }

    .amenities-slider-btn.next {
        right: 10px;
    }
}