:root {
            --theme-color: #0054a7; 
            --body-color: #666666;
            --title-color: #1a1a1a;
        }

        .food-sec-1 {
            background-color: #f8f9fa;
            padding: 80px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .sec-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--title-color);
            margin-bottom: 20px;
        }

        .text-theme {
            color: var(--theme-color);
        }

        /* Filter Tabs */
        .filter-menu {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
        }

        .tab-btn {
            padding: 12px 30px;
            border-radius: 50px;
            border: 2px solid #eee;
            background: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 14px;
        }

        .tab-btn.active, .tab-btn:hover {
            background: var(--theme-color);
            color: #fff;
            border-color: var(--theme-color);
            box-shadow: 0 5px 15px rgba(1, 0, 0, 0.3);
        }
        .branch-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        .branch-content {
            padding: 18px 22px 32px;
        }


        .branch-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        /* MAP */
        .map-container {
            position: relative;
            height: 150px;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(40%) contrast(1.1);
            transition: all 0.4s ease;
        }

        .branch-card:hover .map-container iframe {
            filter: grayscale(0);
            transform: scale(1.05);
        }

        /* CONTENT */
        .branch-content {
            padding: 22px 24px 24px;
        }

        /* BRANCH NAME */
        .branch-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #111;
            position: relative;
        }

        .branch-name::after {
            content: '';
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #F1C40F, #ff7a18);
            display: block;
            margin-top: 6px;
            border-radius: 10px;
        }

        /* META LIST */
        .branch-meta {
            list-style: none;
            padding: 0;
            margin: 16px 0 20px;
        }

        .branch-meta li {
            display: flex;
            gap: 10px;
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .branch-meta i {
            color: #F1C40F;
            margin-top: 4px;
        }

        /* FOOTER BUTTONS */
        .branch-footer {
            display: flex;
            gap: 14px;
        }

        .branch-footer a {
            flex: 1;
            text-align: center;
            padding: 12px 0;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.35s ease;
        }

        /* CALL BUTTON */
        .call-btn {
            background: linear-gradient(135deg, #0d47a1, #42a5f5);
            color: #fff;
        }

        .call-btn:hover {
            background: linear-gradient(135deg, #1a73e8, #4facfe);
            color: #fff;
            transform: translateY(-2px);
        }

        /* DIRECTION BUTTON */
        .dir-btn {
            background: #f4f4f4;
            color: #111;
        }

        .dir-btn i {
            margin-left: 6px;
            transition: transform 0.3s ease;
        }

        .dir-btn:hover {
            background: #111;
            color: #fff;
        }

        .dir-btn:hover i {
            transform: translateX(4px);
        }

        /* MOBILE */
        @media(max-width: 576px) {
            .branch-footer {
                flex-direction: column;
            }
        }