﻿/* Modal Width */

#enquiryModal .modal-dialog {
    max-width: 50%;
}
#downloadBrochureModal .modal-dialog {
    max-width: 50%;
}

/* Modal */

.enquiry-modal {
    background: #000000!important;
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,.65);
}

/* Close */

.modal-close {
    position: absolute;
    right: 36px;
    top: 0px;
    z-index: 100;
   
}

/* Heading */

.tagline {
    color: #D4AF37;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 12px 0;
}

.form-text {
    color: #bdbdbd;
    margin-bottom: 25px;
}

/* Labels */

.enquiry-modal label {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Inputs */
textarea {
    min-height:80px!important;
}
.enquiry-modal .form-control,
.enquiry-modal .form-select {
    background: #171717;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 10px;
    height: 45px;
    color: #fff;
}

.enquiry-modal textarea.form-control {
    height: auto;
    resize: none;
    padding-top: 15px;
}

.enquiry-modal option {
    background: #111;
    color: #fff;
}

.enquiry-modal .form-control::placeholder {
    color: #9d9d9d;
}

.enquiry-modal .form-control:focus,
.enquiry-modal .form-select:focus {
    background: #171717;
    color: #fff;
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212,175,55,.20);
}

/* Button */

.gold-btn {
    height: 56px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg,#B8860B,#F4D03F);
    color: #111;
    font-size: 17px;
    font-weight: 700;
    transition: .3s;
}

    .gold-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(212,175,55,.35);
    }

/* Responsive */

@media(max-width:991px) {

    #enquiryModal .modal-dialog {
        max-width: 90%;
    }
    #downloadBrochureModal .modal-dialog {
        max-width: 90%;
    }
    .form-title {
        font-size: 28px;
    }

    .modal-body {
        padding: 30px 22px !important;
    }
}
