
        .elegance-contact-container {
            min-height: 100vh;
            
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            font-family: 'Georgia', serif;
        }

        .elegance-form-wrapper {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            width: 100%;
        }

        .elegance-title {
            text-align: center;
            font-size: 2.5rem;
            color: #d4a574;
            margin-bottom: 3rem;
            font-style: italic;
            font-weight: 400;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .elegance-form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            align-items: end;
        }

        .elegance-input-group {
            position: relative;
        }

        .elegance-input-field {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #d4a574;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            outline: none;
            color: #333;
        }

        .elegance-input-field:focus {
            border-color: #b8935c;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
            transform: translateY(-2px);
        }

        .elegance-input-field::placeholder {
            color: #999;
            font-style: italic;
        }

        .elegance-select-wrapper {
            position: relative;
        }

        .elegance-select-field {
            width: 100%;
            padding: 1rem 1.5rem;
            padding-right: 3rem;
            border: 2px solid #d4a574;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            outline: none;
            color: #333;
            cursor: pointer;
            appearance: none;
        }

        .elegance-select-field:focus {
            border-color: #b8935c;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
            transform: translateY(-2px);
        }

        .elegance-select-arrow {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #d4a574;
            font-size: 1.2rem;
        }

        .elegance-submit-btn {
            background: linear-gradient(135deg, #d4a574 0%, #b8935c 100%);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
            font-family: inherit;
            min-width: 150px;
        }

        .elegance-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(212, 165, 116, 0.4);
            background: linear-gradient(135deg, #c19660 0%, #a6844f 100%);
        }

        .elegance-submit-btn:active {
            transform: translateY(-1px);
        }
        
        .navbar-wrappereb{
            width:100%;
            margin:0 -41px 173px 17px;
            margin-top:10px;
            margin-bottom:10px;
        }
        

        /* Responsive Design */
        @media (max-width: 768px) {
            .elegance-contact-container {
                padding: 1rem;
            }

            .elegance-form-wrapper {
                padding: 2rem 1.5rem;
                border-radius: 15px;
            }

            .elegance-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .elegance-form-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .elegance-input-field,
            .elegance-select-field {
                padding: 0.9rem 1.2rem;
                font-size: 0.95rem;
            }

            .elegance-submit-btn {
                padding: 0.9rem 2rem;
                font-size: 1rem;
                letter-spacing: 1.5px;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .elegance-title {
                font-size: 1.6rem;
                line-height: 1.3;
            }

            .elegance-form-wrapper {
                padding: 1.5rem 1rem;
            }

            .elegance-input-field,
            .elegance-select-field {
                padding: 0.8rem 1rem;
            }

            .elegance-submit-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        /* Animation for form appearance */
        @keyframes elegance-fade-in {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .elegance-form-wrapper {
            animation: elegance-fade-in 0.8s ease-out;
        }

        .elegance-input-field:hover,
        .elegance-select-field:hover {
            border-color: #c19660;
        }