
 /* Split-screen specific styles */
        .split-screen-container {
            display: flex;
            min-height: 100vh; /* Ensures container takes full height */
            background-color: #f8f9fa;
        }

        .split-screen-panel {
            flex: 1;
            padding: 5rem;
        }

        .split-screen-panel.left-panel {
            background-image: url(../img/background/form-bg.jpg); /* Add your background image here */
            background-size: cover;
            background-position: center center;
            background-attachment: fixed; /* Parallax effect */
            display: flex;
            align-items: center;
            justify-content: center;
            position: sticky;
            top: 0;
            height: 100vh;
            padding: 2rem; /* Adjust padding for visual balance */
        }

        .split-screen-panel.right-panel {
            background-color: #f8f9fa;
            overflow-y: auto;
            padding: 5rem;
        }
        
        /* Map specific styles */
        .map-container {
            position: relative;
            width: 100%;
            height: 300px;
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Specific card and text styles for clarity */
        .contact-info-block {
            padding: 2rem;
            margin-bottom: 2rem;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        /* Attractive Form Styling */
        .contact-form-container {
            max-width: 500px; /* Constrains form width */
            margin: auto;
            background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white background */
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); /* Stronger box shadow */
            backdrop-filter: blur(5px); /* Optional: blur background behind form */
        }

        .contact-form-container h2 {
            color: #CC002B; /* Adjust heading color */
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            border-radius: 8px;
            border: 1px solid #ced4da;
            padding: 0.85rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: none; /* Remove default box shadow */
        }

        .form-control:focus {
            border-color: #CC002B;
            box-shadow: 0 0 0 0.2rem rgba(204, 0, 43, 0.25); /* Custom focus shadow */
            background-color: #fefeff;
        }

        .form-control::placeholder {
            color: #888;
        }

        .btn-primary {
            background-color: #CC002B;
            border-color: #CC002B;
            border-radius: 8px;
            padding: 0.85rem 1.5rem;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(204, 0, 43, 0.3);
        }

        .btn-primary:hover {
            background-color: #a30022;
            border-color: #a30022;
            box-shadow: 0 8px 20px rgba(204, 0, 43, 0.4);
            transform: translateY(-2px);
        }


        .contact-info-block h4 {
            color: #CC002B;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .contact-info-list li {
            font-size: 1rem;
            color: #555;
            margin-bottom: 0.75rem;
        }
        
        .contact-info-list li strong {
            color: #CC002B;
        }
        
        @media (max-width: 991.98px) {
            .split-screen-container {
                display: block; /* Stack on smaller screens */
                min-height: auto;
            }
            .split-screen-panel.left-panel, .split-screen-panel.right-panel {
                position: static;
                height: auto;
                overflow-y: visible;
                padding: 3rem 1.5rem;
                background-attachment: scroll; /* Disable fixed background on mobile */
            }
            .contact-form-container {
                padding: 2rem;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }
        }