:root {
    --primary-font: 'Manrope', sans-serif;
    --bg-color: #F4F4F4;
    --card-bg: #EFEFEF;
    --text-dark: #000000;
    --text-gray: #666666;
    --border-color: #D1D1D1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Fixed: removed html from this selector */
.select-active {
    border: 1px solid black !important;
}

body.exquery-body {
    font-family: var(--primary-font);
    background-color: #FFFFFF;
    color: var(--text-dark);
}

.exquery-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.exquery-header {
    padding: 30px 0;
}

.exquery-header .exquery-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exquery-logo {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.exquery-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.exquery-nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.exquery-nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

.exquery-btn-outline {
    padding: 10px 24px;
    border: 1px solid var(--text-dark);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
}

/* Main Form Area */
.exquery-main {
    padding: 40px 0 80px;
    text-align: center;
}

.exquery-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.exquery-form-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Stepper */
.exquery-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.exquery-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.exquery-step-number {
    width: 50px;
    height: 50px;
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #fff;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-gray);
}

.exquery-step.active .exquery-step-number {
    border-color: #000;
    color: #000;
    font-weight: 700;
}

.exquery-step-label {
    font-size: 13px;
    color: var(--text-gray);
}

.exquery-step.active .exquery-step-label {
    color: #000;
    font-weight: 600;
}

.exquery-step-line {
    flex-grow: 1;
    height: 1px;
    border-bottom: 2px dashed var(--border-color);
    margin: 0 15px 25px 15px;
}

/* Form Card */
.exquery-form-card {
    background-color: rgba(242, 242, 242, 1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 0 auto;
}

.exquery-card-heading {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.exquery-card-subtext {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.exquery-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    text-align: left;
}

.exquery-form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 23px;
    text-align: left;
}

.exquery-form-group.full-width {
    grid-column: span 2;
}

.exquery-form-group label {
    font-size: 17px;
    margin-bottom: 10px;
    text-align: start;
}

.exquery-form-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: #FFF;
    font-family: var(--primary-font);
    font-size: 14px;
    outline: none;
}

/* Input with Icon (WhatsApp) */
.exquery-input-with-icon {
    display: flex;
}

.exquery-place-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border: 1px solid #E0E0E0;
    background: #FFF;
    border-radius: 12px 0px 0px 12px;
    font-size: 12px;
}

.enquery-form-phone {
    border-radius: 0px 12px 12px 0px !important;
}

/* Next Button */
.exquery-footer-actions {
    margin-top: 41px;
    position: relative;
    z-index: 10;
}

.exquery-submit-btn {
    background: #000;
    color: #fff;
    padding: 16px 80px;
    border-radius: 50px;
    border: none;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

/* Footer Section */
.exquery-footer {
    background-color: #F4F4F4;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.exquery-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.exquery-footer-nav {
    display: flex;
    gap: 25px;
}

.exquery-footer-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
}

.exquery-footer-bottom {
    display: flex;
    justify-content: flex-end;
}

.exquery-social-links {
    display: flex;
    gap: 20px;
}

.exquery-social-links a {
    color: #000;
    font-size: 20px;
}

.phone-input {
    display: flex;
    align-items: center;
}

.place-selector {
    position: relative;
    cursor: pointer;
}

.selected-place {
    display: flex;
    align-items: center;
    padding: 17px 10px;
    border: 1px solid #ddd;
    border-radius: 12px 0px 0px 12px;
    background: #fff;
}

.place-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.place-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    cursor: pointer;
}

.place-option:hover {
    background: #f2f2f2;
}

.place-option img,
.selected-place img {
    width: 20px;
}

.booked-annouce {
    font-size: 17px !important;
}

.error-msg {
    display: none !important;
    color: #dc2626;
    font-size: 0.75rem;
}

.error-msg.active {
    display: block !important;
}

.enquirySwiper table {
    min-width: 1400px;
}

.enquirySwiper {
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
}

/* ════════════════════════════════════════
   TABLET
════════════════════════════════════════ */
@media (max-width: 1024px) {
    .exquery-form-card {
        padding: 40px 24px;
    }
}

/* ════════════════════════════════════════
   MOBILE — all spacing fixes in one place
════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Body padding */
    body.exquery-body,
    body.bg-white {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    /* Form title */
    .exquery-form-title {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }

    /* Stepper */
    .exquery-stepper {
        padding: 0 10px;
        margin-bottom: 24px !important;
    }

    .exquery-step-label {
        font-size: 11px;
    }

    /* Form card */
    .exquery-form-card {
        padding: 24px 16px !important;
        margin-bottom: 0 !important;
    }

    /* Grid becomes single column */
    .exquery-form-grid {
        grid-template-columns: 1fr;
    }

    .exquery-form-group.full-width {
        grid-column: span 1;
    }

    /* Footer */
    .exquery-footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .exquery-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Step 4 summary card */
    .summary-card {
        padding: 15px 16px !important;
        margin-bottom: 0 !important;
    }

    /* Summary blocks spacing */
    .summary-block {
        margin-bottom: 20px !important;
    }

    /* "We'll Send You" card */
    .send-card {
        margin: 16px auto 16px !important;
        padding: 24px 16px !important;
    }

    /* Nav */
    .exquery-nav-list,
    .exquery-btn-outline {
        display: none;
    }
}

@media (max-width: 548px) {
    .exquery-step-number {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    /* ADD THIS */
    .exquery-form-card {
        padding: 30px 10px !important;
    }
}