:root {
            --light-blue: #0ea5e9;
            --header-gray: #f1f5f9; /* Light Gray Header */
            --dark-blue: #0369a1;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            color: #1e293b;
        }

        /* --- Header: Light Gray --- */
        .contact-header {
            background-color: var(--header-gray);
            padding: 100px 0 140px;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }

        /* --- Floating Contact Card --- */
        .contact-wrapper {
            margin-top: -80px;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        /* --- Left Side: Info --- */
        .info-panel {
            background: var(--light-blue);
            color: white;
            padding: 50px;
            height: 100%;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* --- Right Side: Form --- */
        .form-panel {
            padding: 50px;
        }

        .form-control {
            border: 2px solid #f1f5f9;
            padding: 12px 18px;
            border-radius: 12px;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: var(--light-blue);
            box-shadow: none;
        }

        .btn-submit {
            background: var(--light-blue);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 12px;
            font-weight: 700;
            width: 100%;
            transition: 0.3s;
        }

        .btn-submit:hover {
            background: rgb(186, 186, 99);
            transform: translateY(-2px);
        }

        /* --- Map Section --- */
        .map-section {
            margin-top: 50px;
            border-radius: 25px;
            overflow: hidden;
            height: 400px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        @media (max-width: 991px) {
            .info-panel, .form-panel { padding: 35px; }
        }