body {
            background: url('../../Images/modern-office-space-interior.jpg') center center/cover no-repeat fixed;
            color: #222;
        }
        .contact-container { max-width: 900px; margin: 40px auto; padding: 32px 20px; background: rgba(255,255,255,0.92); border-radius: 16px; box-shadow: 0 4px 24px rgba(0,123,255,0.08);}
        .contact-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #007bff;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }
        .form-label { font-weight: 500; color: #007bff; }
        .form-control, .form-select { border-radius: 6px; border: 1px solid #cce3fc; }
        .form-control:focus, .form-select:focus { border-color: #007bff; box-shadow: 0 0 0 2px rgba(0,123,255,0.15);}
        .map-responsive { overflow: hidden; padding-bottom: 56.25%; position: relative; height: 0; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,123,255,0.08);}
        .map-responsive iframe { left: 0; top: 0; height: 100%; width: 100%; position: absolute; border:0;}
        .contact-bg {
            background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(240,240,240,0.85) 100%);
            position: relative;
            overflow: hidden;        
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0,123,255,0.08);
            padding: 32px 16px;
            color: #222;
            position: relative;
            overflow: hidden;
        }
        .contact-bg::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255,255,255,0.85); /* overlay for readability */
            z-index: 1;
        }
        .contact-bg > * {
            position: relative;
            z-index: 2;
        }
        .contact-card {
            border-radius: 18px;
            background: linear-gradient(135deg, #e3f0ff 0%, #f0f7ff 100%);
            box-shadow: 0 8px 32px rgba(0,123,255,0.10);
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .contact-card:hover {
            box-shadow: 0 16px 48px rgba(0,123,255,0.18);
            transform: translateY(-2px) scale(1.01);
        }
        .contact-icon {
            width: 48px;
            height: 48px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,123,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #007bff;
            font-size: 2rem;
        }
        .contact-link {
            color: #007bff;
            font-weight: 500;
            text-decoration: underline;
            transition: color 0.2s;
        }
        .contact-link:hover {
            color: #0056b3;
        }
        .contact-social {
            color: #007bff;
            font-size: 1.3rem;
            transition: color 0.2s, transform 0.2s;
        }
        .contact-social:hover {
            color: #0056b3;
            transform: scale(1.15);
        }
        @media (max-width: 768px) {
            .contact-container { padding: 12px 4px; }
            .contact-title {
                font-size: 1.3rem;
            }
            .contact-card {
                border-radius: 12px;
                padding: 16px 6px;
            }
            .contact-icon {
                width: 36px;
                height: 36px;
                font-size: 1.3rem;
            }
        }
        @media (max-width: 576px) {
            .contact-title { font-size: 1.5rem; }
            .map-responsive { padding-bottom: 75%; }
        }
        @media (max-width: 400px) {
            .contact-title { font-size: 1.2rem; }
            .form-label { font-size: 0.9rem; }
            .form-control, .form-select { font-size: 0.9rem; }
        }