 /* Global Reset & Typography */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f8fafc;
            color: #334155;
            line-height: 1.6;
        }

        /* Premium Top Custom Banner Style Integration */
        .Banner {
            margin-bottom: 0px;
            position: relative;
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('imgs/banner.avif') no-repeat center center/cover;
            height: 350px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
            color: white;
        }

        .hero-content p {
            font-size: 16px;
            color: #e2e8f0;
            font-weight: 400;
        }



        /* Main Form & Info Section Container */
        .contact-wrapper {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
        }

        /* Left Side: Contact Details Cards */
        .info-panel {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-card {
            background-color: var(--text);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(209, 204, 204, 0.03);
            border-left: 5px solid var(--primary);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background-color: #e2e8f0;
        }

        .info-icon {
            background-color: #f0f4f8;
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .info-details h3 {
            color: var(--text);
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .info-details p,
        .info-details a {
            color: #64748b;
            font-size: 14px;
            text-decoration: none;
        }

        /* Right Side: Professional Message Box Form */
        .form-panel {
            background-color: #f0f4f8;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(214, 133, 133, 0.05);
            border: 1px solid #e2e8f0;
        }

        .form-panel h2 {
            color: var(--text);
            font-size: 24px;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .input-group.full-width {
            grid-column: span 2;
        }

        .input-group label {
            font-size: 13px;
            font-weight: 500;
            color: #475569;
        }

        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 14px;
            background-color: #ffffff;
            transition: all 0.3s ease;
            outline: none;
        }

        .input-group input:focus,
        .input-group textarea:focus {
            border-color: var(--primary);

            box-shadow: 0 0 0 3px rgba(151, 193, 233, 0.1);
        }

        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background: white;
            color: var(--primary);
        }

        /* Full-Width Google Map Integration Area */
        .map-section {
            width: 100%;
            height: 450px;
            margin-top: 40px;
            border-top: 4px solid var(--primary);
            background-color: #e2e8f0;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* Mobile Responsive Breakpoints */
        @media (max-width: 992px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                margin: 40px auto;
            }
        }

        @media (max-width: 768px) {
            .Banner {
                height: 250px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .form-panel {
                padding: 25px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .input-group.full-width {
                grid-column: span 1;
            }

            .map-section {
                height: 300px;
            }
        }