
        :root {
            --gm-green: #1a7a5a;
            --gm-green-dark: #0d5c40;
            --gm-green-light: #2a9d73;
            --gm-red: #c43333;
            --gm-red-dark: #a02828;
            --gm-gold: #c9a44a;
            --gm-gold-light: #e0c374;
            --gm-cream: #f8f5ef;
            --gm-dark: #1a1a2e;
            --gm-gray: #6b7280;
            --gm-light-gray: #f3f4f6;
            --gm-white: #ffffff;
            --font-display: 'Playfair Display', 'Noto Sans TC', serif;
            --font-heading: 'Noto Sans TC', sans-serif;
            --font-body: 'DM Sans', 'Noto Sans TC', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--gm-dark);
            overflow-x: hidden;
            background: var(--gm-white);
        }

        /* ==================== PRELOADER ==================== */
        #preloader {
            position: fixed;
            inset: 0;
            background: var(--gm-dark);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        #preloader.loaded {
            opacity: 0;
            visibility: hidden;
        }
        .preloader-logo {
            width: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: preloaderPulse 1.5s ease-in-out infinite;
        }
        .preloader-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        @keyframes preloaderPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.7; }
        }

        /* ==================== NAVBAR ==================== */
        .navbar-gm {
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 10px rgba(0,0,0,0.06);
        }
        .navbar-gm.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 0.6rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
        }
        .navbar-brand-gm {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }
        .navbar-brand-gm .logo-icon {
            max-width: 200px;
            max-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .navbar-brand-gm .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .navbar-brand-gm .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .navbar-brand-gm .brand-text .zh {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            color: var(--gm-dark);
        }
        .navbar-brand-gm .brand-text .en {
            font-family: var(--font-body);
            font-size: 0.65rem;
            color: var(--gm-gray);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .nav-link-gm {
            color: var(--gm-dark) !important;
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link-gm:hover,
        .nav-link-gm.active {
            color: var(--gm-green) !important;
        }
        .nav-link-gm::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gm-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link-gm:hover::after {
            width: 60%;
        }
        .btn-consult {
            background: linear-gradient(135deg, var(--gm-green), var(--gm-green-light));
            color: white !important;
            border: none;
            border-radius: 50px;
            padding: 0.5rem 1.5rem !important;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 122, 90, 0.3);
        }
        .btn-consult:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(26, 122, 90, 0.5);
        }
        .navbar-toggler-gm {
            border: none;
            padding: 0.5rem;
            background: none;
        }
        .navbar-toggler-gm .hamburger {
            width: 28px;
            height: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .navbar-toggler-gm .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--gm-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .dropdown-toggle::after{
            border-top: transparent;
        }
        /* Mobile menu overrides (dark background) */
        .offcanvas .nav-link-gm {
            color: rgba(255,255,255,0.8) !important;
        }
        .offcanvas .nav-link-gm:hover,
        .offcanvas .nav-link-gm.active {
            color: var(--gm-gold-light) !important;
        }

        /* ==================== HERO ==================== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--gm-cream);
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0.92) 0%,
                rgba(255, 255, 255, 0.75) 45%,
                rgba(255, 255, 255, 0.2) 100%
            );
        }
        .hero-content {
            position: relative;
            z-index: 10;
            padding-top: 100px;
            padding-bottom: 100px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(26, 122, 90, 0.1);
            border: 1px solid rgba(26, 122, 90, 0.25);
            border-radius: 50px;
            padding: 0.4rem 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--gm-green-dark);
            font-size: 0.85rem;
            font-weight: 600;
        }
        .hero-title {
            font-family: var(--font-heading);
            font-weight: 900;
            color: var(--gm-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .hero-title .line1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            display: block;
        }
        .hero-title .line2 {
            font-size: clamp(1.8rem, 3.5vw, 3rem);
            display: block;
            color: var(--gm-gray);
        }
        .hero-title .highlight-green {
            color: var(--gm-green);
        }
        .hero-title .highlight-gold {
            color: var(--gm-gold);
        }
        .hero-desc {
            color: var(--gm-gray);
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 540px;
            margin-bottom: 2rem;
        }
        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .hero-stat {
            text-align: left;
        }
        .hero-stat .number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gm-green);
            line-height: 1;
        }
        .hero-stat .label {
            font-size: 0.85rem;
            color: var(--gm-gray);
            margin-top: 0.3rem;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 2rem;
        }
        .hero-tag {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(26, 122, 90, 0.06);
            border: 1px solid rgba(26, 122, 90, 0.15);
            border-radius: 8px;
            padding: 0.6rem 1rem;
            color: var(--gm-dark);
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .hero-tag:hover {
            background: rgba(26, 122, 90, 0.12);
            border-color: var(--gm-green);
        }
        .hero-tag i {
            color: var(--gm-green);
            font-size: 1rem;
        }
        .btn-hero-primary {
            background: linear-gradient(135deg, var(--gm-green), var(--gm-green-light));
            color: white;
            border: none;
            border-radius: 12px;
            padding: 1rem 2.5rem;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(26, 122, 90, 0.3);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(26, 122, 90, 0.5);
            color: white;
        }
        .btn-hero-secondary {
            background: transparent;
            color: var(--gm-green-dark);
            border: 2px solid rgba(26, 122, 90, 0.3);
            border-radius: 12px;
            padding: 0.9rem 2rem;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-hero-secondary:hover {
            background: rgba(26, 122, 90, 0.08);
            border-color: var(--gm-green);
            color: var(--gm-green);
        }
        .hero-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            text-align: center;
        }
        .scroll-mouse {
            width: 28px;
            height: 44px;
            border: 2px solid rgba(0,0,0,0.15);
            border-radius: 14px;
            display: flex;
            justify-content: center;
            margin: 0 auto 0.5rem;
        }
        .scroll-dot {
            width: 4px;
            height: 10px;
            background: var(--gm-green);
            border-radius: 2px;
            margin-top: 8px;
            animation: scrollBounce 2s ease-in-out infinite;
        }
        @keyframes scrollBounce {
            0%, 100% { transform: translateY(0); opacity: 1; }
            50% { transform: translateY(12px); opacity: 0.3; }
        }

        /* ==================== SECTION COMMON ==================== */
        .section-padding {
            padding: 6rem 0;
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-label {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gm-green);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .section-label::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--gm-green);
        }
        .section-title {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.3;
            color: var(--gm-dark);
        }
        .section-title .accent {
            color: var(--gm-green);
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--gm-gray);
            line-height: 1.8;
            max-width: 640px;
        }

        /* ==================== ABOUT ==================== */
        .about-section {
            background: var(--gm-cream);
            position: relative;
        }
        
        .about-card {
            background: var(--gm-white);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid #eee;
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            transition: all 0.4s ease;
            height: 100%;
        }
        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border-color: rgba(26, 122, 90, 0.15);
        }
        .about-card .icon-wrap {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
        }
        .about-card .icon-wrap.green {
            background: rgba(26, 122, 90, 0.1);
            color: var(--gm-green);
        }
        .about-card .icon-wrap.gold {
            background: rgba(201, 164, 74, 0.1);
            color: var(--gm-gold);
        }
        .about-card .icon-wrap.red {
            background: rgba(196, 51, 51, 0.1);
            color: var(--gm-red);
        }
        .about-card h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
        }
        .about-card p {
            color: var(--gm-gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .about-highlight-box {
            background: linear-gradient(135deg, var(--gm-dark) 0%, #2a2a4e 100%);
            border-radius: 24px;
            padding: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .about-highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(26, 122, 90, 0.2), transparent 70%);
            border-radius: 50%;
        }
        .about-highlight-box h3 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .about-highlight-box p {
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
        }

        /* ==================== SERVICES ==================== */
        .services-section {
            background: var(--gm-light-gray);
            position: relative;
        }
        .service-category {
            background: var(--gm-white);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: all 0.4s ease;
            height: 100%;
        }
        .service-category:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }
        .service-category-header {
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .service-category-header.eb {
            background: linear-gradient(135deg, var(--gm-green-dark), var(--gm-green));
            color: white;
        }
        .service-category-header.invest {
            background: linear-gradient(135deg, #b8860b, var(--gm-gold));
            color: white;
        }
        .service-category-header.work {
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            color: white;
        }
        .service-category-header.family {
            background: linear-gradient(135deg, var(--gm-red-dark), var(--gm-red));
            color: white;
        }
        .service-category-header.special {
            background: linear-gradient(135deg, #6b21a8, #9333ea);
            color: white;
        }
        .service-category-header .cat-icon {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        .service-category-header h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0;
        }
        .service-category-body {
            padding: 1.5rem 2rem;
        }
        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid #f3f4f6;
        }
        .service-item:last-child {
            border-bottom: none;
        }
        .service-item i {
            color: var(--gm-green);
            margin-top: 0.2rem;
            font-size: 0.75rem;
        }
        .service-item span {
            font-size: 0.92rem;
            color: var(--gm-dark);
            line-height: 1.5;
        }

        /* ==================== CLIENTS ==================== */
        .clients-section {
            background: var(--gm-white);
            position: relative;
        }
        .industry-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--gm-light-gray);
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gm-dark);
            transition: all 0.3s ease;
        }
        .industry-tag:hover {
            background: var(--gm-green);
            color: white;
        }
        .industry-tag i {
            color: var(--gm-green);
            transition: color 0.3s ease;
        }
        .industry-tag:hover i {
            color: white;
        }
        .client-type-card {
            background: var(--gm-white);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #eee;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }
        .client-type-card:hover {
            border-color: var(--gm-green);
            box-shadow: 0 10px 40px rgba(26, 122, 90, 0.1);
        }
        .client-type-card .emoji-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .client-type-card h5 {
            font-family: var(--font-heading);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .client-type-card p {
            color: var(--gm-gray);
            font-size: 0.9rem;
        }

        /* ==================== TEAM / LAWYER ==================== */
        .lawyer-section {
            background: linear-gradient(180deg, var(--gm-cream) 0%, var(--gm-white) 100%);
            position: relative;
        }
        .lawyer-profile-card {
            background: var(--gm-white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.06);
            border: 1px solid #eee;
        }
        .lawyer-profile-img {
            width: 100%;
            height: 380px;
            position: relative;
            overflow: hidden;
        }
        .lawyer-profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        .lawyer-profile-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(transparent, rgba(26, 26, 46, 0.3));
        }
        .lawyer-profile-body {
            padding: 2.5rem;
        }
        .lawyer-profile-body h3 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.6rem;
        }
        .lawyer-profile-body .title-en {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--gm-gray);
            margin-bottom: 1rem;
        }
        .credential-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: rgba(26, 122, 90, 0.08);
            border-radius: 6px;
            padding: 0.3rem 0.7rem;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--gm-green-dark);
            margin: 0.2rem;
        }
        .credential-badge i {
            font-size: 0.7rem;
        }
        .timeline-item {
            position: relative;
            padding-left: 2rem;
            padding-bottom: 1.5rem;
            border-left: 2px solid #eee;
        }
        .timeline-item:last-child {
            border-left-color: transparent;
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 0.3rem;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gm-green);
            border: 2px solid var(--gm-white);
        }
        .timeline-item h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }
        .timeline-item p {
            color: var(--gm-gray);
            font-size: 0.85rem;
            margin: 0;
        }

        /* ==================== RECOGNITION ==================== */
        .recognition-section {
            background: var(--gm-cream);
            position: relative;
        }
        .recognition-card {
            background: var(--gm-white);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: all 0.4s ease;
            height: 100%;
        }
        .recognition-card:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }
        .recognition-card-header {
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(135deg, var(--gm-green-dark), var(--gm-green));
            color: white;
        }
        .recognition-card-header .rc-icon {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .recognition-card-header h5 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0;
        }
        .recognition-card-body {
            padding: 1.5rem 2rem;
        }
        .recognition-card-body p {
            color: var(--gm-gray);
            font-size: 0.92rem;
            line-height: 1.7;
            margin: 0;
        }

        /* ==================== CASE STUDIES ==================== */
        .cases-section {
            background: var(--gm-light-gray);
        }
        .case-card {
            background: var(--gm-white);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: all 0.4s ease;
            height: 100%;
        }
        .case-card:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }
        .case-card-header {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .case-card-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .case-card:hover .case-card-img {
            transform: scale(1.05);
        }
        .case-card-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
            z-index: 1;
        }
        .case-card-header .case-icon {
            font-size: 3rem;
            color: rgba(255,255,255,0.9);
            z-index: 2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        .case-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            z-index: 2;
        }
        .case-card-body {
            padding: 1.5rem;
        }
        .case-card-body h5 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .case-card-body p {
            color: var(--gm-gray);
            font-size: 0.88rem;
            line-height: 1.6;
        }
        .case-visa-badge {
            display: inline-block;
            background: rgba(26, 122, 90, 0.08);
            color: var(--gm-green-dark);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            margin-top: 0.5rem;
        }

        /* ==================== B2B / B2C ==================== */
        .b2b-b2c-section {
            background: var(--gm-white);
        }
        .bb-card {
            border-radius: 24px;
            padding: 3rem;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .bb-card.b2b {
            background: linear-gradient(135deg, var(--gm-dark) 0%, #2a2a4e 100%);
            color: white;
        }
        .bb-card.b2c {
            background: linear-gradient(135deg, var(--gm-green-dark) 0%, var(--gm-green) 100%);
            color: white;
        }
        .bb-card::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 250px;
            height: 250px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        .bb-card h3 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .bb-card .bb-subtitle {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .bb-list {
            list-style: none;
            padding: 0;
        }
        .bb-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.5rem 0;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.85);
        }
        .bb-list li i {
            color: var(--gm-gold-light);
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* ==================== CLOUD TECH ==================== */
        .cloud-section {
            background: var(--gm-light-gray);
        }
        .cloud-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--gm-white);
            border-radius: 16px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .cloud-feature:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transform: translateY(-3px);
        }
        .cloud-feature .cf-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(26, 122, 90, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--gm-green);
            flex-shrink: 0;
        }
        .cloud-feature h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        .cloud-feature p {
            color: var(--gm-gray);
            font-size: 0.88rem;
            line-height: 1.6;
            margin: 0;
        }
        .location-pin {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gm-white);
            border: 2px solid var(--gm-green);
            border-radius: 50px;
            padding: 0.6rem 1.2rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--gm-green-dark);
        }
        .location-pin i {
            color: var(--gm-red);
        }

        /* ==================== CTA ==================== */
        .cta-section {
            background: linear-gradient(135deg, var(--gm-green-dark) 0%, var(--gm-green) 40%, var(--gm-green-light) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
            border-radius: 50%;
        }
        .cta-section .section-title {
            color: white;
        }
        .cta-section .section-label {
            color: var(--gm-gold-light);
        }
        .cta-section .section-label::before {
            background: var(--gm-gold);
        }
        .btn-cta {
            background: white;
            color: var(--gm-green-dark);
            border: none;
            border-radius: 14px;
            padding: 1.1rem 2.5rem;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(0,0,0,0.25);
            color: var(--gm-green-dark);
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 0;
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
        }
        .contact-info-item i {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .contact-info-item a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .contact-info-item a:hover {
            color: var(--gm-gold-light);
        }

        /* Contact mobile icon buttons */
        .contact-icon-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.85);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .contact-icon-btn:hover {
            background: var(--gm-green);
            color: white;
        }

        /* ==================== FOOTER ==================== */
        .footer-section {
            background: var(--gm-dark);
            color: rgba(255,255,255,0.5);
            padding: 3rem 0 1.5rem;
        }
        .footer-section .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        .footer-section .footer-brand .footer-logo {
            max-height: 40px;
            width: auto;
            object-fit: contain;
        }
        .footer-link {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s ease;
            display: block;
            padding: 0.25rem 0;
        }
        .footer-link:hover {
            color: var(--gm-gold-light);
        }
        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.6);
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .footer-social a:hover {
            background: var(--gm-green);
            color: white;
        }
        .footer-divider {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 2rem;
            padding-top: 1.5rem;
        }

        /* ==================== BACK TO TOP ==================== */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gm-green);
            color: white;
            border: none;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(26, 122, 90, 0.3);
            cursor: pointer;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 122, 90, 0.5);
        }

        /* ==================== COUNTER ANIMATION ==================== */
        .counter-number {
            font-family: var(--font-display);
            font-weight: 700;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 991.98px) {
            .hero-bg-overlay {
                background: rgba(255, 255, 255, 0.88);
            }
            .hero-content { padding-top: 80px; }
            .hero-stats { gap: 1.5rem; }
            .section-padding { padding: 4rem 0; }
            .bb-card { padding: 2rem; }
            .lawyer-profile-img { height: 280px; }
        }
        @media (max-width: 767.98px) {
            .hero-title .line1 { font-size: 2.2rem; }
            .hero-title .line2 { font-size: 1.5rem; }
            .hero-stats { gap: 1.2rem; }
            .hero-stat .number { font-size: 2rem; }
            .section-padding { padding: 3.5rem 0; }
            .hero-scroll-indicator { display: none; }
            .about-highlight-box { padding: 2rem; }
            .service-category-header { padding: 1.2rem 1.5rem; }
            .service-category-body { padding: 1.2rem 1.5rem; }
        }

        /* ==================== ANIMATION KEYFRAMES ==================== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .animate-fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }
    