   /* ================================================
           BLOG SINGLE POST - PREMIUM DESIGN
           Optimized for Readability & Conversions
        ================================================ */
        
        :root {
            --premium-gold: #d4af37;
            --premium-gold-light: #f4e7c3;
            --deep-navy: #0a1a2d;
            --charcoal: #1a2639;
            --slate: #2c3e50;
            --cream-white: #f9f7f2;
            --off-white: #f5f3ee;
            --border-light: rgba(10, 26, 45, 0.08);
            --shadow-subtle: 0 2px 8px rgba(10, 26, 45, 0.05);
            --shadow-medium: 0 8px 24px rgba(10, 26, 45, 0.1);
            --shadow-luxury: 0 16px 48px rgba(10, 26, 45, 0.15);
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .blog-single-page {
            background-color: var(--cream-white);
            color: var(--deep-navy);
            font-family: 'Jost', sans-serif;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Premium Header */
           /* Header & Navigation */
       /* Header & Navigation */
      header {
        background-color: transparent;
        position: fixed;
        width: 100%;
        z-index: 1000;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 500;
        /*color; #14c794;*/;
        color:white;
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: #00e6a4;
      }

      .logo i {
        margin-right: 8px;
        color: var(--emerald);
      }

      .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-links a:hover {
        color: var(--success-color);
      }

      .nav-links a.active {
        color:gold;
      }

      .nav-links a.active:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--blue);
      }

      .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
      }
        
        /* Article Hero */
        .article-hero {
            background: linear-gradient(135deg, rgba(10, 26, 45, 0.95), rgba(10, 26, 45, 0.85)),
                        url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 10rem 0 5rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .article-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .article-hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .article-category {
            display: inline-block;
            background: var(--premium-gold);
            color: var(--deep-navy);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            text-transform: uppercase;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }
        
        .article-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        
        .article-excerpt {
            font-size: 1.3rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .meta-item i {
            color: var(--premium-gold);
        }
        
        /* Main Content Layout */
        .article-main {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }
        
        @media (max-width: 1200px) {
            .article-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
        
        /* Article Content */
        .article-content {
            background: white;
            border-radius: 20px;
            padding: 4rem;
            box-shadow: var(--shadow-luxury);
            position: relative;
            overflow: hidden;
        }
        
        .article-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--premium-gold);
        }
        
        /* Typography */
        .article-content h2 {
            font-size: 2rem;
            color: var(--deep-navy);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--border-light);
            font-weight: 700;
            position: relative;
        }
        
        .article-content h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--premium-gold);
        }
        
        .article-content h3 {
            font-size: 1.5rem;
            color: var(--charcoal);
            margin: 2.5rem 0 1rem;
            font-weight: 600;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--slate);
        }
        
        .article-content ul, 
        .article-content ol {
            margin-bottom: 2rem;
            padding-left: 1.5rem;
        }
        
        .article-content li {
            margin-bottom: 0.75rem;
            color: var(--slate);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .article-content li strong {
            color: var(--deep-navy);
            font-weight: 600;
        }
        
        /* Premium Callout Boxes */
        .callout-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
            border-left: 4px solid var(--premium-gold);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 12px 12px 0;
        }
        
        .callout-box.warning {
            background: linear-gradient(135deg, rgba(255, 87, 51, 0.05), rgba(255, 87, 51, 0.02));
            border-left-color: #ff5733;
        }
        
        .callout-box.success {
            background: linear-gradient(135deg, rgba(0, 168, 107, 0.05), rgba(0, 168, 107, 0.02));
            border-left-color: #00a86b;
        }
        
        .callout-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--deep-navy);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .callout-title i {
            color: var(--premium-gold);
        }
        
        .callout-box.warning .callout-title i {
            color: #ff5733;
        }
        
        .callout-box.success .callout-title i {
            color: #00a86b;
        }
        
        /* Checklist */
        .checklist {
            margin: 2.5rem 0;
        }
        
        .checklist-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1.25rem;
            background: white;
            border-radius: 12px;
            border: 1px solid var(--border-light);
            transition: var(--transition-smooth);
        }
        
        .checklist-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-medium);
            border-color: var(--premium-gold);
        }
        
        .checklist-number {
            background: var(--premium-gold);
            color: var(--deep-navy);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }
        
        /* Sidebar */
        .article-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        /* Author Card */
        .author-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow-luxury);
            position: sticky;
            top: 120px;
        }
        
        .author-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 4px solid white;
            box-shadow: var(--shadow-medium);
        }
        
        .author-name {
            font-size: 1.4rem;
            color: var(--deep-navy);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        
        .author-title {
            color: var(--premium-gold);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        
        .author-bio {
            color: var(--slate);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        /* CTA Sidebar */
        .sidebar-cta {
            background: linear-gradient(135deg, var(--deep-navy), var(--charcoal));
            border-radius: 20px;
            padding: 2.5rem;
            color: white;
            text-align: center;
            box-shadow: var(--shadow-luxury);
        }
        
        .sidebar-cta h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .sidebar-cta p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .sidebar-cta .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--premium-gold);
            color: var(--deep-navy);
            padding: 0.9rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-smooth);
            width: 100%;
            justify-content: center;
        }
        
        .sidebar-cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
        }
        
        /* Table of Contents */
        .toc-widget {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-luxury);
        }
        
        .toc-title {
            font-size: 1.3rem;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .toc-title i {
            color: var(--premium-gold);
        }
        
        .toc-list {
            list-style: none;
        }
        
        .toc-list li {
            margin-bottom: 0.75rem;
        }
        
        .toc-list a {
            color: var(--slate);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-light);
            transition: var(--transition-smooth);
        }
        
        .toc-list a:hover {
            color: var(--premium-gold);
            padding-left: 5px;
        }
        
        .toc-list a::before {
            content: '•';
            color: var(--premium-gold);
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
            box-shadow: var(--shadow-luxury);
        }
        
        .faq-title {
            font-size: 2rem;
            color: var(--deep-navy);
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 700;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 1.5rem;
        }
        
        .faq-question {
            font-size: 1.2rem;
            color: var(--deep-navy);
            margin-bottom: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        
        .faq-question::before {
            content: 'Q';
            background: var(--premium-gold);
            color: var(--deep-navy);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        
        .faq-answer {
            color: var(--slate);
            line-height: 1.7;
            padding-left: 2.75rem;
        }
        
        /* Related Posts */
        .related-posts {
            margin-top: 5rem;
            padding: 0 2rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .related-title {
            font-size: 2rem;
            color: var(--deep-navy);
            margin-bottom: 2.5rem;
            text-align: center;
            font-weight: 700;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        @media (max-width: 992px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .related-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            transition: var(--transition-smooth);
        }
        
        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-luxury);
        }
        
        .related-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .related-card-content {
            padding: 1.5rem;
        }
        
        .related-card h4 {
            font-size: 1.2rem;
            color: var(--deep-navy);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, var(--deep-navy), var(--charcoal));
            border-radius: 20px;
            padding: 4rem;
            margin: 5rem 2rem;
            text-align: center;
            color: white;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: var(--shadow-luxury);
        }
        
        .newsletter-title {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .newsletter-desc {
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 1rem;
        }
        
        .newsletter-form input {
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .newsletter-form button {
            padding: 1rem 2rem;
            border-radius: 12px;
            background: var(--premium-gold);
            color: var(--deep-navy);
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        
        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .article-hero {
                padding: 7rem 0 3rem;
            }
            
            .article-title {
                font-size: 2.2rem;
            }
            
            .article-excerpt {
                font-size: 1.1rem;
            }
            
            .article-content {
                padding: 2rem;
            }
            
            .article-main {
                padding: 3rem 1.5rem;
            }
            
            .newsletter-section {
                padding: 2.5rem 1.5rem;
                margin: 3rem 1.5rem;
            }
            
            .newsletter-form {
                grid-template-columns: 1fr;
            }
            
            .faq-section {
                padding: 2rem;
            }
        }
        
        /* Print Styles */
        @media print {
            .article-sidebar,
            .related-posts,
            .newsletter-section {
                display: none;
            }
            
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            
            .article-content::before {
                display: none;
            }
        }
        /* ================================================
   PREMIUM FOOTER STYLING
   Luxury Real Estate Footer Design
================================================ */

/* Footer Base */
footer {
    background: black;
    color: white;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 1;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Footer Column */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: var(--text-xl);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 1.5px;
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 80px;
}

/* Company Description */
.footer-col:first-child p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: var(--text-base);
    max-width: 400px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: white;
    font-size: var(--text-lg);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i,
.social-links a img {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.social-links a:hover i,
.social-links a:hover img {
    color: var(--deep-navy);
    filter: brightness(0) saturate(100%) invert(8%) sepia(31%) saturate(1043%) hue-rotate(182deg) brightness(93%) contrast(93%);
}

.social-links a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 300;
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    color: var(--premium-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--premium-gold);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info i {
    color: var(--premium-gold);
    font-size: var(--text-lg);
    min-width: 24px;
    margin-top: 0.25rem;
    transition: var(--transition-smooth);
}

.contact-info li:hover i {
    transform: scale(1.1);
}

.contact-info div {
    flex: 1;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    font-size: var(--text-base);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--premium-gold);
    transition: width 0.3s ease;
}

.contact-info a:hover {
    color: var(--premium-gold);
}

.contact-info a:hover::after {
    width: 100%;
}

/* Address Link Styling */
.contact-info li:last-child a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-info li:last-child a:hover {
    color: var(--premium-gold);
}

.contact-info li:last-child a p {
    margin: 0;
    color: inherit;
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright p {
    margin: 0;
    line-height: 1.6;
}

.copyright a {
    color: var(--premium-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
    position: relative;
    padding: 0 0.5rem;
}

.copyright a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.5rem;
    width: 0;
    height: 1px;
    background: var(--premium-gold);
    transition: width 0.3s ease;
}

.copyright a:hover {
    color: white;
}

.copyright a:hover::after {
    width: calc(100% - 1rem);
}

/* Developer Credit */
.copyright > p:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: var(--text-sm);
}

.copyright > p:last-child span {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.copyright > p:last-child a {
    color: var(--premium-gold);
    font-weight: 600;
    position: relative;
    padding: 0 0.25rem;
}

.copyright > p:last-child a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.25rem;
    width: 0;
    height: 2px;
    background: var(--premium-gold);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.copyright > p:last-child a:hover {
    color: white;
}

.copyright > p:last-child a:hover::before {
    width: calc(100% - 0.5rem);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 
        0 16px 40px rgba(37, 211, 102, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.1);
    z-index: 999;
    transition: var(--transition-bounce);
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 
            0 16px 40px rgba(37, 211, 102, 0.4),
            0 0 0 3px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 
            0 20px 50px rgba(37, 211, 102, 0.6),
            0 0 0 3px rgba(255, 255, 255, 0.2);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 24px 60px rgba(37, 211, 102, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    animation: none;
}

.whatsapp-float i {
    transition: var(--transition-smooth);
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

/* Premium Scroll-to-Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 9rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--deep-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    z-index: 998;
    border: none;
    outline: none;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-grid {
        gap: 2.5rem;
    }
    
    .copyright {
        padding-top: 2rem;
    }
    
    .copyright > p:last-child {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .scroll-to-top {
        bottom: 7rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .footer-col h3 {
        font-size: var(--text-lg);
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: var(--text-base);
    }
    
    .social-links a img {
        width: 20px;
        height: 20px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    footer {
        background: var(--deep-navy);
    }
    
    .footer-col h3::after {
        background: var(--premium-gold);
    }
}

/* Print Styles */
@media print {
    footer {
        background: black !important;
        color: black !important;
        border-top: 3px solid var(--premium-gold);
    }
    
    .footer-col h3 {
        color: black !important;
    }
    
    .footer-links a,
    .contact-info a {
        color: black !important;
    }
    
    .social-links,
    .whatsapp-float {
        display: none !important;
    }
}
    /* Mobile Responsiveness */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .page-header {
                padding: 8rem 0 4rem;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
        }
     @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
                        .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: black;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                color: gold;
            }
            
            .header-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .header-btns .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .filters-container {
                grid-template-columns: 1fr;
            }
            
            .filter-btns {
                justify-content: center;
            }
            
            .property-ctas {
                flex-direction: column;
            }
            
            .trust-icons {
                gap: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            
            .page-header {
                padding: 7rem 0 3rem;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .properties-grid {
                grid-template-columns: 1fr;
            }
            
            .sold-properties-grid {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 1.5rem;
                right: 1.5rem;
            }
        }

        /* SHOW hamburger on mobile */
@media (max-width: 768px){
  .mobile-menu{
    display: block;
    color: black;          /* visible on dark hero */
    font-size: 1.7rem;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links{
    display: none;        /* hide desktop nav */
  }

  .nav-links.active{
    display: flex;        /* show when toggled */
  }
}
