/* ── Theme header logo override (Elementor) ─────────── */
.myhome-menu__logo { height: 60px !important; }
.myhome-menu__logo img { height: 100% !important; width: auto !important; }

/* ── Homepage search block (Figma 1:663) ─────────── */
.dubai-chat {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 120px;
    background: transparent;
}

.dubai-chat__container {
    width: 100%;
    max-width: 768px;
    text-align: center;
}

.dubai-chat__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 38px;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.3px;
    line-height: 34px;
    margin: 0 0 24px;
}

.dubai-chat__input-wrap {
    width: 100%;
    margin: 0 0 56px;
}

.dubai-chat__input-label {
    display: block;
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06), 0 4px 4px 0 rgba(0, 0, 0, 0.01);
    padding: 17px 53px 17px 17px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dubai-chat__input-label:focus-within {
    border-color: rgba(0, 0, 0, 0.24);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 4px 4px 0 rgba(0, 0, 0, 0.02);
}

.dubai-chat__input {
    width: 100%;
    height: 72px;
    padding: 0;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15.4px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: #000;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    box-sizing: border-box;
    display: block;
    text-align: left;
}

.dubai-chat__input::placeholder {
    color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

/* ── Rotating hint overlay ────────────────────────── */
.dubai-chat__hint {
    position: absolute;
    top: 17px;
    left: 17px;
    right: 53px;
    height: 24px;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.dubai-chat__hint--hidden {
    opacity: 0;
}

.dubai-chat__hint-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15.4px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: rgba(0, 0, 0, 0.6);
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.dubai-chat__hint-text--in {
    opacity: 1;
    transform: translateY(0);
}

.dubai-chat__hint-text--out {
    opacity: 0;
    transform: translateY(-10px);
}

.dubai-chat__submit {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 9999px;
    color: #333;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.15s;
}

.dubai-chat__submit:hover {
    background: rgba(0, 0, 0, 0.08);
}

.dubai-chat__submit:active {
    transform: scale(0.95);
}

.dubai-chat__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px 8px;
    max-width: 545px;
    margin: 0 auto;
}

.dubai-chat__tag {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 13px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 14px;
    color: rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 9999px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.02), 0 0 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-family: inherit;
}

.dubai-chat__tag:hover {
    border-color: rgba(0, 0, 0, 0.24);
    color: rgba(0, 0, 0, 0.85);
    background: rgba(0, 0, 0, 0.02);
}

.dubai-chat__tag--more {
    background: rgba(255, 255, 255, 0);
}

/* Responsive */
@media (max-width: 768px) {
    .dubai-chat {
        min-height: 75vh;
        min-height: 75dvh;
        padding: 40px 16px;
    }

    .dubai-chat__title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .dubai-chat__input-wrap {
        margin-bottom: 32px;
    }

    .dubai-chat__input-label {
        padding: 14px 48px 14px 14px;
    }

    .dubai-chat__input {
        height: 56px;
        font-size: 15px;
    }

    .dubai-chat__tag {
        height: 36px;
        font-size: 12.5px;
        padding: 0 11px;
    }
}
