* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --gradient-bg: radial-gradient(at bottom left, #2764C0 0%, #3E0D63 40%, #140938 80%),
        linear-gradient(90deg, transparent 0%, rgba(67, 67, 186, 0.2) 5%, transparent 10%) repeat-x,
        linear-gradient(to top right, #5B137F 0%, #3E0D63 100%);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-primary: white;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

body {
    background: var(--gradient-bg);
    background-blend-mode: screen, normal, normal;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.entry-content {
    text-align: center;
    color: var(--text-primary);
}

.entry-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.entry-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.entry-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .entry-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .entry-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

.dalia {
    position: relative;
    width: 100%;
    height: 100dvh;
    max-width: 400px;
    max-height: 100dvh;
    background: inherit;
    overflow: hidden;
    border-radius: 0;
}

.global-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    z-index: 30;
}

.global-back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.global-back-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
}

@media (min-width: 768px) {
    .dalia {
        width: 400px;
        height: 90vh;
        border-radius: 30px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
}

.hidden {
    display: none !important;
}

.welcome-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.form-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}

.form-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 320px;
    opacity: 0;
    transform: translateY(12px);
    transition: none;
    position: relative;
}


.video-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    margin-bottom: 16px;
    border-radius: 100%;
    overflow: hidden;
}

.intro-video,
.flow-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: transparent !important;
}

.form-step.active {
    display: flex;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUpStagger 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-step.active .form-back-btn {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUpStagger 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.05s;
}

.form-step.active>*:nth-child(2) {
    animation-delay: 0.1s;
}

.form-step.active>*:nth-child(3) {
    animation-delay: 0.2s;
}

.form-step.active>*:nth-child(4) {
    animation-delay: 0.3s;
}

.form-step.active>*:nth-child(5) {
    animation-delay: 0.4s;
}

.form-step.active>*:nth-child(6) {
    animation-delay: 0.5s;
}

.form-step.active .button-group .choice-btn {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUpStagger 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-step.active .button-group .choice-btn:nth-child(1) {
    animation-delay: 0.5s;
}

.form-step.active .button-group .choice-btn:nth-child(2) {
    animation-delay: 0.6s;
}

.form-step.hiding {
    animation: fadeOut 0.3s ease forwards;
}

.form-step.hiding>* {
    animation: none !important;
}

.form-step h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-step h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.brand-name {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 500;
}

.question {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* width: 100%; */
}

.choice-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.choice-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.choice-btn:hover::before {
    left: 100%;
}

.choice-btn.primary {
    background-color: white;
    color: #1f2937;
}

.choice-btn.primary:hover {
    background-color: #f9fafb;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.choice-btn.secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.choice-btn.secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.choice-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-3px) scale(1.02);
    border-image: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3)) 1;
}

.choice-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
    transform: none !important;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.phone-input-group {
    display: flex;
    gap: 4px;
    width: 100%;
}

.country-select {
    padding: 14px 8px;
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 48px;
    width: 90px;
    cursor: pointer;
}

.country-select option {
    background: #1a1a2e;
    color: var(--text-primary);
}

.country-select:focus {
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

.form-input {
    padding: 14px 16px;
    border: 2px solid var(--glass-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 48px;
}

.phone-input {
    width: 72%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

.next-btn {
    padding: 16px 24px;
    background-color: white;
    color: #1f2937;
    border: none;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
}

.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.checkbox-group {
    width: 100%;
    margin-top: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    margin-top: 2px;
}

.form-checkbox:checked+.checkmark {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    color: var(--text-primary);
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 400;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.success-message {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.text-chat {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.text-chat.hide {
    transform: translateX(-100%);
    opacity: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.settings-button,
.home-button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.settings-button:hover,
.home-button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.settings-button svg,
.home-button svg {
    width: 20px;
    height: 20px;
}

.settings {
    position: absolute;
    top: 60px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.settings.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.settings button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #374151;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    text-align: left;
    transition: background 0.2s ease;
}

.settings button:hover {
    background: rgba(0, 0, 0, 0.1);
}

.chat-box {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.user-message {
    align-self: flex-end;
    background: white;
    color: #374151;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 18px;
    max-width: 80%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bot-message {
    align-self: flex-start;
    background: var(--glass-bg);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bot-message a {
    color: #60a5fa;
    text-decoration: underline;
}

.user-message p,
.bot-message p {
    margin: 0;
    line-height: 1.4;
}

.typing-indicator {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpStagger {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes typingAnimation {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.predefined-query {
    margin: 20px 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.predefined-query::-webkit-scrollbar {
    display: none;
}

.query-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: max-content;
}

.query {
    color: var(--text-primary);
    font-size: 14px;
    margin: 0;
}

.input-area {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 20px;
}

.input-box {
    flex: 1;
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 2px;
}

.text-input {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
}

.text-input::placeholder {
    color: var(--text-muted);
}

.voice-input {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 4px;
}

.voice-input:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mic-icon {
    width: 18px;
    height: 18px;
    fill: var(--text-primary);
}

.send-button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.voice-chat {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
    transform: translateX(100%) translateY(100%) scale(0.3);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 5;
}

.voice-chat.show {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
}

.voice-chat .header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.back-button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.back-button svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
}

.app-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.voice-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.wave-circle {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow:
        0 0 40px rgba(59, 130, 246, 0.4),
        0 0 80px rgba(99, 102, 241, 0.3),
        0 0 120px rgba(129, 140, 248, 0.2);
    animation: circleGlow 3s ease-in-out infinite alternate;
}

.water-wave1 {
    position: absolute;
    top: 40%;
    left: -25%;
    background: #60a5fa;
    opacity: 0.7;
    width: 200%;
    height: 200%;
    border-radius: 40%;
    animation: water-waves linear infinite;
    animation-duration: 5s;
    transition: all 0.3s ease;
}

.water-wave2 {
    position: absolute;
    top: 45%;
    left: -35%;
    background: #93c5fd;
    opacity: 0.5;
    width: 200%;
    height: 200%;
    border-radius: 35%;
    animation: water-waves linear infinite;
    animation-duration: 7s;
    transition: all 0.3s ease;
}

.water-wave3 {
    position: absolute;
    top: 50%;
    left: -35%;
    background: #dbeafe;
    opacity: 0.3;
    width: 200%;
    height: 200%;
    border-radius: 33%;
    animation: water-waves linear infinite;
    animation-duration: 11s;
    transition: all 0.3s ease;
}

.wave-circle.recording .water-wave1 {
    animation-duration: 4.2s;
}

.status-text {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
}

.user-voice-message {
    background: none;
    color: var(--text-primary);
    text-align: center;
    max-width: 90%;
    border: none;
    box-shadow: none;
}

.bot-voice-message {
    background: none;
    color: var(--text-primary);
    text-align: center;
    max-width: 90%;
    border: none;
    backdrop-filter: none;
}

.bottom-controls {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.control-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.control-button svg {
    width: 24px;
    height: 24px;
    fill: var(--text-primary);
}

.mic-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.mic-button:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.mic-button.recording {
    animation: micPulse 1.5s ease-in-out infinite;
}

.mic-button svg {
    width: 32px;
    height: 32px;
    fill: var(--text-primary);
}

.record-text {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

@keyframes water-waves {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes circleGlow {
    0% {
        box-shadow:
            0 0 40px rgba(59, 130, 246, 0.4),
            0 0 80px rgba(99, 102, 241, 0.3),
            0 0 120px rgba(129, 140, 248, 0.2);
    }

    100% {
        box-shadow:
            0 0 60px rgba(59, 130, 246, 0.6),
            0 0 100px rgba(99, 102, 241, 0.4),
            0 0 140px rgba(129, 140, 248, 0.3);
    }
}

@keyframes micPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 212, 170, 0);
    }
}

.chat-box::-webkit-scrollbar {
    width: 2px;
    margin-left: 6px;
}

.chat-box::-webkit-scrollbar-track {
    background: transparent;
}

.chat-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-box:hover::-webkit-scrollbar-thumb {
    opacity: 1;
}

.chat-box::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
    body {
        align-items: stretch;
        justify-content: stretch;
    }

    .dalia {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-width: none;
        max-height: none;
        border-radius: 0;
        border: none;
    }

    .form-container {
        padding: 20px 15px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .form-step h1 {
        font-size: 2rem;
    }

    .form-step h2 {
        font-size: 1.75rem;
    }

    .text-chat,
    .voice-chat {
        padding: 15px;
        height: 100vh;
        height: 100dvh;
    }

    .text-chat {
        padding-bottom: 20px;
    }

    .chat-box {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .input-area {
        margin-top: 10px;
        margin-bottom: 10px;
        padding-bottom: env(safe-area-inset-bottom, 10px);
    }

    .predefined-query {
        margin: 15px 0;
        padding: 8px 0;
    }

    .wave-circle {
        width: 150px;
        height: 150px;
    }

    .voice-container {
        padding: 15px;
        flex: 1;
        justify-content: space-around;
    }

    .bottom-controls {
        padding: 20px 15px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }

    .global-back-btn {
        top: 15px;
        left: 15px;
    }

    .header {
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .voice-chat .header {
        padding: 15px;
    }

    .country-select {
        width: 80px;
        padding: 12px 8px;
        font-size: 0.8rem;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}