/* Additional styles for the Tossr Simple Theme */

/* Auth Page Styles */
.auth-container {
    max-width: 32rem;
    margin: 3rem auto;
    padding: 0 1rem;
}

.auth-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: rgb(107 114 128);
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-footer {
    text-align: center;
    color: rgb(107 114 128);
    font-size: 0.875rem;
}

.auth-link {
    color: rgb(37 99 235);
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-message {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}

.auth-message.error {
    background-color: rgb(254 242 242);
    color: rgb(185 28 28);
    border: 1px solid rgb(254 202 202);
}

.auth-message.success {
    background-color: rgb(240 253 244);
    color: rgb(22 163 74);
    border: 1px solid rgb(187 247 208);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(55 65 81);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(209 213 219);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.form-input:focus {
    outline: none;
    border-color: rgb(59 130 246);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.w-full {
    width: 100%;
}

/* Hero Section Styles */
.hero-section {
    background-color: #3b5bdb;
    color: white;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
}

.hero-description {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        padding: 0;
    }
}

.hero-search {
    max-width: 40rem;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .hero-search {
        margin-bottom: 2rem;
    }
}

/* New search form styles */
.search-form-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.search-input-container {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 1;
}

.search-input {
    width: 100%;
    height: 48px;
    padding: 8px 16px 8px 48px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

.search-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media (min-width: 640px) {
    .search-controls {
        flex-direction: row;
    }
}

.location-container {
    flex: 1;
}

.location-dropdown {
    width: 100%;
    height: 48px;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background-color: white;
    color: #4b5563;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    font-size: 16px;
}

.search-button-container {
    flex: 1;
}

.search-button {
    width: 100%;
    height: 48px;
    background-color: white;
    color: #3b5bdb;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: #f9fafb;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    padding: 0 1.5rem;
    border: 1px solid white;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
    max-width: 16rem;
}

@media (min-width: 640px) {
    .hero-button {
        width: auto;
        max-width: none;
    }
}

.hero-button-primary {
    background-color: white;
    color: #3b5bdb;
}

.hero-button-primary:hover {
    background-color: #f9fafb;
}

.hero-button-secondary {
    background-color: transparent;
    color: white;
}

.hero-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition-property: background-color, border-color, color;
    transition-duration: 150ms;
    cursor: pointer;
}

.button-primary {
    background-color: rgb(37 99 235);
    color: white;
}

.button-primary:hover {
    background-color: rgb(29 78 216);
}

.button-secondary {
    background-color: rgb(229 231 235);
    color: rgb(31 41 55);
}

.button-secondary:hover {
    background-color: rgb(209 213 219);
}

.button-outline {
    border: 1px solid rgb(209 213 219);
    background-color: white;
    color: rgb(75 85 99);
}

.button-outline:hover {
    background-color: rgb(249 250 251);
}

.button-white {
    background-color: white;
    color: rgb(37 99 235);
}

.button-white:hover {
    background-color: rgb(243 244 246);
}

.button-outline-white {
    border: 1px solid white;
    background-color: transparent;
    color: white;
}

.button-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.button-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.w-full {
    width: 100%;
}

/* Header Styles */
.site-header {
    background-color: white;
    border-bottom: 1px solid rgb(229 231 235);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b5bdb;
    text-decoration: none;
}

.site-logo:hover {
    color: #364fc7;
}

/* Navigation Styles */
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(75 85 99);
    transition-property: color, background-color;
    transition-duration: 150ms;
}

.nav-link:hover {
    color: rgb(17 24 39);
    background-color: rgb(249 250 251);
}

.nav-link.active {
    color: #3b5bdb;
    background-color: rgb(239 246 255);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(75 85 99);
    transition-property: color, background-color;
    transition-duration: 150ms;
}

.mobile-nav-link:hover {
    color: rgb(17 24 39);
    background-color: rgb(249 250 251);
}

.mobile-nav-link.active {
    color: #3b5bdb;
    background-color: rgb(239 246 255);
}

.nav-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 12rem;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 0.5rem 0;
    z-index: 50;
}

.nav-dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: rgb(55 65 81);
    transition: background-color 0.2s;
}

.nav-dropdown-item:hover {
    background-color: rgb(249 250 251);
}

.nav-dropdown-divider {
    height: 1px;
    background-color: rgb(229 231 235);
    margin: 0.5rem 0;
}

/* Hidden Utility */
.hidden {
    display: none;
}

/* Additional Color Utilities */
.text-red-500 {
    color: rgb(239 68 68);
}

.text-red-600 {
    color: rgb(220 38 38);
}

.text-red-700 {
    color: rgb(185 28 28);
}

.text-green-500 {
    color: rgb(34 197 94);
}

.text-green-600 {
    color: rgb(22 163 74);
}

.text-green-700 {
    color: rgb(21 128 61);
}

/* Background Colors */
.bg-red-50 {
    background-color: rgb(254 242 242);
}

.bg-green-50 {
    background-color: rgb(240 253 244);
}

.bg-blue-50 {
    background-color: rgb(239 246 255);
}

.bg-gray-50 {
    background-color: rgb(249 250 251);
}

.bg-gray-100 {
    background-color: rgb(243 244 246);
}

.bg-gray-200 {
    background-color: rgb(229 231 235);
}

.bg-gray-800 {
    background-color: rgb(31 41 55);
}

/* Border Utilities */
.border {
    border-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-r {
    border-right-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-l {
    border-left-width: 1px;
}

.border-gray-100 {
    border-color: rgb(243 244 246);
}

.border-gray-200 {
    border-color: rgb(229 231 235);
}

.border-gray-700 {
    border-color: rgb(55 65 81);
}

.border-red-200 {
    border-color: rgb(254 202 202);
}

.border-green-200 {
    border-color: rgb(187 247 208);
}

/* Spacing Utilities */
.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

/* Flexbox and Grid Utilities */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

/* Responsive Utilities */
@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:mb-0 {
        margin-bottom: 0;
    }
    
    .md\:w-1\/3 {
        width: 33.333333%;
    }
    
    .md\:w-2\/3 {
        width: 66.666667%;
    }
}

/* Additional Padding and Margin */
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.right-0 {
    right: 0;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.z-10 {
    z-index: 10;
}

/* Typography */
.underline {
    text-decoration: underline;
}

.hover\:underline:hover {
    text-decoration: underline;
}

/* Transitions */
.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgb(239 246 255);
    color: rgb(37 99 235);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-price {
    font-weight: 600;
    color: rgb(22 163 74);
    font-size: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgb(17 24 39);
    line-height: 1.4;
}

.card-title-link {
    color: rgb(17 24 39);
    text-decoration: none;
    transition: color 0.2s;
}

.card-title-link:hover {
    color: rgb(37 99 235);
    text-decoration: underline;
}

.card-description {
    color: rgb(107 114 128);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Provider Section */
.card-provider {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(243 244 246);
}

.provider-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgb(239 246 255);
    color: rgb(37 99 235);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.provider-name {
    font-weight: 500;
    color: rgb(31 41 55);
    transition: color 0.2s;
}

.provider-name:hover {
    color: rgb(37 99 235);
    text-decoration: underline;
}

/* Card Meta */
.card-meta {
    display: flex;
    justify-content: space-between;
    color: rgb(107 114 128);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card-location, .card-date {
    display: flex;
    align-items: center;
}

.card-icon {
    margin-right: 0.5rem;
    color: rgb(156 163 175);
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgb(243 244 246);
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-value {
    font-weight: 600;
    color: rgb(17 24 39);
}

.rating-count {
    color: rgb(107 114 128);
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 0.5rem;
}

.card-contact-btn, .card-login-btn, .card-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.card-contact-btn, .card-login-btn {
    background-color: rgb(239 246 255);
    color: rgb(37 99 235);
    border: none;
}

.card-contact-btn:hover, .card-login-btn:hover {
    background-color: rgb(219 234 254);
}

.card-contact-btn i, .card-login-btn i {
    margin-right: 0.25rem;
}

.card-details-btn {
    background-color: rgb(37 99 235);
    color: white;
}

.card-details-btn:hover {
    background-color: rgb(29 78 216);
}

/* Phone Modal */
.phone-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 0.75rem;
}

.phone-modal-content {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 80%;
    max-width: 20rem;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(17 24 39);
    text-align: center;
    margin-bottom: 1rem;
}

.phone-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.phone-call-btn, .phone-sms-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.phone-call-btn {
    background-color: rgb(239 246 255);
    color: rgb(37 99 235);
}

.phone-call-btn:hover {
    background-color: rgb(219 234 254);
}

.phone-sms-btn {
    background-color: rgb(240 253 244);
    color: rgb(22 163 74);
}

.phone-sms-btn:hover {
    background-color: rgb(220 252 231);
}

.phone-call-btn i, .phone-sms-btn i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.phone-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(229 231 235);
    color: rgb(107 114 128);
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.phone-close-btn:hover {
    background-color: rgb(209 213 219);
    color: rgb(55 65 81);
}

/* Category Section Styles */
.category-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

@media (min-width: 768px) {
    .category-section {
        padding: 5rem 0;
    }
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .category-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.category-description {
    font-size: 1rem;
    color: #4b5563;
    max-width: 36rem;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 0 1rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .category-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 3rem;
    }
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.5rem;
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: #4263eb;
}

.category-icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.category-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edf2ff;
    color: #3b5bdb;
    border-radius: 50%;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .category-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.category-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .category-name {
        font-size: 1rem;
    }
}

.category-card:hover .category-name {
    color: #4263eb;
}

@media (min-width: 1024px) {
    .category-card {
        padding: 1.25rem 0.75rem;
    }
}

/* How It Works Section Styles */
.how-it-works-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

@media (min-width: 768px) {
    .how-it-works-section {
        padding: 5rem 0;
    }
}

.how-it-works-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .how-it-works-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.how-it-works-description {
    font-size: 1rem;
    color: #4b5563;
    max-width: 36rem;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 0 1rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .how-it-works-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 3rem;
    }
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .how-it-works-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2.5rem;
        padding: 0;
    }
}

.how-it-works-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
    .how-it-works-card {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .how-it-works-card {
        padding: 2.5rem 2rem;
    }
}

.how-it-works-icon-container {
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    color: #3b5bdb;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

@media (min-width: 640px) {
    .how-it-works-icon-container {
        width: 4.5rem;
        height: 4.5rem;
        margin-bottom: 1.25rem;
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .how-it-works-icon-container {
        width: 5rem;
        height: 5rem;
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }
}

.how-it-works-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .how-it-works-step-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.how-it-works-step-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .how-it-works-step-description {
        font-size: 1.125rem;
        line-height: 1.6;
    }
}

/* CTA Section Styles */
.cta-section {
    background-color: #3b5bdb;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.cta-description {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    padding: 0 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
    max-width: 16rem;
}

@media (min-width: 640px) {
    .cta-button {
        width: auto;
        max-width: none;
    }
}

.cta-button-primary {
    background-color: white;
    color: #3b5bdb;
}

.cta-button-primary:hover {
    background-color: #f9fafb;
}

.cta-button-secondary {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Services Page Styles */
.services-header {
    background-color: white;
    border-bottom: 1px solid rgb(229 231 235);
    padding: 1.5rem 0;
}

.services-header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.25rem;
}

.services-count {
    color: rgb(107 114 128);
    font-size: 0.875rem;
}

.services-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.services-filters {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.services-filters-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .services-filters-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    
    .services-search {
        grid-column: span 2 / span 2;
    }
}

.services-search {
    position: relative;
}

.services-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(156 163 175);
}

.services-search-input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid rgb(209 213 219);
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.services-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(209 213 219);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.services-empty {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 3rem 1.5rem;
    text-align: center;
}

.services-empty-icon {
    font-size: 3rem;
    color: rgb(209 213 219);
    margin-bottom: 1.5rem;
}

.services-empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.services-empty-description {
    color: rgb(107 114 128);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Profile Styles */
.profile-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .profile-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.profile-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.profile-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgb(229 231 235);
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-avatar {
    width: 4rem;
    height: 4rem;
    background-color: #3b5bdb;
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    overflow: hidden;
}

.profile-avatar-text {
    text-transform: uppercase;
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex-grow: 1;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 0.5rem;
}

.profile-badges {
    display: flex;
    gap: 0.5rem;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: rgb(239 246 255);
    color: rgb(37 99 235);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.profile-badge-icon {
    margin-right: 0.25rem;
}

.profile-content {
    padding: 1.5rem;
}

.profile-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgb(229 231 235);
}

.profile-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.profile-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 1rem;
}

.profile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.profile-contact-item:last-child {
    margin-bottom: 0;
}

.profile-contact-icon {
    width: 1.5rem;
    color: rgb(107 114 128);
    margin-right: 0.75rem;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-rating-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-rating-star {
    color: #facc15;
}

.profile-rating-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(17 24 39);
}

.profile-rating-count {
    color: rgb(107 114 128);
    font-size: 0.875rem;
}

.profile-stats-card, .profile-actions-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-stats-title, .profile-actions-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 1rem;
}

.profile-stats-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgb(229 231 235);
}

.profile-stats-item:last-child {
    border-bottom: none;
}

.profile-stats-label {
    color: rgb(107 114 128);
}

.profile-stats-value {
    font-weight: 600;
    color: rgb(17 24 39);
}

.profile-action-button {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
}

.profile-action-button:last-child {
    margin-bottom: 0;
}

/* Form Styles */
.form-container {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(17 24 39);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(55 65 81);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(209 213 219);
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.form-input:focus {
    outline: none;
    border-color: rgb(37 99 235);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer Styles */
.site-footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 9999px;
    transition: all 0.2s;
}

.footer-social-link:hover {
    background-color: #3b5bdb;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: #9ca3af;
    margin-top: 0.25rem;
}

.footer-contact-text {
    color: #9ca3af;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: white;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: white;
    border-bottom: 1px solid rgb(229 231 235);
    padding: 1rem 0;
}

.breadcrumb-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgb(107 114 128);
}

.breadcrumb a {
    color: rgb(107 114 128);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: rgb(17 24 39);
}

.breadcrumb .separator {
    margin: 0 0.5rem;
}

.breadcrumb .current {
    color: rgb(17 24 39);
    font-weight: 500;
}
