.dt-quote-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
}

.dt-quote-modal.show {
    display: flex;
}

.dt-quote-modal-content {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 32px 24px 24px;
    min-width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dt-quote-modal-close,
.dt-booking-modal-close,
.dt-success-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
}

.dt-quote-modal-close,
.dt-booking-modal-close {
    color: #fff;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.dt-success-close {
    color: #fff;
}

.dt-quote-label {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin-top: 9px;
    margin-bottom: 1px;
    display: block;
    text-align: left;
}

.dt-quote-input {
    width: 260px;
    padding: 10px 18px;
    border-radius: 22px;
    border: none;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f1f1f;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.dt-quote-input::placeholder {
    color: #5e5e5e;
    font-weight: 600;
}

.dt-quote-submit {
    background: #fff;
    color: #111;
    font-weight: 700;
    border: none;
    border-radius: 18px;
    padding: 8px 20px;
    font-size: 1.05rem;
    margin-top: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.dt-quote-footer {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 5px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.dt-booking-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 12px;
    width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.dt-booking-section {
    flex: 2;
    text-align: center;
    padding: 10px;
}

.dt-callback-section {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.dt-callback-buttons {
    margin: 15px 0;
}

.dt-callback-buttons button {
    background: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.dt-yes-btn {
    color: #000;
}

.dt-callback-info {
    font-size: 12px;
    margin-top: 10px;
    color: #fff;
    font-weight: 600;
}

.dt-divider {
    width: 1px;
    background: #ccc;
    margin: 0 20px;
}

.dt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 11px 0;
}

.dt-form-grid input,
.dt-form-grid select {
    padding: 10px;
    border: none;
    border-radius: 8px;
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: 700;
    color: #1f1f1f;
}

.dt-form-grid select {
    color: #5e5e5e;
    font-weight: 600;
}

.dt-form-grid select:valid {
    color: #1f1f1f;
    font-weight: 700;
}

.dt-form-grid input {
    font-size: 1.08rem;
}

.dt-form-grid input::placeholder {
    color: #5e5e5e;
    font-weight: 600;
}

#successModal.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
}

#successModal.show {
    display: flex;
}

.dt-success-box {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 32px 24px 24px;
    min-width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dt-success-box h2,
.dt-success-box h3,
.dt-success-box p {
    color: #fff;
    text-align: center;
}

.pac-container {
    z-index: 10000 !important;
}

@media (max-width: 900px) {
    .dt-booking-container {
        width: 90%;
        flex-wrap: wrap;
    }

    .dt-divider {
        width: 100%;
        height: 1px;
        margin: 16px 0;
    }
}

@media (max-width: 600px) {
    .dt-quote-modal-content {
        min-width: 90vw;
        max-width: 96vw;
        padding: 18px 6vw;
        border-radius: 14px;
    }

    .dt-quote-input {
        width: 100%;
        padding: 12px 16px;
        border-radius: 14px;
        font-size: 1.08rem;
    }

    .dt-booking-container {
        flex-direction: column;
        align-items: center;
        width: 95%;
        padding: 10px;
    }

    .dt-callback-section,
    .dt-booking-section {
        width: 100%;
        padding: 12px;
    }

    .dt-form-grid {
        grid-template-columns: 1fr;
    }

    .dt-callback-buttons button,
    .dt-quote-submit {
        width: 100%;
        max-width: 280px;
    }
}

















.dt-booking-modal-close {
    top: 6px;
}
