.contact-page { padding: 40px 0 60px; }
        .contact-breadcrumb { display:flex;align-items:center;gap:8px;margin-bottom:30px;font-size:13px;color:#999; }
        .contact-breadcrumb a { color:#666; } .contact-breadcrumb a:hover { color:var(--primary); }

        .contact-hero {
            background: linear-gradient(135deg, #0054A6 0%, #003366 100%);
            border-radius: 16px;
            padding: 50px;
            color: white;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        .contact-hero::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -15%;
            width: 350px;
            height: 350px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
        }
        .contact-hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 12px; position: relative; }
        .contact-hero h1 i { margin-right: 10px; }
        .contact-hero p { font-size: 16px; opacity: 0.85; position: relative; }

        /* Info Cards */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }
        .contact-info-card {
            background: white;
            border-radius: 14px;
            padding: 32px 28px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid #eee;
            transition: all 0.3s;
        }
        .contact-info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,84,166,0.12);
            border-color: var(--primary);
        }
        .contact-info-card .icon {
            width: 64px; height: 64px;
            background: #e8f0fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 24px;
            color: var(--primary);
        }
        .contact-info-card h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
        .contact-info-card p { font-size: 14px; color: #666; line-height: 1.7; }
        .contact-info-card a { color: var(--primary); font-weight: 600; text-decoration: none; }
        .contact-info-card a:hover { text-decoration: underline; }

        /* Branches */
        .branches-section { margin-bottom: 40px; }
        .branches-title {
            font-size: 22px; font-weight: 700; color: #1a1a2e;
            margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
        }
        .branches-title i { color: var(--primary); }
        .branches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .branch-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid #eee;
            box-shadow: 0 1px 6px rgba(0,0,0,0.04);
            transition: all 0.2s;
        }
        .branch-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(0,84,166,0.1); }
        .branch-card h4 {
            font-size: 14px; font-weight: 700; color: var(--primary);
            margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
        }
        .branch-card h4 i { font-size: 12px; }
        .branch-card .branch-detail {
            display: flex; align-items: flex-start; gap: 10px;
            margin-bottom: 10px; font-size: 13px; color: #555;
        }
        .branch-card .branch-detail i { color: var(--primary); margin-top: 3px; min-width: 16px; text-align: center; }
        .branch-card .branch-phone a { color: #333; font-weight: 600; }
        .branch-card .branch-phone a:hover { color: var(--primary); }
        .branch-hours { font-size: 12px; color: #999; margin-top: 8px; padding-top: 10px; border-top: 1px solid #f0f0f0; display: flex; align-items: center; gap: 6px; }
        .branch-hours i { color: #27ae60; }

        /* Main grid: Form + Map */
        .contact-main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Form */
        .contact-form-card {
            background: white;
            border-radius: 14px;
            padding: 36px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid #eee;
        }
        .contact-form-card h3 {
            font-size: 20px; font-weight: 700; color: #1a1a2e;
            margin-bottom: 6px;
        }
        .contact-form-card .subtitle { font-size: 13px; color: #999; margin-bottom: 24px; }
        .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
        .cf-group { margin-bottom: 16px; }
        .cf-group label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 6px; }
        .cf-group label .req { color: #e74c3c; }
        .cf-group input, .cf-group select, .cf-group textarea {
            width: 100%; padding: 12px 14px;
            border: 2px solid #e8e8e8; border-radius: 10px;
            font-family: inherit; font-size: 14px; outline: none;
            transition: border-color 0.2s;
        }
        .cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
            border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,84,166,0.08);
        }
        .cf-group textarea { min-height: 120px; resize: vertical; }
        .cf-btn {
            width: 100%; padding: 16px; background: var(--primary); color: white;
            border: none; border-radius: 10px; font-family: inherit; font-size: 16px;
            font-weight: 600; cursor: pointer; display: flex; align-items: center;
            justify-content: center; gap: 10px; transition: background 0.2s;
        }
        .cf-btn:hover { background: #003d7a; }

        /* Map */
        .contact-map-card {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
        }
        .contact-map-card iframe {
            width: 100%; flex: 1; min-height: 400px; border: none;
        }
        .map-info {
            padding: 20px 24px;
            background: #fafafa;
            border-top: 1px solid #eee;
        }
        .map-info h4 { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 6px; }
        .map-info p { font-size: 13px; color: #666; }

        /* Toast */
        .contact-toast {
            position: fixed; top: 20px; right: 20px;
            padding: 16px 28px; border-radius: 10px;
            color: white; font-size: 14px; font-weight: 500;
            z-index: 10000; transform: translateX(120%);
            transition: transform 0.3s; display: flex;
            align-items: center; gap: 10px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        .contact-toast.show { transform: translateX(0); }
        .contact-toast.success { background: #27ae60; }

        @media (max-width: 768px) {
            .contact-info-grid { grid-template-columns: 1fr; }
            .branches-grid { grid-template-columns: 1fr; }
            .contact-main-grid { grid-template-columns: 1fr; }
            .cf-row { grid-template-columns: 1fr; }
            .contact-hero { padding: 30px 20px; }
            .contact-hero h1 { font-size: 24px; }
        }