        /* =========================================
           1. CORE VARIABLES & GLOBAL STYLES (From Index)
           ========================================= */
        :root {
            --primary-color: #231f20;   /* Dark Charcoal */
            --secondary-color: #eb1e24; /* Red */
            --gradient-secondary: linear-gradient(135deg, #eb1e24 0%, #8b1014 100%);
            --gradient-primary: linear-gradient(135deg, #231f20 0%, #4a4244 100%);
            --shadow-premium: 0 20px 50px rgba(35, 31, 32, 0.08);
            --text-dark: #222;
            --text-light: #666;
            --input-bg: #fcfcfc;
        }
        
        a { text-decoration: none !important; transition: 0.3s; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }
        img { max-width: 100%; height: auto; display: block; }

        /* Helpers */
        .orng_cta { background: var(--secondary-color); color: #fff; padding: 14px 35px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; border: none; transition: 0.3s; }
        .orng_cta:hover { background: #000000; color: #fff; transform: translateY(-3px); }
        .blue_cta { background: var(--primary-color); color: #fff; padding: 10px 25px; border-radius: 50px; font-weight: 700; display: inline-block; border: none; transition: 0.3s; }
        .blue_cta:hover { background: var(--secondary-color); color: #fff; }
        .text-center { text-align: center; }

        /* =========================================
           4. CONTACT PAGE SPECIFIC STYLES
           ========================================= */
        .contact-hero { 
            position: relative; 
            background: url('/assets/images/breadcrumb/breadcrumb.webp') no-repeat center center/cover; 
            height: 400px; 
            display: flex; 
            align-items: center; 
            background-attachment: fixed; 
        }
        .contact-hero-overlay { 
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
            background: linear-gradient(90deg, rgba(35, 31, 32, 0.95) 0%, rgba(35, 31, 32, 0.8) 100%); 
        }
        .contact-hero-text { position: relative; z-index: 2; color: #fff; max-width: 800px; }
        
        .hero-breadcrumb { 
            color: rgba(255,255,255,0.7); 
            font-size: 13px; /* Matched About Page */
            text-transform: uppercase; 
            letter-spacing: 1px; 
            margin-bottom: 10px; 
            font-weight: 600; 
        }
        .hero-breadcrumb a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.3); }
        .hero-breadcrumb span { margin: 0 10px; color: var(--secondary-color); }

        /* Updated H1 to match About Page */
        .contact-hero-text h1 { 
            font-size: 2.2rem; 
            font-weight: 900; 
            margin-bottom: 20px; 
            letter-spacing: -1px; 
            line-height: 1.2;
        }
        .contact-hero-text p { 
            font-size: 1.2rem; 
            opacity: 0.9; 
            font-weight: 300; 
            border-left: 3px solid var(--secondary-color); 
            padding-left: 20px; 
            line-height: 1.6;
        }

        .contact-wrapper { padding: 80px 0; background: linear-gradient(to bottom, #fff 0%, #fcfcfc 100%); position: relative; }
        .info-card-wrap { position: sticky; top: 120px; }
        
        .main-contact-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-premium); border: 1px solid rgba(0,0,0,0.05); margin-bottom: 30px; }
        .contact-icon-box { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
        .contact-icon-box:last-child { margin-bottom: 0; }
        .c-icon { width: 50px; height: 50px; background: rgba(235, 30, 36, 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--secondary-color); flex-shrink: 0; transition: 0.3s; }
        .contact-icon-box:hover .c-icon { background: var(--secondary-color); color: #fff; }
        .c-content h5 { font-size: 18px; font-weight: 700; margin-bottom: 5px; color: var(--text-dark); }
        .c-content p, .c-content a { font-size: 15px; color: var(--text-light); margin: 0; line-height: 1.5; }
        .c-content a:hover { color: var(--secondary-color); }

        .location-switcher { background: var(--primary-color); border-radius: 20px; padding: 30px; color: #fff; position: relative; overflow: hidden; }
        .location-switcher::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: rgba(255,255,255,0.05); border-radius: 50%; }
        .loc-tabs { display: flex; gap: 10px; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
        .loc-tab { font-size: 14px; font-weight: 700; cursor: pointer; padding: 5px 15px; border-radius: 20px; transition: 0.3s; color: rgba(255,255,255,0.6); }
        .loc-tab.active { background: var(--secondary-color); color: #fff; }
        .loc-detail { display: none; animation: fadeIn 0.5s; }
        .loc-detail.active { display: block; }
        .loc-detail h4 { font-size: 22px; font-weight: 700; margin-bottom: 15px; }
        .loc-detail p { font-size: 14px; opacity: 0.8; margin-bottom: 20px; display: flex; gap: 10px; }
        .loc-map-link { display: inline-block; font-size: 13px; font-weight: 700; color: #fff; border-bottom: 1px solid #fff; padding-bottom: 2px; transition: 0.3s;}
        .loc-map-link:hover { color: var(--secondary-color); border-color: var(--secondary-color);}

        .form-container { background: #fff; padding: 50px; border-radius: 24px; box-shadow: var(--shadow-premium); border-top: 5px solid var(--secondary-color); }
        .form-heading h3 { font-size: 32px; font-weight: 800; color: var(--primary-color); margin-bottom: 10px; }
        .form-floating > .form-control { background-color: var(--input-bg); border: 1px solid #eee; border-radius: 10px; height: 60px; }
        .form-floating > textarea.form-control { height: 150px; }
        .form-control:focus { background-color: #fff; border-color: var(--secondary-color); box-shadow: 0 0 0 4px rgba(235, 30, 36, 0.1); }
        .form-check-input:checked { background-color: var(--secondary-color); border-color: var(--secondary-color); }

        .map-section { height: 450px; width: 100%; position: relative; }
        .map-overlay { position: absolute; top: 20px; right: 20px; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); max-width: 300px; display: none; }
        @media (min-width: 992px) { .map-overlay { display: block; } }
        
        /* Process Cards */
        .next-steps { padding: 100px 0; background: #fcfcfc; position: relative; }
        .process-card-green { background: linear-gradient(145deg, var(--primary-color) 0%, #1a1a1a 100%); border-radius: 20px; padding: 40px 30px; height: 100%; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 15px 35px rgba(35, 31, 32, 0.1); z-index: 1; }
        .process-card-green:hover { transform: translateY(-10px); box-shadow: 0 30px 50px rgba(35, 31, 32, 0.25); border-color: var(--secondary-color); }
        .process-card-green::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--secondary-color); transform: scaleX(0); transform-origin: left; transition: 0.4s; }
        .process-card-green:hover::before { transform: scaleX(1); }
        .card-bg-watermark { position: absolute; bottom: -20px; right: -20px; font-size: 120px; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; z-index: -1; transition: 0.4s; }
        .process-card-green:hover .card-bg-watermark { color: rgba(235, 30, 36, 0.1); transform: scale(1.1) rotate(-5deg); }
        .p-card-icon { width: 70px; height: 70px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--secondary-color); margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: 0.4s; }
        .process-card-green:hover .p-card-icon { background: var(--secondary-color); color: #fff; transform: rotateY(180deg); }
        .process-card-green:hover .p-card-icon i { transform: rotateY(-180deg); transition: 0.4s; }
        .process-card-green h5 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 15px; }
        .process-card-green p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin: 0; }
        .p-step-badge { position: absolute; top: 20px; right: 20px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 50px; }

      