/* ===== Branch Hero ===== */
        .branch-hero {
            min-height: 65vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 70px;
            background: linear-gradient(135deg, #0a1929 0%, #0d3d3d 30%, #0f4f4f 60%, #0a2020 100%);
        }

        .branch-hero::before {
            content: '';
            position: absolute;
            top: -30%; right: -20%;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: coverFloat 15s ease-in-out infinite;
        }

        .branch-hero::after {
            content: '';
            position: absolute;
            bottom: -20%; left: -15%;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: coverFloat 20s ease-in-out infinite reverse;
        }

        .branch-hero-bg {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .branch-hero-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .branch-hero-text { flex: 1; max-width: 620px; }

        .branch-hero-text h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .branch-hero-hl {
            background: linear-gradient(135deg, #10b981, #06b6d4, #14b8a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .branch-hero-text p {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .branch-hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 32px;
        }

        .branch-hero-tags span {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 50px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
        }

        .branch-hero-visual { flex: 0 0 320px; }

        .branch-hero-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .branch-hero-stat { text-align: center; }

        .branch-stat-num {
            display: block;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #10b981, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .branch-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
        }

        /* ===== Branch Section ===== */
        .branch-section {
            padding: 80px 0;
            background: #fff;
        }

        .branch-section-alt { background: #f8f9fc; }

        .branch-section-dark {
            background: linear-gradient(135deg, #0a1929, #0d3d3d);
            position: relative;
            overflow: hidden;
        }

        .branch-section-dark::before {
            content: '';
            position: absolute;
            top: -150px; left: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(16,185,129,0.1), transparent);
            border-radius: 50%;
        }

        .branch-section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.4rem;
            background: linear-gradient(135deg, #10b981, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .branch-section-sub {
            text-align: center;
            color: #888;
            font-size: 0.95rem;
            margin-bottom: 44px;
        }

        /* ===== City Filter ===== */
        .city-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 32px;
            justify-content: center;
        }

        .city-filter-btn {
            padding: 8px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 50px;
            background: #fff;
            color: #555;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.25s;
        }

        .city-filter-btn:hover {
            border-color: #10b981;
            color: #10b981;
        }

        .city-filter-btn.active {
            background: linear-gradient(135deg, #10b981, #06b6d4);
            border-color: transparent;
            color: #fff;
        }

        /* ===== Campus Grid ===== */
        .campus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .campus-card {
            background: #f5f7fa;
            border-radius: 12px;
            padding: 18px 20px;
            border-left: 3px solid transparent;
            transition: all 0.25s;
            cursor: default;
        }

        .campus-card:hover {
            border-left-color: #10b981;
            background: #fff;
            box-shadow: 0 4px 16px rgba(16,185,129,0.1);
        }

        .campus-card-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 6px;
        }

        .campus-card-addr {
            font-size: 0.82rem;
            color: #888;
            line-height: 1.4;
        }



        .campus-info li::before {
            content: '📍';
            flex-shrink: 0;
            font-size: 0.9rem;
        }

        .campus-info li.phone::before { content: '📞'; }
        .campus-info li.area::before { content: '🏢'; }

        .campus-card-footer {
            padding: 16px 24px;
            background: #fafbfc;
            border-top: 1px solid #f0f0f5;
        }

        .campus-btn {
            display: block;
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, #10b981, #06b6d4);
            color: #fff;
            text-align: center;
            border-radius: 10px;
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .campus-btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        /* ===== Features Section ===== */
        .branch-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .branch-feature-item {
            display: flex;
            gap: 16px;
            padding: 24px 20px;
            background: #f8f9fc;
            border-radius: 16px;
            transition: all 0.3s;
        }

        .branch-feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        }

        .branch-feature-icon {
            width: 52px; height: 52px;
            background: linear-gradient(135deg, #d1fae5, #cffafe);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .branch-feature-body h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 4px;
        }

        .branch-feature-body p {
            font-size: 0.82rem;
            color: #888;
        }

        /* ===== CTA Section ===== */
        .cta-section { padding: 80px 0; background: #fff; }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a2e;
            text-align: center;
            margin-bottom: 12px;
        }

        .cta-section p {
            text-align: center;
            color: #888;
            margin-bottom: 32px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: linear-gradient(135deg, #10b981, #06b6d4);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(16,185,129,0.3);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .campus-grid { grid-template-columns: repeat(2, 1fr); }
            .branch-features { grid-template-columns: repeat(2, 1fr); }
            .branch-hero-inner { flex-direction: column; text-align: center; }
            .branch-hero-visual { display: none; }
        }

        @media (max-width: 640px) {
            .campus-grid { grid-template-columns: 1fr; }
            .branch-features { grid-template-columns: 1fr; }
            .branch-hero-text h1 { font-size: 1.8rem; }
        }

        @keyframes coverFloat {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -20px); }
        }