
        /* Decorative floating icons */
    .mbp-floating-icon {
            position: absolute;
            z-index: 1;
            opacity: 0.13;
            font-size: 5rem;
            pointer-events: none;
            animation: floatIcon 7s ease-in-out infinite alternate;
        }
    .mbp-floating-icon.mbp-icon1 { top: 8%; left: 4%; color: var(--primary); animation-delay: 0s; }
    .mbp-floating-icon.mbp-icon2 { top: 60%; left: 85%; color: var(--accent); animation-delay: 2s; }
    .mbp-floating-icon.mbp-icon3 { top: 80%; left: 10%; color: var(--secondary); animation-delay: 4s; }

        @keyframes floatIcon {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(-30px) scale(1.08); }
        }

        /* Animated gradient border for form/info */
    .mbp-gradient-border {
            position: relative;
            z-index: 2;
        }
    .mbp-gradient-border::before {
            content: '';
            position: absolute;
            top: -3px; left: -3px; right: -3px; bottom: -3px;
            border-radius: 22px;
            background: linear-gradient(120deg, #be8b2e, #ff6b6b, #fffbe6, #be8b2e);
            background-size: 300% 300%;
            animation: borderAnim 6s ease-in-out infinite;
            z-index: -1;
            filter: blur(1.5px);
        }
        @keyframes borderAnim {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Glowing effect on submit button */
    .mbp-submit-btn {
            box-shadow: 0 0 0 0 rgba(255,107,107,0.5), 0 4px 15px rgba(190,139,46,0.13);
            position: relative;
            overflow: hidden;
        }
    .mbp-submit-btn::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(255,107,107,0.18) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }
    .mbp-submit-btn:hover::after {
            opacity: 1;
        }

        /* Subtle background shapes */
    .mbp-bg-shape {
            position: absolute;
            z-index: 0;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.12;
        }
    .mbp-bg-shape.mbp-shape1 { width: 300px; height: 300px; background: var(--primary); top: 10%; left: 60%; }
    .mbp-bg-shape.mbp-shape2 { width: 200px; height: 200px; background: var(--accent); top: 70%; left: 20%; }
    .mbp-bg-shape.mbp-shape3 { width: 180px; height: 180px; background: var(--secondary); top: 40%; left: 80%; }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #be8b2e;
            --secondary: #000;
            --accent: #ff6b6b;
            --light: #f8f9fa;
            --dark: #1d2144;
            --gray: #7f8c8d;
            --transition: all 0.3s ease;
        }

        body {
            background: linear-gradient(135deg, rgba(29, 33, 68, 0.5) 0%, #fffbe6 100%), url('../img/bg/2.png') center/cover no-repeat fixed;
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

    .mbp-contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            flex-grow: 1;
        }

        /* Header Styles */
    .mbp-contact-header {
            text-align: center;
            padding: 40px 0;
            animation: fadeInDown 1s ease-out;
        }


    .mbp-contact-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
            display: inline-block;
            letter-spacing: 2px;
            text-shadow: 0 2px 8px rgba(190,139,46,0.08);
        }

    .mbp-contact-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

    .mbp-contact-header p {
            font-size: 1.2rem;
            color: #fff;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Content */
    .mbp-contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 40px 0;
        }

        /* Contact Form */

    .mbp-contact-form-container {
            background: rgba(255,255,255,0.95);
            border-radius: 18px;
            padding: 44px 36px 36px 36px;
            box-shadow: 0 10px 40px 0 rgba(190,139,46,0.10), 0 2px 8px 0 rgba(0,0,0,0.04);
            animation: slideInLeft 0.8s ease-out;
            border: 1.5px solid #f3e3c2;
        }


    .mbp-contact-form-container h2 {
            margin-bottom: 30px;
            color: var(--primary);
            font-size: 2rem;
            letter-spacing: 1px;
        }

    .mbp-form-group {
            margin-bottom: 25px;
            position: relative;
        }

    .mbp-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }


    .mbp-form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #f3e3c2;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            background: #fffdfa;
        }

    .mbp-form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(190,139,46,0.13);
            outline: none;
        }

    textarea.mbp-form-control {
            min-height: 150px;
            resize: vertical;
        }


    .mbp-submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 34px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(190,139,46,0.13);
            letter-spacing: 1px;
        }

    .mbp-submit-btn:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.18);
        }

        /* Contact Info */

    .mbp-contact-info-container {
            background: rgba(255,255,255,0.97);
            border-radius: 18px;
            padding: 44px 36px 36px 36px;
            box-shadow: 0 10px 40px 0 rgba(190,139,46,0.10), 0 2px 8px 0 rgba(0,0,0,0.04);
            animation: slideInRight 0.8s ease-out;
            border: 1.5px solid #f3e3c2;
        }

    .mbp-contact-info-container h2 {
            margin-bottom: 30px;
            color: var(--dark);
            font-size: 1.8rem;
        }

    .mbp-contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 10px;
            transition: var(--transition);
            cursor: pointer;
        }


    .mbp-contact-info-item:hover {
            background: rgba(190,139,46,0.07);
            transform: translateX(5px) scale(1.02);
        }


    .mbp-contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(190,139,46,0.10);
        }

    .mbp-contact-info-item:hover .mbp-contact-icon {
            background: var(--accent);
            transform: scale(1.1);
        }

    .mbp-contact-details h3 {
            margin-bottom: 5px;
            color: var(--dark);
        }

    .mbp-contact-details p {
            color: var(--gray);
        }

        /* Social Links */
    .mbp-social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }


    .mbp-social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(190,139,46,0.10);
        }

    .mbp-social-link:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-5px) scale(1.08);
        }

        /* Map Section */

    .mbp-map-container {
            margin: 40px 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 40px 0 rgba(190,139,46,0.10), 0 2px 8px 0 rgba(0,0,0,0.04);
            animation: fadeInUp 1s ease-out;
            border: 1.5px solid #f3e3c2;
        }

    .mbp-map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Footer */

    .mbp-contact-footer {
            background: var(--primary);
            color: #fff;
            text-align: center;
            padding: 32px 0 18px 0;
            margin-top: 60px;
            letter-spacing: 1px;
            font-size: 1.1rem;
            box-shadow: 0 -2px 12px rgba(190,139,46,0.08);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

    /* Form Animation */
    .mbp-form-group {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease-out forwards;
        }

    .mbp-form-group:nth-child(1) { animation-delay: 0.1s; }
    .mbp-form-group:nth-child(2) { animation-delay: 0.2s; }
    .mbp-form-group:nth-child(3) { animation-delay: 0.3s; }
    .mbp-form-group:nth-child(4) { animation-delay: 0.4s; }
    .mbp-form-group:nth-child(5) { animation-delay: 0.5s; }

        /* Responsive Design */
        @media (max-width: 992px) {
            .mbp-contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .mbp-contact-form-container,
            .mbp-contact-info-container {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .mbp-contact-header h1 {
                font-size: 2.5rem;
            }

            .mbp-contact-header p {
                font-size: 1.1rem;
            }

            .mbp-contact-form-container,
            .mbp-contact-info-container {
                padding: 25px;
            }

            .mbp-contact-info-item {
                flex-direction: column;
                text-align: center;
            }

            .mbp-contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .mbp-contact-header h1 {
                font-size: 2rem;
            }

            .mbp-contact-header p {
                font-size: 1rem;
            }

            .mbp-contact-form-container,
            .mbp-contact-info-container {
                padding: 20px;
            }

            .mbp-form-control {
                padding: 12px;
            }

            .mbp-submit-btn {
                width: 100%;
                justify-content: center;
            }
        }
