/* =====================================================
   KANNAN GREENS - Main Stylesheet
   Premium Real Estate Landing Page
   ===================================================== */

/* === CSS Variables === */
:root {
    --primary: #1a5632;
    --primary-dark: #134026;
    --primary-light: #2d8a54;
    --secondary: #c8a951;
    --secondary-dark: #b8993d;
    --accent: #e8c84a;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --danger: #dc3545;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 12px 36px rgba(0,0,0,0.25);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 10px 0;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 5px 0;
}

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

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

.logo {
    height: 50px;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    height: 40px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-close {
    display: none;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 15px 32px;
    font-size: 1.05rem;
}

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

.btn-block {
    width: 100%;
}

.btn-phone {
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
}

.btn-phone:hover {
    background: var(--primary-dark);
}

/* === Hero Section V2 - Modern Design === */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 40, 25, 0.92) 0%, 
        rgba(26, 86, 50, 0.85) 30%, 
        rgba(10, 40, 25, 0.75) 60%, 
        rgba(10, 30, 20, 0.88) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-v2-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 140px 20px 80px;
    width: 100%;
    max-width: 1300px;
}

/* Left Content */
.hero-v2-left {
    color: var(--white);
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 169, 81, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 28px;
    border: 1px solid rgba(200, 169, 81, 0.3);
    animation: fadeInDown 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.badge-icon {
    color: var(--secondary);
}

.hero-v2-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-v2-greeting {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-v2-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-v2-tagline {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-v2-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-v2-desc strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Modern CTA Buttons */
.hero-v2-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    border-radius: 14px;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--secondary), #dbb84d);
    color: var(--dark);
    box-shadow: 0 8px 30px rgba(200, 169, 81, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(200, 169, 81, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-hero-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-hero-primary .btn-hero-icon {
    background: rgba(26, 86, 50, 0.2);
}

.btn-hero-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-hero-label {
    font-size: 1rem;
    font-weight: 600;
}

.btn-hero-sub {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Trust Indicators */
.hero-v2-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    color: #4ade80;
    font-size: 0.9rem;
}

/* Right Side - Floating Card */
.hero-v2-right {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 35px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.hero-floating-card:hover {
    transform: translateY(-8px);
}

.floating-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.floating-card-header h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.price-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: var(--white);
}

.price-rupee {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-unit {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
}

.price-sub {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.floating-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 20px 0;
}

.floating-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 25px;
}

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

.fstat-icon {
    width: 42px;
    height: 42px;
    background: rgba(200, 169, 81, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

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

.fstat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.fstat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.floating-card-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.floating-card-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 86, 50, 0.4);
}

/* Scroll Indicator */
.hero-v2-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-v2-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.hero-v2-scroll a:hover {
    color: var(--secondary);
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

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

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

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

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

.section-header.light {
    color: var(--white);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

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

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-desc {
    color: rgba(255,255,255,0.8);
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 30px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* === Features Section === */
.features-section {
    background: var(--primary);
    color: var(--white);
}

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

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

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* === Floor Plans Section === */
.floorplans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.floorplan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.floorplan-card a {
    display: block;
    overflow: hidden;
}

.floorplan-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.floorplan-card:hover img {
    transform: scale(1.05);
}

.floorplan-info {
    padding: 20px;
    text-align: center;
}

.floorplan-info h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.floorplan-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.floorplan-meta i {
    color: var(--primary);
    margin-right: 5px;
}

/* === Pricing Section === */
.pricing-table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table thead {
    background: var(--primary);
    color: var(--white);
}

.pricing-table th,
.pricing-table td {
    padding: 18px 25px;
    text-align: left;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--gray-100);
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.price-cell {
    font-weight: 600;
    color: var(--primary);
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.pricing-note i {
    color: var(--secondary);
    margin-right: 5px;
}

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

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

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.location-features {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-features h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 25px;
}

.landmark-list {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
    flex: 1;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.landmark-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.landmark-item i {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.landmark-item h4 {
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.landmark-item span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.location-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    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(26, 86, 50, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

/* === Amenities Section === */
.amenities-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

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

.amenity-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 15px;
}

.amenity-item h4 {
    color: var(--white);
    font-size: 0.95rem;
}

/* === CTA Banner === */
.cta-banner-section {
    background: var(--gray-100);
}

.cta-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    color: var(--white);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-image {
    flex: 0 0 300px;
}

.cta-image img {
    border-radius: var(--radius-lg);
}

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

.contact-card {
    background: var(--gray-100);
    padding: 35px;
    border-radius: var(--radius-lg);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.contact-item a {
    color: var(--primary);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group label i {
    color: var(--primary);
    margin-right: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.error-msg {
    display: block;
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 5px;
}

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

.form-note i {
    color: var(--success);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

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

.form-success p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* === Bottom CTA Strip === */
.bottom-cta-strip {
    background: var(--secondary);
    padding: 25px 0;
}

.strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.strip-text h3 {
    font-size: 1.3rem;
    color: var(--dark);
}

.strip-text p {
    font-size: 0.95rem;
    color: var(--dark-light);
}

.strip-actions {
    display: flex;
    gap: 10px;
}

/* === Modal === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--danger);
}

.modal-header {
    text-align: center;
    padding: 30px 30px 0;
}

.modal-logo {
    height: 50px;
    margin: 0 auto 15px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.lead-form {
    padding: 25px 30px 30px;
}

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

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.floating-call {
    background: var(--primary);
}

.floating-whatsapp {
    background: #25d366;
}

/* === Footer === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-rera {
    font-size: 0.85rem;
    color: var(--secondary);
}

.footer-rera i {
    margin-right: 5px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
}

.footer-contact a {
    opacity: 0.8;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--dark);
}

.footer-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form input:focus {
    outline: none;
    border-color: var(--secondary);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-v2-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 160px 20px 80px;
    }
    
    .hero-v2-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-v2-name { font-size: 3.2rem; }
    .hero-v2-tagline { font-size: 1.4rem; }
    .hero-v2-desc { text-align: center; }
    .hero-v2-cta { justify-content: center; }
    .hero-v2-trust { justify-content: center; }
    .hero-v2-right { order: -1; }
    .hero-floating-card { max-width: 420px; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .floorplans-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--gray-100);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--gray-700);
        cursor: pointer;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav-close:hover {
        background: var(--danger);
        color: var(--white);
    }
    .nav-toggle {
        display: block;
    }
    
    .nav-close {
        display: flex;
    }
    .nav-links { flex-direction: column; gap: 0; }
    .nav-link { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
    .nav-cta { flex-direction: column; width: 100%; margin-top: 20px; }
    .nav-cta .btn { width: 100%; }
    
    .hero-v2-content { padding: 140px 20px 60px; }
    .hero-v2-name { font-size: 2.5rem; }
    .hero-v2-tagline { font-size: 1.2rem; }
    .hero-v2-cta { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 300px; justify-content: center; }
    .hero-v2-trust { gap: 15px; margin-bottom: 30px; }
    .hero-floating-card { padding: 25px; }
    .price-amount { font-size: 2.8rem; }
    .hero-v2-scroll { display: none; }
    
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .about-highlights { grid-template-columns: 1fr; }
    
    .features-grid { grid-template-columns: 1fr; }
    .floorplans-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    
    .cta-banner { flex-direction: column; text-align: center; padding: 30px; }
    .cta-image { flex: none; width: 100%; }
    .cta-buttons { justify-content: center; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .strip-content { flex-direction: column; text-align: center; }
    .strip-actions { justify-content: center; }
    
    .section-title { font-size: 2rem; }
    .section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .hero-v2-name { font-size: 2rem; }
    .hero-v2-tagline { font-size: 1rem; }
    .btn-hero-primary, .btn-hero-secondary { max-width: 100%; }
    .floating-card-stats { grid-template-columns: 1fr; }
    .hero-v2-trust { flex-direction: column; align-items: center; }
    .hero-v2-scroll { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .floating-ctas { bottom: 20px; right: 20px; }
    .floating-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* === Utility Classes === */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
