        /* --- FOOTER --- */

        .main-footer {
            background: var(--white);
            padding: 80px 5% 40px;
            border-top: 1px solid #f0f0f0;
            color: var(--moss);
        }
        

        /* --- GOOGLE REVIEWS LINK --- */
        /* --- ENHANCED GOOGLE REVIEW BADGE --- */
        .google-review-container {
            margin: 20px 0 25px 0;
        }

        .google-badge {
            display: flex;
            align-items: center;
            background: #050a1f; /* Deep Navy-Black Background */
            padding: 10px 18px;
            border-radius: 10px;
            text-decoration: none;
            transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: fit-content;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .google-badge:hover {
            background: #0a1128;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .google-icon-white-bg {
            background: #ffffff;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-right: 14px;
            flex-shrink: 0;
        }

        .google-icon-white-bg img {
            width: 24px;
            height: 24px;
        }

        .google-badge-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .small-label {
            color: #ffffff; /* Muted gray-blue */
            font-size: 0.7rem;
            font-weight: 400;
            margin-bottom: 2px;
        }

        .brand-label {
            color: #d4af37;
            font-size: 0.95rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
        }

        /* Responsive alignment for mobile */
        @media (max-width: 600px) {
            .google-review-container {
                display: flex;
                justify-content: center;
            }
            
            .brand-label {
                font-size: 0.85rem;
            }
        }
       
        /* Remove underline and keep text color same as normal text */
        .footer-col .contact-link {
            text-decoration: none;
            color: inherit;
        }

        .footer-col .contact-link:hover {
            color: #007BFF; 
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background: var(--gold);
        }

        .footer-about {
            font-size: 0.9rem;
            margin: 20px 0;
            opacity: 0.8;
            line-height: 1.8;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        
        .footer-col ul li a {
            text-decoration: none;
            color: var(--moss);
            font-size: 0.85rem;
            transition: 0.3s;
            opacity: 0.7;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            color: var(--rose);
            padding-left: 5px;
        }

        .footer-col p {
            font-size: 0.85rem;
            margin-bottom: 10px;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-socials a {
            color: var(--moss);
            margin-right: 15px;
            font-size: 1.7rem;
            transition: 0.3s;
        }

        .footer-socials a:hover { color: var(--gold); }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #f7f7f7;
            text-align: center;
            font-size: 0.8rem;
        }
        .logo-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--moss);
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 1px;
        }  
        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .main-footer { text-align: center; }
            .footer-col h4::after { left: 50%; transform: translateX(-50%); }
            .footer-col p { justify-content: center; }
        }
        
        @media (max-width: 768px) {
            nav { display: none; }
            .carousel-item { min-width: 85vw; height: 450px; }
        }

