﻿/* ==============================
   Inquiry Popup Modal (No Bootstrap)
   ============================== */

.inq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

    .inq-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(0,0,0,.35);
        background: #000;
    }

.full-enq {
    padding: 0 !important;
    border: none !important;
    margin-left: 18px !important;
    animation: glow 2s infinite alternate linear;
    font-size: 15px;
}
@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(255,255,255,.8), 0 0 20px rgba(255,255,255,.8), 0 0 30px rgba(255,255,255,.8), 0 0 40px rgba(0, 100, 151,.8), 0 0 50px rgba(0, 100, 151,.8), 0 0 60px rgba(0, 100, 151,.5), 0 0 70px rgba(0, 100, 151,.5), 0 0 90px rgba(0, 100, 151,.5), 0 0 100px rgba(0, 100, 151,.5);
    }

    100% {
        text-shadow: 0 0 2px rgba(255,255,255,.8), 0 0 8px rgba(255,255,255,.8), 0 0 10px rgba(55,255,255,.8), 0 0 20px rgba(50, 100, 151,.5), 0 0 30px rgba(50, 100, 151,.5), 0 0 40px rgba(50, 100, 151,.5), 0 0 50px rgba(50, 100, 151,.5), 0 0 100px rgba(50, 100, 151,.5);
    }
}
    .responsive-enq {
        margin: 20px 0 0 -8px !important;
    }

/*#box {
    font-size: 16px;
    text-transform: uppercase;
    background: linear-gradient(0, white, #fff);
    background-size: 80%;
    background-repeat: no-repeat;
    animation: shine 2s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

@keyframes shine {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 500%;
    }
}*/


    /* Modal container */
    .inq-modal {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: none; /* hidden by default */
    }

    /* When open */
    .inq-modal.open {
        display: block;
    }

/* Overlay */
.inq-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(6px);
}

/* Dialog */
.inq-dialog {
    position: relative;
    width: min(720px, 94vw);
    max-height: 88vh;
    margin: 6vh auto;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    overflow: auto;
    padding: 26px;
    box-shadow: 0 20px 80px rgba(0,0,0,.65);
    transform: translateY(10px);
    opacity: 0;
    animation: inqPop .22s ease forwards;
}

@keyframes inqPop {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close button */
.inq-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

    .inq-close:hover {
        transform: rotate(90deg);
        background: rgba(255,255,255,.10);
    }

/* Header */
.inq-header h2 {
    margin: 0;
    font-size: 26px;
    letter-spacing: .4px;
    color: #fff;
}

.inq-header p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
}

/* Form */
.inq-form {
    margin-top: 18px;
}

.inq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 14px;
}

.inq-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255,255,255,.72);
    letter-spacing: .2px;
}

.inq-captcha-row{
    margin-top: 20px;
}
.inq-captcha-row input {
    width: 20%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
}


.inq-field input,
.inq-field textarea  {
    width: 95%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    padding: 12px 12px;
    border-radius: 12px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .inq-field input:focus,
    .inq-field textarea:focus {
        border-color: rgba(255,255,255,.28);
        box-shadow: 0 0 0 4px rgba(255,255,255,.07);
    }

.inq-field textarea {
    resize: vertical;
    min-height: 120px;
}

.inq-field.full {
    grid-column: 1 / -1;
}

/* Actions */
.inq-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.inq-btn-secondary {
    padding: 11px 18px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.8);
    cursor: pointer;
}

.inq-btn-primary {
    padding: 11px 18px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #000;
    font-weight: 700;
}

    .inq-btn-primary:hover {
        filter: brightness(0.95);
    }

/* Responsive */
@media (max-width: 720px) {
    .inq-dialog {
        padding: 18px;
        border-radius: 14px;
    }

    .inq-grid {
        grid-template-columns: 1fr;
    }

    .inq-actions {
        flex-direction: column-reverse;
    }

    .inq-btn-secondary,
    .inq-btn-primary {
        width: 100%;
    }
}








/* Honeypot (invisible, does NOT affect layout) */
.inq-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}



/* ==========================
   Button Loader
   ========================== */

.inq-btn-primary {
    position: relative;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .inq-btn-primary.loading {
        pointer-events: none;
        opacity: 0.9;
    }

    .inq-btn-primary .btn-loader {
        display: none;
        width: 18px;
        height: 18px;
        border: 2px solid rgba(0,0,0,.25);
        border-top-color: #000;
        border-radius: 50%;
        animation: spin 0.7s linear infinite;
    }

    .inq-btn-primary.loading .btn-text {
        visibility: hidden;
    }

    .inq-btn-primary.loading .btn-loader {
        display: inline-block;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
