﻿.enquiry-modal {
    background: #111;
    border: 2px solid #d4af37;
    border-radius: 20px;
}

.modal-title {
    color: #d4af37;
    font-weight: 700;
    font-size: 28px;
}

.modal-body {
    padding: 25px 30px 30px;
}

.custom-label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

    .custom-label span {
        color: #d4af37;
    }

.custom-input {
    background: #1b1b1b;
    border: 1px solid #333;
    color: #fff;
    height: 52px;
    border-radius: 10px;
}

    .custom-input::placeholder {
        color: #999;
    }

    .custom-input:focus {
        background: #1b1b1b;
        color: #fff;
        border-color: #d4af37;
        box-shadow: 0 0 10px rgba(212,175,55,.25);
    }

.form-select {
    color: #999;
}

.submit-btn {
    background: #d4af37;
    color: #000;
    height: 55px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    transition: .3s;
}

    .submit-btn:hover {
        background: #e8bf4a;
        color: #000;
        transform: translateY(-2px);
    }

.custom-input.form-select {
    background-color: #1b1b1b;
    color: #fff;
    border: 1px solid #333;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M2 5l6 6 6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 40px;
}