:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

@supports (padding-top: env(safe-area-inset-top)) {
    .fixed {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

.mobile-nav {
    padding-bottom: env(safe-area-inset-bottom);
}



input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #FFA500;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #FFA500;
    border-color: #FFA500;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    top: 2px;
    left: 6px;
    transform: rotate(45deg);
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #FFA500;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.mobile-nav {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #FFA500;
    transition: width 0.3s ease;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f3f4f6;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-indicator.active {
    background-color: #FFA500;
    border-color: #FFA500;
    color: white;
}

.step-indicator.completed {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: #d1d5db;
}

.step-line.active {
    background-color: #FFA500;
}

.rating-stars i {
    color: #d1d5db;
}

.rating-stars i.filled {
    color: #FFA500;
}

.tab-button {
    position: relative;
}

.tab-button.active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #FFA500;
    border-radius: 3px;
}

.service-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

:where([class^="ri-"])::before {
    content: "\f3c2";
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    min-height: 44px;
}

.select-options {
    position:none ;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 50;
    display: none;
}

.search-container {
    padding: 0.75rem;
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
}

.select-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select-option:hover {
    background: #f3f4f6;
}

.select-option.selected {
    background: #eff6ff;
    color: #3b82f6;
}

.native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.no-results {
    padding: 0.75rem 1rem;
    color: #6b7280;
    text-align: center;
}