/* 🎨 Manchanda Realtors - Ultra Modern Design System */
/* 100x Better Design with Advanced Responsive Layout */

:root {
    --primary-blue: #2563EB;
    --light-blue: #3B82F6;
    --sky-blue: #60A5FA;
    --dark-blue: #1E40AF;
    --saffron: #FF9933;
    --saffron-light: #FFB366;
    --saffron-dark: #E67300;
    --light-bg: #EFF6FF;
    --white: #FFFFFF;
    --dark-text: #1E293B;
    --gray-text: #64748B;
    --shadow-sm: 0 2px 8px rgba(37,99,235,0.08);
    --shadow-md: 0 8px 30px rgba(37,99,235,0.12);
    --shadow-lg: 0 20px 60px rgba(37,99,235,0.15);
    --shadow-xl: 0 30px 80px rgba(37,99,235,0.2);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ========== NAVBAR - ULTRA MODERN ========== */
.navbar {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%) !important;
    box-shadow: 0 4px 30px rgba(37,99,235,0.25) !important;
    backdrop-filter: blur(20px);
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    border-bottom: 2px solid rgba(255,153,51,0.2);
}

.nav-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 90px !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
}

.logo:hover {
    transform: scale(1.05) !important;
}

.logo-img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 16px !important;
    object-fit: cover !important;
    box-shadow: 0 4px 20px rgba(255,153,51,0.3) !important;
    border: 3px solid rgba(255,153,51,0.3) !important;
    transition: var(--transition) !important;
}

.logo:hover .logo-img {
    box-shadow: 0 8px 30px rgba(255,153,51,0.5) !important;
    border-color: var(--saffron) !important;
}

.logo-text h1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: white !important;
    margin: 0 !important;
    letter-spacing: -0.5px !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    line-height: 1.2 !important;
}

.logo-text p {
    color: var(--saffron) !important;
    letter-spacing: 3px !important;
    text-shadow: 0 2px 8px rgba(255,153,51,0.4) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-top: 4px !important;
}

.nav-links {
    display: flex !important;
    list-style: none !important;
    gap: 40px !important;
    align-items: center !important;
}

.nav-links a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: var(--transition) !important;
    position: relative !important;
    padding: 8px 0 !important;
}

.nav-links a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--saffron), var(--saffron-light)) !important;
    transition: width 0.3s ease !important;
    border-radius: 2px !important;
}

.nav-links a:hover {
    color: var(--saffron) !important;
    transform: translateY(-2px) !important;
}

.nav-links a:hover::after {
    width: 100% !important;
}

.nav-btn {
    background: linear-gradient(135deg, #FF9933, #FFB366) !important;
    box-shadow: 0 6px 20px rgba(255,153,51,0.4) !important;
    transition: var(--transition) !important;
    padding: 14px 32px !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: white !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #E67300, #FF9933) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(255,153,51,0.6) !important;
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none !important;
    flex-direction: column !important;
    gap: 6px !important;
    cursor: pointer !important;
    padding: 10px !important;
    z-index: 10001 !important;
}

.hamburger span {
    width: 28px !important;
    height: 3px !important;
    background: white !important;
    border-radius: 3px !important;
    transition: 0.3s !important;
}

.hamburger:hover span {
    background: var(--saffron) !important;
}

/* ========== MOBILE MENU - ENHANCED ========== */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 320px !important;
    height: 100vh !important;
    background: linear-gradient(180deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%) !important;
    box-shadow: 4px 0 40px rgba(0,0,0,0.4) !important;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    z-index: 10000 !important;
    overflow-y: auto !important;
    padding: 80px 0 30px !important;
}

.mobile-menu.active {
    left: 0 !important;
}

.mobile-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    font-size: 40px !important;
    color: white !important;
    cursor: pointer !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,153,51,0.2) !important;
    border-radius: 50% !important;
    transition: 0.3s !important;
}

.mobile-close:hover {
    background: var(--saffron) !important;
    transform: rotate(90deg) !important;
}

.mobile-menu ul {
    list-style: none !important;
    padding: 0 20px !important;
}

.mobile-menu ul li {
    margin-bottom: 8px !important;
}

.mobile-menu ul li a {
    display: block !important;
    padding: 16px 20px !important;
    color: white !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    transition: 0.3s !important;
    background: rgba(255,255,255,0.05) !important;
}

.mobile-menu ul li a:hover {
    background: rgba(255,153,51,0.2) !important;
    color: var(--saffron) !important;
    padding-left: 30px !important;
    transform: translateX(5px) !important;
}

.overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.7) !important;
    backdrop-filter: blur(5px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: 0.3s !important;
    z-index: 9999 !important;
}

.overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ========== PAGE HEADERS - STUNNING ========== */
.page-header {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%) !important;
    padding: 120px 20px 80px !important;
    position: relative;
    overflow: hidden;
    text-align: center !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,153,51,0.1), transparent 50%);
}

.page-header h1 {
    font-size: 56px !important;
    font-weight: 900 !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    letter-spacing: -1px !important;
    margin-bottom: 16px !important;
    position: relative !important;
    z-index: 1 !important;
    color: white !important;
    animation: fadeInUp 0.8s ease-out !important;
}

.page-header p {
    font-size: 20px !important;
    color: rgba(255,255,255,0.9) !important;
    position: relative !important;
    z-index: 1 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    animation: fadeInUp 1s ease-out !important;
}

.breadcrumb {
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px !important;
    margin-top: 20px !important;
    position: relative !important;
    z-index: 1 !important;
}

.breadcrumb a {
    color: var(--saffron) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: 0.3s !important;
}

.breadcrumb a:hover {
    color: var(--saffron-light) !important;
    text-decoration: underline !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== BUTTONS - PREMIUM ========== */
.btn-primary, .add-btn, .filter-btn, .submit-btn, .cta-btn, .login-btn, .view-btn, .view-details-btn, .project-btn, .apply-btn {
    background: linear-gradient(135deg, #FF9933, #FFB366) !important;
    box-shadow: 0 8px 25px rgba(255,153,51,0.4) !important;
    transition: var(--transition) !important;
    border: none !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    color: white !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary::before, .submit-btn::before, .cta-btn::before, .login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .submit-btn:hover::before, .cta-btn:hover::before, .login-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover, .add-btn:hover, .filter-btn:hover, .submit-btn:hover, .cta-btn:hover, .login-btn:hover, .view-btn:hover, .view-details-btn:hover, .project-btn:hover, .apply-btn:hover {
    background: linear-gradient(135deg, #E67300, #FF9933) !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,153,51,0.6) !important;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02) !important;
}

/* ========== CARDS - ULTRA 3D EFFECT ========== */
.property-card, .service-card, .stat-card, .testimonial-card, .blog-card, .project-card, .location-card, .value-card, .why-card, .team-member {
    background: white !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px rgba(37,99,235,0.08) !important;
    border: 1px solid rgba(37,99,235,0.08) !important;
    transition: var(--transition) !important;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden !important;
}

.property-card::before, .service-card::before, .blog-card::before, .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563EB, #60A5FA, #2563EB);
    background-size: 200% 100%;
    border-radius: 24px 24px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.property-card:hover::before, .service-card:hover::before, .blog-card:hover::before, .project-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.property-card::after, .service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(37,99,235,0.05), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.property-card:hover::after, .service-card:hover::after {
    width: 500px;
    height: 500px;
}

.property-card:hover, .service-card:hover, .stat-card:hover, .testimonial-card:hover, .blog-card:hover, .project-card:hover, .value-card:hover {
    transform: translateY(-20px) rotateX(3deg) scale(1.02) !important;
    box-shadow: 0 30px 80px rgba(37,99,235,0.25) !important;
    border-color: rgba(37,99,235,0.2) !important;
}

.property-card:hover {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(-20px) rotateX(3deg); }
    50% { transform: translateY(-25px) rotateX(3deg); }
}

/* Card Content Positioning */
.property-content, .service-card > *, .blog-card > * {
    position: relative;
    z-index: 1;
}

/* ========== PROPERTY CARDS - ENHANCED ========== */
.property-price {
    color: var(--saffron) !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 12px rgba(255,153,51,0.3);
    background: linear-gradient(135deg, #FF9933, #FFB366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px !important;
}

.property-img {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 24px 24px 0 0 !important;
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
}

.property-card:hover .property-img {
    transform: scale(1.12) rotate(1deg) !important;
}

.property-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    margin-bottom: 12px !important;
    transition: 0.3s !important;
}

.property-card:hover .property-title {
    color: var(--saffron) !important;
}

.property-location {
    color: var(--gray-text) !important;
    font-size: 15px !important;
    margin-bottom: 16px !important;
    font-weight: 500 !important;
}

.property-specs {
    display: flex !important;
    gap: 16px !important;
    padding-top: 16px !important;
    border-top: 2px solid #EFF6FF !important;
    font-size: 14px !important;
    color: var(--gray-text) !important;
    font-weight: 600 !important;
}

.property-specs span {
    transition: 0.3s !important;
}

.property-card:hover .property-specs span {
    color: var(--primary-blue) !important;
    transform: translateY(-2px) !important;
}

/* ========== SECTION TITLES - STUNNING ========== */
.section-title, h1, h2, h3 {
    color: var(--primary-blue) !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
    position: relative !important;
    display: inline-block !important;
}

.section-title {
    font-size: 48px !important;
    margin-bottom: 20px !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
    border-radius: 3px;
}

.section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.section-header p {
    font-size: 18px !important;
    color: var(--gray-text) !important;
    max-width: 700px !important;
    margin: 20px auto 0 !important;
    line-height: 1.8 !important;
}

/* ========== STATS - PREMIUM ========== */
.stat-number {
    background: linear-gradient(135deg, #2563EB, #60A5FA) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 56px !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.stat-card {
    text-align: center !important;
    padding: 48px 32px !important;
    transition: var(--transition) !important;
}

.stat-card:hover .stat-number {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-icon {
    font-size: 56px !important;
    margin-bottom: 20px !important;
    filter: drop-shadow(0 4px 12px rgba(37,99,235,0.3));
    transition: 0.4s !important;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg) !important;
}

.stat-label {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--gray-text) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* ========== SERVICE CARDS - ENHANCED ========== */
.service-icon {
    font-size: 72px !important;
    filter: drop-shadow(0 6px 20px rgba(37,99,235,0.25));
    transition: var(--transition) !important;
    display: inline-block !important;
    margin-bottom: 24px !important;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg) !important;
    filter: drop-shadow(0 10px 30px rgba(255,153,51,0.4));
}

.service-card {
    padding: 48px 36px !important;
    text-align: center !important;
}

.service-card h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    margin-bottom: 16px !important;
    transition: 0.3s !important;
}

.service-card:hover h3 {
    color: var(--saffron) !important;
}

.service-card p {
    color: var(--gray-text) !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%) !important;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9933, #FFB366, #FF9933);
}

.footer h3 {
    color: var(--saffron) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--saffron) !important;
    padding-left: 8px;
}

/* ========== FLOATING BUTTONS ========== */
.call-btn {
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
    box-shadow: 0 6px 20px rgba(37,99,235,0.4) !important;
}

.call-btn:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 10px 30px rgba(37,99,235,0.5) !important;
}

.whatsapp-btn:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5) !important;
}

/* ========== FORMS ========== */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--saffron) !important;
    box-shadow: 0 0 0 3px rgba(255,153,51,0.1) !important;
    transform: translateY(-2px);
}

.form-card {
    box-shadow: 0 15px 50px rgba(37,99,235,0.15) !important;
    border-radius: 24px !important;
}

/* ========== BACKGROUNDS ========== */
.stats, .locations-section {
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%) !important;
}

.services-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%) !important;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: linear-gradient(135deg, #EFF6FF, #FFFFFF) !important;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(37,99,235,0.1);
    font-family: Georgia, serif;
}

.author-img {
    border: 3px solid #EFF6FF !important;
    box-shadow: 0 4px 15px rgba(37,99,235,0.2) !important;
}

/* ========== BLOG CARDS ========== */
.blog-title {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
}

.read-more {
    color: var(--saffron) !important;
    font-weight: 700 !important;
}

/* ========== PROJECT CARDS ========== */
.project-title {
    color: var(--primary-blue) !important;
}

.project-price {
    color: var(--saffron) !important;
    font-weight: 800 !important;
}

.project-badge {
    background: var(--saffron) !important;
    box-shadow: 0 2px 8px rgba(255,153,51,0.3);
}

/* ========== INTEREST RATE ========== */
.interest-rate {
    color: var(--saffron) !important;
    font-weight: 800 !important;
}

/* ========== WHY CHOOSE ========== */
.why-icon {
    background: rgba(255,153,51,0.2) !important;
    border: 3px solid rgba(255,153,51,0.4) !important;
    box-shadow: 0 10px 30px rgba(255,153,51,0.2) !important;
    transition: all 0.4s ease !important;
}

.why-card:hover .why-icon {
    transform: rotate(360deg) scale(1.15) !important;
    background: rgba(255,153,51,0.3) !important;
}

.why-card h3 {
    color: var(--saffron) !important;
}

/* ========== RESPONSIVE - MOBILE FIRST ========== */

/* Tablet Portrait (768px - 1024px) */
@media (max-width: 1024px) {
    .nav-links {
        display: none !important;
    }
    
    .nav-btn {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .properties-grid, .services-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .why-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    /* Force single column on mobile */
    .properties-grid, 
    .services-grid, 
    .blog-grid, 
    .testimonials-grid, 
    .locations-grid, 
    .why-grid, 
    .values-grid, 
    .team-grid,
    .stats-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        display: grid !important;
    }
    
    /* Navbar */
    .nav-container {
        padding: 14px 16px !important;
        min-height: 75px !important;
    }
    
    .logo-img {
        width: 65px !important;
        height: 65px !important;
    }
    
    .logo-text h1 {
        font-size: 19px !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;
    }
    
    .logo-text p {
        font-size: 11px !important;
        letter-spacing: 2px !important;
        margin-top: 2px !important;
    }
    
    /* Page Header */
    .page-header {
        padding: 80px 16px 40px !important;
    }
    
    .page-header h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .page-header p {
        font-size: 14px !important;
    }
    
    /* Sections */
    section {
        padding: 60px 16px !important;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    .section-title::after {
        width: 60px !important;
        height: 4px !important;
    }
    
    .section-header p {
        font-size: 14px !important;
    }
    
    /* Grids - All Single Column */
    .properties-grid, 
    .services-grid, 
    .blog-grid, 
    .testimonials-grid, 
    .locations-grid, 
    .why-grid, 
    .values-grid, 
    .team-grid,
    .stats-grid,
    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }
    
    /* Cards */
    .property-card, .service-card, .blog-card, .value-card {
        border-radius: 16px !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .property-img {
        height: 200px !important;
        border-radius: 16px 16px 0 0 !important;
    }
    
    .property-content {
        padding: 16px !important;
    }
    
    .property-price {
        font-size: 22px !important;
    }
    
    .property-title {
        font-size: 16px !important;
    }
    
    .property-specs {
        font-size: 12px !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    
    .property-specs span {
        flex: 0 0 auto !important;
    }
    
    /* Service Cards */
    .service-card {
        padding: 28px 20px !important;
    }
    
    .service-icon {
        font-size: 48px !important;
    }
    
    .service-card h3 {
        font-size: 18px !important;
    }
    
    /* Stats */
    .stat-card {
        padding: 28px 20px !important;
    }
    
    .stat-number {
        font-size: 36px !important;
    }
    
    .stat-icon {
        font-size: 40px !important;
    }
    
    .stat-label {
        font-size: 14px !important;
    }
    
    /* Buttons */
    .btn-primary, .submit-btn, .cta-btn, .filter-btn, .view-details-btn {
        padding: 12px 20px !important;
        font-size: 13px !important;
        width: 100% !important;
    }
    
    /* Filters */
    .filters-section {
        padding: 16px !important;
        top: 70px !important;
    }
    
    .filters-container {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .filter-item {
        width: 100% !important;
        min-width: 100% !important;
    }
    
    .filter-item label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    
    .filter-item input,
    .filter-item select {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
    
    /* Forms */
    .form-card {
        padding: 24px 16px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
    
    /* Footer */
    .footer {
        padding: 60px 16px 20px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    .footer h3 {
        font-size: 18px !important;
    }
    
    /* Floating Buttons */
    .floating-buttons {
        bottom: 20px !important;
        right: 16px !important;
        gap: 12px !important;
    }
    
    .float-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    
    /* Location Cards */
    .location-card {
        height: 220px !important;
    }
    
    /* Why Icons */
    .why-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 32px !important;
    }
    
    .why-card h3 {
        font-size: 20px !important;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 24px 16px !important;
    }
    
    .testimonial-card::before {
        font-size: 60px !important;
    }
    
    /* About/Story Grid */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    /* Container */
    .container {
        padding: 0 16px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Section padding */
    section {
        padding: 60px 16px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    /* Force everything to single column */
    .properties-grid, 
    .services-grid, 
    .blog-grid, 
    .testimonials-grid, 
    .locations-grid, 
    .why-grid, 
    .values-grid, 
    .team-grid,
    .stats-grid,
    .story-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .logo-img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .logo-text h1 {
        font-size: 17px !important;
        font-weight: 800 !important;
    }
    
    .logo-text p {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
    }
    
    .page-header {
        padding: 70px 12px 30px !important;
    }
    
    .page-header h1 {
        font-size: 24px !important;
    }
    
    .page-header p {
        font-size: 13px !important;
    }
    
    .section-title {
        font-size: 22px !important;
    }
    
    .property-img {
        height: 180px !important;
    }
    
    .property-price {
        font-size: 20px !important;
    }
    
    .property-title {
        font-size: 15px !important;
    }
    
    .property-specs {
        font-size: 11px !important;
    }
    
    .mobile-menu {
        width: 85% !important;
        max-width: 300px !important;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
    
    .service-icon {
        font-size: 42px !important;
    }
    
    section {
        padding: 50px 12px !important;
    }
}

/* ========== SMOOTH ANIMATIONS ========== */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== GLASSMORPHISM ========== */
.glass-effect {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}



/* ========== CONTAINERS & SECTIONS ========== */
.container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
}

section {
    padding: 100px 20px !important;
}

/* ========== GRIDS - OPTIMIZED ========== */
.properties-grid, .services-grid, .blog-grid {
    display: grid !important;
    gap: 32px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* Desktop: 3 columns */
@media (min-width: 1025px) {
    .properties-grid, .services-grid, .blog-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Tablet: 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .properties-grid, .services-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .properties-grid, .services-grid, .blog-grid {
        grid-template-columns: 1fr !important;
    }
}

.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
}

.locations-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 28px !important;
}

.why-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
}

.values-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

.team-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
}

.story-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
}

/* ========== FLOATING BUTTONS - ENHANCED ========== */
.floating-buttons {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    z-index: 9998 !important;
}

.float-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3) !important;
    transition: var(--transition) !important;
    animation: pulse-ring 2s infinite !important;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37,99,235,0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,99,235,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,99,235,0);
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.whatsapp-btn:hover {
    transform: scale(1.2) rotate(10deg) !important;
    box-shadow: 0 10px 35px rgba(37,211,102,0.6) !important;
}

.call-btn {
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
}

.call-btn:hover {
    transform: scale(1.2) rotate(-10deg) !important;
    box-shadow: 0 10px 35px rgba(37,99,235,0.6) !important;
}

/* ========== FORMS - PREMIUM ========== */
.form-group {
    margin-bottom: 24px !important;
}

.form-group label {
    display: block !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: var(--dark-text) !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    transition: var(--transition) !important;
    font-family: 'Inter', sans-serif !important;
    background: white !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: var(--saffron) !important;
    box-shadow: 0 0 0 4px rgba(255,153,51,0.1) !important;
    transform: translateY(-2px) !important;
}

.form-group textarea {
    resize: vertical !important;
    min-height: 140px !important;
}

.form-card {
    background: white !important;
    padding: 48px !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(37,99,235,0.12) !important;
    border: 1px solid rgba(37,99,235,0.08) !important;
}

/* ========== BACKGROUNDS - GRADIENT ========== */
.stats, .locations-section {
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 50%, #EFF6FF 100%) !important;
}

.services-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 50%, #FFFFFF 100%) !important;
}

.about-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%) !important;
}

/* ========== TESTIMONIALS - ENHANCED ========== */
.testimonial-card {
    background: linear-gradient(135deg, #EFF6FF, #FFFFFF) !important;
    padding: 40px !important;
    position: relative !important;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: rgba(37,99,235,0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.author-img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    border: 4px solid #EFF6FF !important;
    box-shadow: 0 6px 20px rgba(37,99,235,0.2) !important;
    object-fit: cover !important;
}

.testimonial-text {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: var(--gray-text) !important;
    margin-bottom: 24px !important;
    position: relative !important;
    z-index: 1 !important;
}

.author-name {
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    font-size: 18px !important;
}

.author-role {
    color: var(--gray-text) !important;
    font-size: 14px !important;
}

/* ========== BLOG CARDS ========== */
.blog-title {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
    transition: 0.3s !important;
}

.blog-card:hover .blog-title {
    color: var(--saffron) !important;
}

.blog-excerpt {
    color: var(--gray-text) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

.blog-meta {
    display: flex !important;
    gap: 16px !important;
    font-size: 13px !important;
    color: var(--gray-text) !important;
    margin-bottom: 16px !important;
}

.read-more {
    color: var(--saffron) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: 0.3s !important;
}

.read-more:hover {
    gap: 12px !important;
    color: var(--saffron-dark) !important;
}

/* ========== PROJECT CARDS ========== */
.project-title {
    color: var(--primary-blue) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.project-price {
    color: var(--saffron) !important;
    font-weight: 900 !important;
    font-size: 28px !important;
    margin-bottom: 12px !important;
}

.project-badge {
    background: var(--saffron) !important;
    color: white !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px rgba(255,153,51,0.3);
    display: inline-block !important;
}

.project-status {
    font-size: 14px !important;
    color: var(--gray-text) !important;
    margin-top: 12px !important;
}

/* ========== LOCATION CARDS ========== */
.location-card {
    position: relative !important;
    height: 320px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.location-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.location-card:hover .location-img {
    transform: scale(1.15) rotate(2deg) !important;
}

.location-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.85)) !important;
    padding: 32px !important;
    color: white !important;
    transition: 0.4s !important;
}

.location-card:hover .location-overlay {
    background: linear-gradient(transparent, rgba(37,99,235,0.95)) !important;
    padding: 40px 32px !important;
}

.location-overlay h3 {
    font-size: 26px !important;
    margin-bottom: 8px !important;
    font-weight: 800 !important;
    color: white !important;
}

.location-overlay p {
    font-size: 15px !important;
    opacity: 0.95 !important;
    font-weight: 600 !important;
}

/* ========== WHY CHOOSE US ========== */
.why-icon {
    width: 100px !important;
    height: 100px !important;
    background: rgba(255,153,51,0.2) !important;
    border: 4px solid rgba(255,153,51,0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 48px !important;
    margin: 0 auto 28px !important;
    box-shadow: 0 12px 35px rgba(255,153,51,0.25) !important;
    transition: var(--transition) !important;
}

.why-card:hover .why-icon {
    transform: rotate(360deg) scale(1.2) !important;
    background: rgba(255,153,51,0.35) !important;
    border-color: var(--saffron) !important;
    box-shadow: 0 20px 50px rgba(255,153,51,0.4) !important;
}

.why-card h3 {
    color: var(--saffron) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 16px !important;
}

.why-card p {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.8 !important;
    font-size: 15px !important;
}

/* ========== FOOTER - PREMIUM ========== */
.footer {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%) !important;
    position: relative;
    padding: 80px 20px 30px !important;
    color: white !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF9933, #FFB366, #FF9933);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.footer h3 {
    color: var(--saffron) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px !important;
    font-size: 20px !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
}

.footer-links li {
    margin-bottom: 12px !important;
}

.footer-links a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    transition: 0.3s !important;
    display: inline-block !important;
    font-size: 15px !important;
}

.footer-links a:hover {
    color: var(--saffron) !important;
    padding-left: 10px !important;
    transform: translateX(5px) !important;
}

.footer-bottom {
    text-align: center !important;
    padding-top: 30px !important;
    margin-top: 50px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.7) !important;
}

/* ========== INTEREST RATE ========== */
.interest-rate {
    color: var(--saffron) !important;
    font-weight: 800 !important;
    font-size: 24px !important;
}

/* ========== FILTERS ========== */
.filters-section {
    background: white !important;
    padding: 28px 20px !important;
    border-bottom: 2px solid #EFF6FF !important;
    position: sticky !important;
    top: 110px !important;
    z-index: 100 !important;
    box-shadow: 0 4px 20px rgba(37,99,235,0.08) !important;
}

.filters-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    align-items: flex-end !important;
}

.filter-item {
    flex: 1 !important;
    min-width: 200px !important;
}

.filter-item label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    color: var(--dark-text) !important;
}

.filter-item select,
.filter-item input {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    transition: 0.3s !important;
}

.filter-item select:focus,
.filter-item input:focus {
    border-color: var(--primary-blue) !important;
    outline: none !important;
}

/* ========== SMOOTH ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

/* ========== GLASSMORPHISM ========== */
.glass-effect {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
}

/* ========== LOADING ANIMATION ========== */
.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* ========== PRINT STYLES ========== */
@media print {
    .navbar, .floating-buttons, .mobile-menu, .hamburger {
        display: none !important;
    }
}


/* ========== BACK TO HOME BUTTON ========== */
.back-to-home {
    position: fixed !important;
    top: 100px !important;
    left: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #FF9933, #FFB366) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 24px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(255,153,51,0.4) !important;
    transition: all 0.3s ease !important;
    z-index: 9997 !important;
    cursor: pointer !important;
}

.back-to-home:hover {
    background: linear-gradient(135deg, #E67300, #FF9933) !important;
    transform: scale(1.1) translateX(-5px) !important;
    box-shadow: 0 10px 30px rgba(255,153,51,0.6) !important;
}

.back-to-home::before {
    content: '←' !important;
    font-size: 28px !important;
    font-weight: bold !important;
}

@media (max-width: 768px) {
    .back-to-home {
        top: 80px !important;
        left: 16px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
    }
    
    .back-to-home::before {
        font-size: 24px !important;
    }
}
