:root {
    --primary-brown: #6B4F2D;
    --dark-brown: #4A3620;
    --light-brown: #8B6914;
    --leaf-green: #4CAF50;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --earth-brown: #6B4F2D;
    --soft-black: #2B2B2B;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --grey-800: #1f2937;
    --gradient-brown: linear-gradient(135deg, #4A3620 0%, #6B4F2D 50%, #8B6914 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-brown: 0 4px 14px 0 rgba(107, 79, 45, 0.4);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--soft-black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-brown);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

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

.title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-brown);
    margin: 0 auto;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-brown);
    color: var(--white);
    box-shadow: var(--shadow-brown);
}

.btn-primary:hover {
    background: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 79, 45, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-logo .logo-img {
    height: 60px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-brown);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-brown);
}

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

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--soft-black);
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-brown);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-brown);
    border-radius: 3px;
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(15, 25, 15, 0.88) 0%, rgba(20, 35, 20, 0.75) 40%, rgba(10, 20, 15, 0.82) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 180, 100, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(120, 180, 100, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(100, 160, 80, 0.04) 0%, transparent 30%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 120px 40px 80px;
    display: flex;
    justify-content: flex-start;
}

.hero-card {
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
}

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

.hero-badge-wrap {
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #a8d5a2;
}

.badge-icon {
    color: #7cb87c;
    font-size: 14px;
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-main {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.title-sub {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(6px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #5a9e5a 0%, #7cb87c 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 16px 34px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--dark-green);
    border-color: var(--white);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.meta-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.meta-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 11px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 16px; opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        justify-content: center;
        text-align: center;
        padding: 100px 30px 60px;
    }
    
    .hero-card {
        max-width: 100%;
    }
    
    .hero-badge-wrap {
        display: flex;
        justify-content: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .feature {
        max-width: 400px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-meta {
        justify-content: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 90px 20px 50px;
    }
    
    .title-main {
        font-size: 42px;
    }
    
    .title-sub {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature {
        padding: 12px 14px;
        width: 100%;
    }
    
    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .feature-text strong {
        font-size: 14px;
    }
    
    .feature-text span {
        font-size: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .meta-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 32px;
    }
    
    .title-sub {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 79, 45, 0.2) 0%, transparent 100%);
}

.about-content h3 {
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--grey-600);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light-grey);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-brown);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.feature-item:hover .feature-icon {
    background: var(--white);
    color: var(--primary-brown);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--gradient-brown);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-suffix {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.about-developer {
    margin-top: 40px;
}

.developer-card {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: var(--light-grey);
    border-radius: 16px;
}

.developer-header {
    text-align: center;
}

.developer-header h4 {
    font-size: 14px;
    color: var(--grey-500);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.developer-name {
    font-size: 18px;
    color: var(--dark-brown);
    font-weight: 600;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--light-grey);
}

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

.location-address h3 {
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.address-card p {
    color: var(--grey-600);
    line-height: 1.8;
}

.landmarks-list h4 {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.landmarks-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.landmarks-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    color: var(--grey-700);
    transition: var(--transition);
}

.landmarks-list li:hover {
    background: var(--primary-brown);
    color: var(--white);
}

.landmarks-list li i {
    color: var(--primary-brown);
}

.landmarks-list li:hover i {
    color: var(--white);
}

.location-distances h3 {
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.distance-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.distance-icon {
    width: 40px;
    height: 40px;
    background: var(--light-grey);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-size: 16px;
}

.distance-label {
    flex: 1;
    font-size: 13px;
    color: var(--grey-600);
}

.distance-value {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 14px;
}

.location-map {
    margin-top: 40px;
}

.map-placeholder {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-brown);
}

.map-placeholder i {
    font-size: 60px;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.map-placeholder p {
    color: var(--grey-600);
    margin-bottom: 25px;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: var(--dark-brown);
    position: relative;
    color: var(--white);
}

.amenities .section-title {
    color: var(--white);
}

.amenities .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.amenities .title-line {
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--primary-brown);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-brown);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

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

.amenity-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.amenity-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.amenities-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.amenities-shape svg {
    width: 100%;
    height: 120px;
    fill: var(--white);
}

/* RERA Section */
.rera {
    padding: 100px 0;
    background: var(--white);
}

.rera-content {
    max-width: 900px;
    margin: 0 auto;
}

.rera-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--gradient-brown);
    color: var(--white);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.rera-badge i {
    font-size: 24px;
}

.rera-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.rera-card {
    background: var(--light-grey);
    padding: 25px;
    border-radius: 16px;
    transition: var(--transition);
}

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

.rera-card h4 {
    font-size: 14px;
    color: var(--grey-500);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rera-card h4 i {
    color: var(--primary-brown);
}

.rera-card p {
    font-size: 16px;
    color: var(--dark-brown);
    font-weight: 600;
}

.rera-number {
    font-size: 18px !important;
    letter-spacing: 1px;
}

.rera-sub {
    font-size: 12px !important;
    color: var(--grey-500) !important;
    font-weight: 400 !important;
}

.rera-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--dark-brown);
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.rera-link-btn:hover {
    background: var(--primary-brown);
}

.rera-disclaimer {
    background: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--earth-brown);
}

.rera-disclaimer p {
    font-size: 14px;
    color: var(--grey-600);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rera-disclaimer i {
    color: var(--earth-brown);
    margin-top: 3px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--light-grey);
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 250px;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.partner-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--white);
}

.partner-card h4 {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.partner-card p {
    color: var(--grey-500);
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-card h3 {
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

.contact-card > p {
    color: var(--grey-600);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-brown);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--dark-brown);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: var(--grey-600);
    font-size: 14px;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-200);
}

.contact-form h3 {
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--grey-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 4px rgba(107, 79, 45, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 79, 45, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 30px;
    color: var(--white);
}

.gallery-main {
    grid-column: span 2;
    grid-row: span 2;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-brown);
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
}

.cta-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta .btn-large {
    background: var(--white);
    color: var(--dark-brown);
}

.cta .btn-large:hover {
    background: var(--light-brown);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--soft-black);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-concept {
    color: var(--grey-400);
    font-style: italic;
    margin-bottom: 25px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: var(--grey-400);
    transition: var(--transition);
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--primary-brown);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--grey-400);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-list li i {
    color: var(--primary-brown);
    width: 20px;
}

.rera-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.rera-box p {
    color: var(--grey-400);
    font-size: 14px;
    margin-bottom: 10px;
}

.rera-box strong {
    color: var(--white);
}

.rera-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-brown) !important;
    font-weight: 500;
    margin-top: 10px;
}

.rera-link:hover {
    color: var(--white) !important;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom p {
    color: var(--grey-500);
    font-size: 14px;
}

.footer-bottom .disclaimer {
    color: var(--grey-400);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .about-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rera-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-main {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .rera-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .developer-card {
        flex-direction: column;
        gap: 25px;
    }
    
    .distance-grid {
        grid-template-columns: 1fr;
    }
    
    .landmarks-list ul {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Selection Color */
::selection {
    background: var(--primary-brown);
    color: var(--white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-brown);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-brown);
}
