@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
}

/* Custom colors matching De Gasquet visual identity */
.bg-teal-primary {
    background-color: #0d606f;
}
.text-teal-primary {
    color: #0d606f;
}
.border-teal-primary {
    border-color: #0d606f;
}
.bg-teal-light {
    background-color: #e6f4f8;
}
.text-teal-dark {
    color: #0a3a40;
}
.bg-teal-dark {
    background-color: #0a3a40;
}

/* Custom scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Form progress tracker */
.step-dot.active {
    background-color: #0d606f;
    border-color: #0d606f;
    color: white;
}
.step-dot.completed {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
}

/* Animations for step transition */
.step-content {
    display: none;
}
.step-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

/* Searchable city combobox */
.combobox-list {
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    padding: 0.25rem 0;
    list-style: none;
}
.combobox-list li {
    padding: 0.45rem 0.9rem;
    font-size: 0.875rem;
    cursor: pointer;
    color: #1f2937;
}
.combobox-list li:hover,
.combobox-list li.active {
    background: #e6f4f8;
    color: #0d606f;
}
