/* ======================================================
   Sarekam CSS — footer.css
   Extracted from index.html | Phase 1 Refactor
   DO NOT add styles from other sections to this file.
   ====================================================== */

        .footer {
            background: var(--bg-light);
            padding: 50px 0 40px;
            margin-top: 50px;
            border-top: 1px solid #e8e8e8;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        .footer-left {}
        .footer-brand-name {
            font-size: 2.2rem;
            font-weight: 700;
            color: #b0b0b0;
            letter-spacing: -0.5px;
        }
        .footer-tagline {
            font-size: 0.95rem;
            color: #b0b0b0;
            margin-top: 12px;
            font-weight: 400;
        }
        .footer-tagline .heart {
            color: #e57373;
            font-size: 1rem;
        }
        .footer-right {
            text-align: right;
        }
        .footer-right h4 {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 12px;
        }
        .footer-social {
            display: flex;
            gap: 8px;
            justify-content: flex-end;
            margin-bottom: 16px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: #2d2d2d;
            color: #fff;
            border-radius: 50%;
            font-size: 0.78rem;
            transition: background 0.2s;
        }
        .footer-social a:hover { background: #00A0B0; }
        .footer-apps {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
        }
        .footer-apps img {
            height: 34px;
            cursor: pointer;
            border-radius: 6px;
        }
        @media (max-width: 600px) {
            .footer-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
                padding: 0 20px;
            }
            .footer-right { text-align: center; }
            .footer-social { justify-content: center; }
            .footer-apps { align-items: center; }
        }

        
