 /* ================= FOOTER MAIN (LUXURY, SAME LOOK & FEEL) ================= */
        .footer {
            background: #0b0b08;   /* deep charcoal black luxury base */
            padding: 80px 8% 40px;
            font-family: 'Inter', sans-serif;
            border-top: 1px solid rgba(176, 138, 50, 0.25);
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 20px;
        }

        /* ===== LEFT COLUMN: BRAND LOGO | ATHENA LUXUS (exactly as requested) ===== */
        .footer-brand {
            position: relative;
        }
        
        /* Horizontal layout: logo on left, text on right with perfect alignment */
        .brand-row {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 15px;
            flex-wrap: nowrap;
        }
        
        .brand-logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            line-height: 0;
        }
        
        .brand-logo img {
            height: 75px;
            width: auto;
            filter: brightness(0) invert(1);
            opacity: 0.95;
            transition: 0.2s;
            display: block;
        }
        
        .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .brand-name {
            font-family: 'Cinzel', serif;
            font-size: 20px;
            letter-spacing: 3.5px;
            color: #d4af5a;
            font-weight: 600;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
            margin: 0;
        }
        
        .brand-sub {
            font-size: 12px;
            letter-spacing: 2.2px;
            color: #c0b280;
            text-transform: uppercase;
            font-weight: 500;
            margin-top: 6px;
        }
        
        /* small divider line */
        .brand-divider {
            width: 2px;
            height: 60px;
            background: #b08a32;
            margin: 12px 0 18px 0;
        }

        .brand-description {
            color: #ccc;
            font-size: 14px;
            line-height: 1.65;
            margin-bottom: 28px;
            max-width: 95%;
        }

        /* Trust badges */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0 15px;
        }
        .trust-badges span {
            background: rgba(255,255,255,0.05);
            padding: 5px 14px;
            font-size: 11px;
            letter-spacing: 1px;
            color: #cfc394;
            border-radius: 30px;
            backdrop-filter: blur(2px);
        }

        /* global heading style */
        .footer h4, .footer-brand h4 {
            font-size: 13px;
            letter-spacing: 1.8px;
            color: #b5a069;
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* lists styling */
        .footer-services ul, .footer-treatments ul, .admissions-list {
            list-style: none;
        }

        .footer-services li, .footer-treatments li, .admissions-list li {
            margin-bottom: 12px;
        }

        .footer-services a, .footer-treatments a, .admissions-list a {
            text-decoration: none;
            color: #e0e0e0;
            font-size: 14px;
            transition: 0.25s;
            font-weight: 400;
        }

        .footer-services a:hover, .footer-treatments a:hover, .admissions-list a:hover {
            color: #c7a64a;
            padding-left: 3px;
        }

        /* Why Athena Luxus section */
        .why-section {
            margin-top: 28px;
        }
        .why-section h4 {
            margin-bottom: 16px;
        }

        /* contact high-conversion section */
        .contact-high {
            margin-top: 10px;
        }

        .helpline {
            background: rgba(176, 138, 50, 0.08);
            padding: 18px 16px;
            border-left: 3px solid #b08a32;
            margin: 20px 0 18px;
        }

        .helpline p {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .helpline .phone {
            font-size: 22px;
            font-weight: 700;
            color: #d4af5a;
            letter-spacing: 1px;
            margin: 8px 0;
        }

        .helpline .email {
            color: #bbb;
            font-size: 13px;
        }

        .locations {
            font-size: 13px;
            color: #aaa;
            margin-top: 15px;
            line-height: 1.5;
        }

        .emergency-note {
            color: #b08a32;
            font-size: 12px;
            font-weight: 500;
            margin-top: 10px;
        }

        /* Social Proof + CTA Strip */
        .social-cta {
            background: #12110e;
            padding: 28px 30px;
            margin: 45px 0 25px;
            border-radius: 4px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            border: 1px solid #2a281f;
        }
        .social-quote {
            font-size: 16px;
            font-style: italic;
            color: #e9e2cc;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .social-quote i {
            color: #b08a32;
            margin-right: 6px;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
        }
        .btn-consult, .btn-expert {
            text-decoration: none;
            padding: 12px 28px;
            font-weight: 600;
            letter-spacing: 1.5px;
            font-size: 13px;
            transition: 0.2s;
            display: inline-block;
            text-align: center;
        }
        .btn-consult {
            background: #b08a32;
            color: #fff;
            border: none;
        }
        .btn-consult:hover {
            background: #9a7529;
        }
        .btn-expert {
            background: transparent;
            color: #b08a32;
            border: 1px solid #b08a32;
        }
        .btn-expert:hover {
            background: #b08a32;
            color: #fff;
        }

        /* social icons */
        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .social-icons i {
            font-size: 18px;
            color: #ccc;
            transition: 0.2s;
            cursor: pointer;
        }
        .social-icons i:hover {
            color: #c7a64a;
        }

        /* divider + bottom bar */
        .footer-divider {
            border-top: 1px solid #222;
            margin-top: 30px;
            padding-top: 28px;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 13px;
            color: #aaa;
        }
        .bottom-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .bottom-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 12px;
            transition: 0.2s;
        }
        .bottom-links a:hover {
            color: #c7a64a;
        }
        .bottom-links a:not(:last-child)::after {
            content: "|";
            margin-left: 18px;
            color: #3a3a3a;
        }
        .bottom-links a:last-child::after {
            display: none;
        }

        /* responsiveness */
        @media(max-width: 1200px) {
            .footer-container {
                grid-template-columns: 1.2fr 1fr 1fr;
                gap: 40px;
            }
            .footer-container > div:last-child {
                grid-column: span 1;
            }
        }
        @media(max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .social-cta {
                flex-direction: column;
                text-align: center;
            }
            .brand-row {
                flex-wrap: wrap;
            }
        }
        @media(max-width: 768px) {
            .footer {
                padding: 60px 6% 30px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .brand-description {
                max-width: 100%;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .bottom-links a:not(:last-child)::after {
                display: none;
            }
            .bottom-links {
                gap: 12px;
                flex-direction: column;
            }
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            .btn-consult, .btn-expert {
                text-align: center;
                width: 100%;
            }
            .brand-row {
                gap: 14px;
            }
            .brand-name {
                font-size: 28px;
                letter-spacing: 2px;
            }
        }
        @media(max-width: 480px) {
            .helpline .phone {
                font-size: 18px;
            }
            .brand-logo img {
                height: 55px;
            }
            .brand-name {
                font-size: 24px;
                letter-spacing: 1.5px;
            }
            .brand-sub {
                font-size: 10px;
                letter-spacing: 1.5px;
            }
            .brand-row {
                gap: 12px;
            }
        }