/* ===== CONTACT LAYOUT ===== */
        .contact-wrapper {
            margin-top: -20px; /* Overlap with breadcrumbs */
            position: relative;
            z-index: 10;
            padding-bottom: 80px;
        }

        .contact-card-container {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-wrap: wrap;
        }

        /* ===== LEFT SIDE: INFO ===== */
        .contact-info-sidebar {
            background:  linear-gradient(135deg, #0b0b0b, #e10600);
            color: #fff;
            padding: 50px;
            flex: 1;
            min-width: 320px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }
        .info-item:hover { transform: translateX(10px); }

        .info-icon {
            background: rgba(255,255,255,0.2);
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 20px;
        }

        /* ===== RIGHT SIDE: FORM ===== */
        .contact-form-area {
            flex: 2;
            padding: 50px;
            min-width: 320px;
        }

        .form-control {
            border: 1px solid #eee;
            padding: 10px;
            border-radius: 10px;
            background: #f8f9fa;
        }

        .form-control:focus {
            box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.1);
            border-color: #b00000;
        }

        .btn-send {
            background: #b00000;
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-send:hover {
            background: #b00000;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(225, 6, 0, 0.2);
        }

        /* ===== MAP ===== */
        .map-section {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-top: 50px;
        }

        @media (max-width: 991px) {
            .contact-info-sidebar, .contact-form-area { padding: 30px; }
        }