/* ============================================
   Aztek Tilottama — Modal + Side Tab v4
   Matches reference design exactly
   ============================================ */

/* --- VERTICAL ENQUIRY SIDE TAB --- */
#aztek-enquiry-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99990;
    background: #C9A96E;
    color: #fff;
    font-family: "Be Vietnam", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.6;
    text-align: center;
    padding: 14px 10px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    box-shadow: -3px 0 12px rgba(0,0,0,0.15);
    transition: background 0.25s, padding 0.25s;
}
#aztek-enquiry-tab:hover {
    background: #b8944f;
    padding: 14px 14px;
}

/* --- OVERLAY --- */
.aztek-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: aztek-fade-in 0.3s ease forwards;
}
@keyframes aztek-fade-in { to { opacity: 1; } }

/* --- MODAL BOX --- */
.aztek-popup-box {
    background: #fff;
    border-radius: 20px;
    max-width: 460px;
    width: 92%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    transform: translateY(12px) scale(0.97);
    animation: aztek-slide-up 0.3s ease 0.1s forwards;
    opacity: 0;
}
@keyframes aztek-slide-up { to { opacity: 1; transform: translateY(0) scale(1); } }

/* --- CLOSE BUTTON (circle, top-right like reference) --- */
.aztek-popup-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.2s;
    line-height: 1;
    padding: 0;
}
.aztek-popup-close:hover { background: #e0e0e0; color: #222; }

/* --- HEADER (no logo, just title + subtitle) --- */
.aztek-popup-header {
    padding: 28px 32px 0;
    text-align: left;
}
.aztek-popup-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}
.aztek-popup-subtitle {
    font-family: "Be Vietnam", sans-serif;
    font-size: 13px;
    color: #C9A96E;
    margin-top: 4px;
    letter-spacing: 0.3px;
    font-weight: 400;
}

/* --- FORM BODY --- */
.aztek-popup-body {
    padding: 16px 32px 10px;
}
.aztek-popup-body .aztek-enquiry-form h3,
.aztek-popup-body .aztek-enquiry-form > p { display: none !important; }
.aztek-popup-body .wpcf7-form { margin: 0; }
.aztek-popup-body .wpcf7 br { display: none; }
.aztek-popup-body .wpcf7-form p { margin: 0; }

.aztek-popup-body .wpcf7 label {
    font-family: "Be Vietnam", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.aztek-popup-body .wpcf7 input[type="text"],
.aztek-popup-body .wpcf7 input[type="tel"],
.aztek-popup-body .wpcf7 input[type="email"],
.aztek-popup-body .wpcf7 select,
.aztek-popup-body .wpcf7 textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    font-family: "Be Vietnam", sans-serif;
    color: #333;
    background: #f7f7f7;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.aztek-popup-body .wpcf7 textarea {
    min-height: 72px;
    resize: vertical;
}
.aztek-popup-body .wpcf7 input:focus,
.aztek-popup-body .wpcf7 select:focus,
.aztek-popup-body .wpcf7 textarea:focus {
    border-color: #C9A96E;
    background: #fff;
    outline: none;
}
.aztek-popup-body .wpcf7 input::placeholder,
.aztek-popup-body .wpcf7 textarea::placeholder { color: #aaa; font-weight: 300; }

/* --- SUBMIT BUTTON (brown, rounded, with icon, matching reference) --- */
.aztek-popup-body .wpcf7 input[type="submit"] {
    width: 100%;
    background: #B07C3B;
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-top: 4px;
    font-family: "Be Vietnam", sans-serif;
    transition: background 0.25s ease;
}
.aztek-popup-body .wpcf7 input[type="submit"]:hover {
    background: #8f6230;
}

.aztek-popup-body .wpcf7-response-output {
    font-size: 12px;
    margin: 8px 0 0 !important;
    padding: 8px 12px !important;
    border-radius: 6px;
}
.aztek-popup-body .wpcf7-spinner { display: none; }

/* --- FOOTER --- */
.aztek-popup-footer {
    display: flex;
    justify-content: space-between;
    padding: 4px 32px 16px;
}
.aztek-popup-footer span {
    font-family: "Be Vietnam", sans-serif;
    font-size: 10px;
    color: #bbb;
    letter-spacing: 0.3px;
}

/* --- HIDE HEADER SEARCH/PHONE AREA --- */
.site-header .header-group,
.site-header .header-search,
.site-header .search-button { display: none !important; }

/* --- RESPONSIVE --- */
@media (max-width: 480px) {
    .aztek-popup-box { max-width: 360px; border-radius: 14px; }
    .aztek-popup-header { padding: 28px 24px 0; }
    .aztek-popup-title { font-size: 22px; }
    .aztek-popup-body { padding: 16px 24px 12px; }
    .aztek-popup-footer { padding: 4px 24px 16px; }
    #aztek-enquiry-tab { font-size: 11px; padding: 10px 8px; }
}
