/* =============================================
   TANIZ PROPERTIES - PREMIUM REAL ESTATE THEME
   Transforming Dreams into Addresses
   ============================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* CSS Variables - Luxury Green Theme */
:root {
    /* Primary Colors - Emerald Green */
    --primary: #2eab6f;
    --primary-dark: #238c5a;
    --primary-light: #3cc282;
    --primary-darker: #1a6b44;
    --accent: #2eab6f;
    --accent-light: #34d399;
    
    /* Gold Accent */
    --gold: #d4a853;
    --gold-light: #e5c07b;
    --gold-dark: #b8943f;
    
    /* Secondary Colors - Deep Navy */
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;
    
    /* Semantic Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Inter', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1280px;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(46, 171, 111, 0.2);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    background-color: var(--gray-100);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

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

.section-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

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

.section-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 620px;
    line-height: 1.8;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header.left-aligned {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(46, 171, 111, 0.35), 0 0 30px rgba(46, 171, 111, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 171, 111, 0.5), 0 0 40px rgba(46, 171, 111, 0.3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: 0;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline span,
.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    border: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ================================================
   NAVIGATION
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
    width: 100%;
}

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

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

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

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

.navbar.scrolled .logo-img {
    height: 45px;
}

/* Logo Text Fallback */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}

.logo-accent {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
}

.navbar.scrolled .logo-name {
    color: var(--white);
}

.footer .logo-name {
    color: var(--white);
}

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

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

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: var(--transition);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
}

.nav-links a.active::before {
    opacity: 1;
    background: rgba(46, 171, 111, 0.15);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(46, 171, 111, 0.15), rgba(46, 171, 111, 0.08));
    border: 2px solid rgba(46, 171, 111, 0.3);
    border-radius: 12px;
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(46, 171, 111, 0.2);
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 171, 111, 0.2), rgba(46, 171, 111, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.mobile-menu-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(46, 171, 111, 0.3), rgba(46, 171, 111, 0.1));
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.mobile-menu-btn:active::after {
    opacity: 1;
    transform: scale(1.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, rgba(46, 171, 111, 0.25), rgba(46, 171, 111, 0.15));
    border-color: rgba(46, 171, 111, 0.5);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(46, 171, 111, 0.3);
}

.mobile-menu-btn:hover::before {
    opacity: 1;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--white), var(--primary-light));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn span:nth-child(1) {
    transform-origin: center;
}

.mobile-menu-btn span:nth-child(2) {
    transform-origin: center;
}

.mobile-menu-btn span:nth-child(3) {
    transform-origin: center;
}

.mobile-menu-btn.active {
    background: linear-gradient(135deg, rgba(46, 171, 111, 0.3), rgba(46, 171, 111, 0.2));
    border-color: rgba(46, 171, 111, 0.6);
    box-shadow: 0 8px 25px rgba(46, 171, 111, 0.4);
    transform: scale(1);
    animation: menuButtonPulse 2s ease-in-out infinite;
}

.mobile-menu-btn.active::before {
    opacity: 1;
}

@keyframes menuButtonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(46, 171, 111, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(46, 171, 111, 0.6);
    }
}

.mobile-menu-btn.active span {
    background: linear-gradient(90deg, var(--primary-light), var(--white));
    box-shadow: 0 2px 6px rgba(46, 171, 111, 0.4);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    width: 24px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px) scale(0);
    width: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 24px;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(46, 171, 111, 0.85) 100%);
    animation: heroGradientShift 15s ease infinite;
}

@keyframes heroGradientShift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(46, 171, 111, 0.85) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(46, 171, 111, 0.85) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(15, 23, 42, 0.98) 100%);
    }
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    animation: heroImageFloat 20s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.05) translateY(-10px);
        opacity: 0.25;
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 171, 111, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(46, 171, 111, 0.15) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
}

/* Floating particles effect */
.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 171, 111, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: floatParticle1 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
    animation: floatParticle2 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes floatParticle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.4;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.2;
    }
}

@keyframes floatParticle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-40px, 40px) scale(1.2);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content > * {
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

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

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.08));
    border: 1px solid rgba(212, 168, 83, 0.4);
    border-radius: var(--radius-xl);
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 800px;
    line-height: 1.05;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(46, 171, 111, 0.2);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), transparent);
    border-radius: 2px;
    animation: titleUnderline 1s ease forwards 0.8s;
    opacity: 0;
}

@keyframes titleUnderline {
    to {
        opacity: 1;
        width: 200px;
    }
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-light), var(--gold-light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 48px;
    line-height: 1.9;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding: 36px 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: fit-content;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 171, 111, 0.1), transparent);
    animation: statsShimmer 4s infinite;
}

@keyframes statsShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--gold-light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: statGradientShift 4s ease infinite;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(46, 171, 111, 0.3);
    position: relative;
}

@keyframes statGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ================================================
   CATEGORIES SECTION
   ================================================ */

.categories {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.category-card {
    position: relative;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.category-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.category-link i {
    transition: var(--transition);
}

.category-link:hover i {
    transform: translateX(5px);
}

/* ================================================
   FEATURED PROPERTIES
   ================================================ */

.featured {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

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

.property-section {
    padding: 60px 0;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.property-image {
    position: relative;
    height: 260px;
    background: var(--gray-200);
    overflow: hidden;
}

.property-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.6) 100%);
    opacity: 0;
    transition: var(--transition);
}

.property-card:hover .property-image::after {
    opacity: 1;
}

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

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    color: var(--gray-400);
    font-size: 48px;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    color: var(--white);
    z-index: 1;
}

.property-badge.plot { background: linear-gradient(135deg, #8B4513, #A0522D); }
.property-badge.apartment { background: linear-gradient(135deg, #2196F3, #1976D2); }
.property-badge.villa { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }

.property-badge.featured {
    position: absolute;
    top: 0;
    right: 20px;
    left: auto;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 8px 12px 12px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.property-badge.featured::before {
    content: '★';
    margin-right: 4px;
}

.property-content {
    padding: 28px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.property-title {
    font-size: 20px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark);
}

.property-title .title-number {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 0 2px;
    position: relative;
    text-shadow: 0 2px 4px rgba(46, 171, 111, 0.2);
}

.property-title .title-number::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
    border-radius: 2px;
}

.property-id-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Courier New', 'Monaco', monospace;
    letter-spacing: 0.8px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(26, 26, 46, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.property-id-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.35);
    background: linear-gradient(135deg, #16213e, #1a1a2e);
}

.property-id-tag i {
    font-size: 11px;
    opacity: 0.9;
    color: var(--primary-light);
}

.property-id-tag .id-number {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(46, 171, 111, 0.3);
    font-family: 'Courier New', 'Monaco', monospace;
    color: #ffffff;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.property-location i {
    color: var(--primary);
    font-size: 12px;
}

.property-details {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.property-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 1px;
    line-height: 1.2;
    position: relative;
}

.property-price .rupee-symbol {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    opacity: 1;
    margin-right: 2px;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(46, 171, 111, 0.25);
    position: relative;
    top: 0;
    line-height: 1;
    vertical-align: baseline;
}

.property-price .price-amount {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(46, 171, 111, 0.2);
    position: relative;
    line-height: 1;
    vertical-align: baseline;
    margin-right: 0;
}

.property-price .price-amount::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.property-price .price-unit {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    margin-left: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    opacity: 0.85;
    position: relative;
    top: 1px;
}

.property-price .price-slash {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-600);
    margin-left: 0;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
    position: relative;
    top: 0;
}

.btn-enquiry {
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 171, 111, 0.35);
}

.no-properties {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.no-properties i {
    font-size: 48px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.no-properties p {
    color: var(--gray-600);
}

.featured-cta {
    text-align: center;
    margin-top: 50px;
}

/* ================================================
   WHY CHOOSE US
   ================================================ */

.why-us {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.why-us-content .section-title {
    font-size: 36px;
    margin-bottom: 24px;
}

.why-us-content > p {
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 171, 111, 0.1), rgba(46, 171, 111, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(46, 171, 111, 0.2);
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.why-us-image {
    position: relative;
}

.why-us-image .image-frame {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.why-us-image .image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-slow);
}

.why-us-image:hover .image-frame img {
    transform: scale(1.03);
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.image-frame .image-placeholder {
    display: none;
}

.image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.image-placeholder i {
    font-size: 80px;
    color: var(--gray-400);
}

.image-placeholder.large {
    height: 450px;
}

.image-placeholder.large i {
    font-size: 100px;
    color: var(--primary);
    opacity: 0.5;
}

.floating-card {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

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

.floating-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.floating-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.floating-card-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.floating-card-text p {
    font-size: 12px;
    color: var(--gray-500);
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920') center/cover;
    opacity: 0.1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.15;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   SERVING AREAS SECTION
   ================================================ */

.serving-areas {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    position: relative;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 171, 111, 0.15);
    border-color: var(--primary);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.area-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(46, 171, 111, 0.3);
}

.area-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.area-list {
    margin-top: 10px;
}

.area-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-list li {
    position: relative;
    padding-left: 20px;
}

.area-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.area-list li:hover::before {
    transform: translateX(3px);
}

.area-list a {
    font-size: 15px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 6px 0;
    font-weight: 500;
    line-height: 1.5;
}

.area-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

.experience-badge span:last-child {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.highlight-item i {
    color: var(--primary);
    font-size: 16px;
}

/* ================================================
   MISSION & VISION
   ================================================ */

.mission-vision {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

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

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--white);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ================================================
   STATS SECTION
   ================================================ */

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.stat-card .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.stat-card .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    color: var(--white);
}

/* ================================================
   TEAM SECTION
   ================================================ */

.team-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.team-card {
    text-align: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.team-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-image .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
}

.team-image .image-placeholder i {
    font-size: 60px;
    color: var(--gray-400);
}

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

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

.team-info {
    padding: 24px;
}

.team-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.team-info span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ================================================
   CONTACT SECTION
   ================================================ */

.contact-section {
    padding: var(--section-padding) 0;
}

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

.contact-info .section-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-info > p {
    margin-bottom: 25px;
}

.contact-cards {
    display: grid;
    gap: 10px;
    margin-bottom: 25px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-details p,
.contact-details a {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

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

.contact-card h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.social-section {
    margin-top: 30px;
}

.social-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.social-links.large a {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.form-header {
    margin-bottom: 15px;
}

.form-header h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--dark);
}

.form-header p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 0;
}

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

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 171, 111, 0.1);
}

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

.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 171, 111, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

.map-section {
    height: 450px;
    background: var(--gray-200);
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: linear-gradient(180deg, var(--secondary), var(--dark));
    padding: 100px 0 0;
    color: var(--gray-400);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.footer-brand {
    padding-right: 40px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-logo .logo-img {
    height: 60px;
    background: white;
    padding: 10px 15px;
    border-radius: var(--radius-md);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.75);
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-contact li a {
    color: var(--gray-400);
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

.footer-contact i {
    color: var(--primary-light);
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 14px;
}

/* ================================================
   PAGE HEADERS
   ================================================ */

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920') center/cover;
    opacity: 0.15;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(46, 171, 111, 0.6));
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-content {
    text-align: center;
}

.page-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-xl);
}

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--gray-400);
}

/* Area Filter Message */
.area-filter-message {
    margin: 30px auto;
    max-width: var(--container-width);
    padding: 0 24px;
    animation: slideDown 0.4s ease;
}

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

.area-filter-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(46, 171, 111, 0.1), rgba(46, 171, 111, 0.05));
    border: 2px solid rgba(46, 171, 111, 0.2);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--dark);
}

.area-filter-content i {
    color: var(--primary);
    font-size: 18px;
}

.area-filter-content strong {
    color: var(--primary);
    font-weight: 700;
}

.clear-filter-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.clear-filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 171, 111, 0.3);
}

/* No Properties Message for Area */
.no-properties-area {
    margin: 40px 0;
    text-align: center;
    padding: 60px 24px;
}

.no-properties-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-properties-content i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.no-properties-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.no-properties-content p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.6;
}

.no-properties-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.no-properties-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Property Tabs */
.property-tabs {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
}

.tab-btn {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-600);
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(46, 171, 111, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

/* ================================================
   MODAL
   ================================================ */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.modal-content > p {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
}

/* Enquiry Property Info */
.enquiry-property-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.enquiry-property-info p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.enquiry-prop-id-display {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

#enquiry-form .form-group {
    margin-bottom: 16px;
}

#enquiry-form input,
#enquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

#enquiry-form input:focus,
#enquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3000;
    box-shadow: var(--shadow-lg);
    transform: translateX(150%);
    transition: var(--transition);
}

.notification.show {
    transform: translateX(0);
}

.notification i {
    font-size: 22px;
    color: var(--primary-light);
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .category-grid,
    .property-grid,
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-image .image-frame {
        min-height: 350px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================
   WHATSAPP CONFIRMATION MODAL
   ================================================ */

.whatsapp-modal {
    z-index: 10000;
}

.whatsapp-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.whatsapp-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 40px 35px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: whatsappModalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
}

@keyframes whatsappModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-icon-circle i {
    font-size: 50px;
    color: var(--white);
    z-index: 2;
}

.success-check {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(46, 171, 111, 0.4);
    animation: checkBounce 0.6s ease-out 0.3s both;
    border: 3px solid var(--white);
}

@keyframes checkBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.success-check i {
    font-size: 20px;
    color: var(--white);
}

.whatsapp-modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.whatsapp-modal-message {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 30px;
    line-height: 1.6;
}

.whatsapp-connect-box {
    background: linear-gradient(135deg, rgba(46, 171, 111, 0.05), rgba(46, 171, 111, 0.02));
    border: 2px solid rgba(46, 171, 111, 0.15);
    border-radius: 16px;
    padding: 25px 20px;
    margin-bottom: 30px;
}

.whatsapp-connect-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.whatsapp-benefits {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 100px;
}

.benefit-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 5px;
}

.benefit-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
}

.whatsapp-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-whatsapp-yes {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-whatsapp-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2ee577, #1ba085);
}

.btn-whatsapp-yes:active {
    transform: translateY(0);
}

.btn-whatsapp-yes i {
    font-size: 20px;
}

.btn-whatsapp-no {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-300);
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-whatsapp-no:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .navbar.scrolled {
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    /* Override desktop nav-links styles */
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
        z-index: 9999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(-5px);
        position: relative;
        z-index: 2;
    }
    
    .nav-links.active li {
        animation: menuItemSlideDown 0.3s ease forwards;
    }
    
    .nav-links.active li:nth-child(1) {
        animation-delay: 0.05s;
    }
    
    .nav-links.active li:nth-child(2) {
        animation-delay: 0.1s;
    }
    
    .nav-links.active li:nth-child(3) {
        animation-delay: 0.15s;
    }
    
    .nav-links.active li:nth-child(4) {
        animation-delay: 0.2s;
    }
    
    @keyframes menuItemSlideDown {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links a {
        color: var(--white);
        padding: 14px 20px;
        margin: 4px 10px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-transform: none;
        letter-spacing: 0.3px;
        z-index: 3;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        border-radius: 0 4px 4px 0;
        transition: height 0.3s ease;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(46, 171, 111, 0.15), rgba(46, 171, 111, 0.05));
        border-radius: 12px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--white);
        background: rgba(46, 171, 111, 0.25);
        border-color: rgba(46, 171, 111, 0.4);
        transform: translateX(3px);
        box-shadow: 0 2px 10px rgba(46, 171, 111, 0.3);
    }
    
    .nav-links a:hover::before,
    .nav-links a.active::before {
        height: 60%;
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
        opacity: 1;
    }
    
    .nav-links a i {
        font-size: 18px;
        width: 24px;
        text-align: center;
        color: var(--primary-light);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover i,
    .nav-links a.active i {
        color: var(--primary-light);
        transform: scale(1.2);
    }
    
    .nav-links a:last-child {
        margin-bottom: 20px;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        z-index: 10000;
        position: relative;
        width: 44px;
        height: 44px;
        pointer-events: auto;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-btn.active {
        position: relative;
        background: linear-gradient(135deg, rgba(46, 171, 111, 0.35), rgba(46, 171, 111, 0.25));
        border-color: rgba(46, 171, 111, 0.7);
        box-shadow: 0 8px 30px rgba(46, 171, 111, 0.5);
        z-index: 10000;
        transform: scale(1);
        pointer-events: auto;
    }
    
    .mobile-menu-btn.active span {
        background: linear-gradient(90deg, var(--primary-light), var(--white));
        box-shadow: 0 2px 8px rgba(46, 171, 111, 0.5);
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2.5px;
        pointer-events: none;
    }
    
    .mobile-menu-btn.active span:nth-child(1),
    .mobile-menu-btn.active span:nth-child(3) {
        width: 22px;
    }
    
    .navbar {
        z-index: 1000;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-tagline {
        font-size: 11px;
        padding: 8px 14px;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
        padding: 20px;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .category-grid,
    .property-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 24px;
    }
    
    .property-image {
        height: 200px;
    }
    
    .property-content {
        padding: 18px;
    }
    
    .property-title {
        font-size: 18px;
    }
    
    .property-price {
        font-size: 20px;
    }
    
    .team-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tabs-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        white-space: nowrap;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .property-tabs {
        padding: 20px 0;
        top: 60px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .section-header.left-aligned {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-form-wrapper {
        padding: 24px 18px;
    }
    
    .form-header {
        margin-bottom: 18px;
    }
    
    .form-header h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form .form-group {
        margin-bottom: 10px;
    }
    
    .contact-form label {
        margin-bottom: 5px;
    }
    
    .form-header {
        margin-bottom: 12px;
    }
    
    .form-header h3 {
        margin-bottom: 4px;
    }
    
    .contact-card {
        padding: 10px;
        gap: 10px;
    }
    
    .contact-cards {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .contact-info > p {
        margin-bottom: 20px;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .map-section {
        height: 300px;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        left: 15px;
        bottom: -15px;
        padding: 14px 18px;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        right: 10px;
        bottom: -15px;
    }
    
    .exp-number {
        font-size: 28px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .area-card {
        padding: 20px 18px;
    }
    
    .area-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .area-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .area-header h3 {
        font-size: 20px;
    }
    
    .area-list ul {
        gap: 8px;
    }
    
    .area-list a {
        font-size: 14px;
        padding: 5px 0;
    }
    
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        padding: 20px;
        border-radius: var(--radius-md);
    }
    
    .area-filter-content {
        flex-wrap: wrap;
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .area-filter-content i {
        font-size: 16px;
    }
    
    .clear-filter-btn {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .no-properties-area {
        margin: 30px 0;
        padding: 40px 20px;
    }
    
    .no-properties-content i {
        font-size: 48px;
        margin-bottom: 16px;
    }
    
    .no-properties-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .no-properties-content p {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 85px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .area-card {
        padding: 18px 15px;
    }
    
    .area-header {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .area-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .area-header h3 {
        font-size: 18px;
    }
    
    .area-list ul {
        gap: 8px;
    }
    
    .area-list a {
        font-size: 13px;
        padding: 4px 0;
    }
    
    .category-card {
        padding: 24px 20px;
    }
    
    .property-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .property-price {
        font-size: 20px;
    }
    
    .property-price .rupee-symbol {
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        top: 0;
        line-height: 1;
        vertical-align: baseline;
    }
    
    .property-price .price-amount {
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.2px;
        line-height: 1;
        vertical-align: baseline;
        margin-right: 0;
    }
    
    .property-price .price-unit {
        font-size: 12px;
        letter-spacing: 0.8px;
        margin-left: 1px;
        top: 1px;
    }
    
    .property-price .price-slash {
        font-size: 14px;
        margin-left: 0;
    }
    
    .property-id-tag {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .property-id-tag .id-number {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .property-title {
        font-size: 18px;
    }
    
    .property-title .title-number {
        font-size: 18px;
        letter-spacing: 0.6px;
    }
    
    .btn-enquiry {
        width: 100%;
        justify-content: center;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .footer-logo .logo-img {
        height: 50px;
    }
    
    /* WhatsApp Modal Mobile Styles */
    .whatsapp-modal-content {
        padding: 30px 20px;
        max-width: 95%;
        border-radius: 20px;
    }
    
    .whatsapp-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-icon-circle i {
        font-size: 40px;
    }
    
    .success-check {
        width: 35px;
        height: 35px;
        top: -3px;
        right: -3px;
    }
    
    .success-check i {
        font-size: 18px;
    }
    
    .whatsapp-modal-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .whatsapp-modal-message {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .whatsapp-connect-box {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .whatsapp-connect-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .whatsapp-benefits {
        gap: 10px;
    }
    
    .benefit-item {
        min-width: 80px;
    }
    
    .benefit-item i {
        font-size: 20px;
    }
    
    .benefit-item span {
        font-size: 12px;
    }
    
    .btn-whatsapp-yes {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .btn-whatsapp-no {
        padding: 12px 25px;
        font-size: 14px;
    }
}
