/* Mobile Service Provider Directory Styles */

:root {
    --primary-blue: #1E90FF;
    --success-green: #00C851;
    --danger-red: #FF4444;
    --dark-bg: #1a1a1a;
    --card-bg: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: #999999;
    --border-radius: 12px;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Body and general layout */
body {
    background: var(--gradient-bg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-light);
    margin: 0;
    min-height: 100vh;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* Mobile Header */
.mobile-header {
    padding: 20px 0;
}

.header-controls {
    padding: 0 10px;
}

.theme-toggle button {
    border-radius: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.theme-toggle button:hover {
    background: rgba(255,255,255,0.2);
}

.theme-toggle .btn-light {
    background: white;
    color: #333;
}

/* Provider Login Button */
.provider-login-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.provider-login-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.provider-login-btn:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
}

.provider-login-btn i {
    font-size: 12px;
}



/* Selected City Display */
.selected-city-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
}

.selected-city-badge span:first-child {
    font-size: 1.2rem;
}

/* Typing Animation */
.typing-message {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    min-height: 24px;
}

.typing-cursor {
    animation: blink 1s infinite;
    color: white;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Search Input */
.search-container {
    position: relative;
}

.search-input {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 25px;
    padding: 12px 20px 12px 45px;
    font-size: 16px;
    width: 100%;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

/* Service Search Bar */
.service-search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
}

.service-search-container .search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 20px 15px 50px;
    border-radius: 25px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.service-search-container .search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    outline: none;
    color: white;
}

.service-search-container .search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.service-search-container .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    z-index: 2;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.search-dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.search-dropdown-item:hover,
.search-dropdown-item.highlighted {
    background: rgba(255, 255, 255, 0.1);
}

.search-dropdown-item:last-child {
    border-bottom: none;
}

.search-result-category {
    color: #007bff;
    font-size: 14px;
    margin-bottom: 2px;
}

.search-result-title {
    color: white;
    font-weight: 500;
}

.search-result-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 2px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 10;
}

/* City Dropdown */
.city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 5px;
    overflow: hidden;
}

.dropdown-city-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.dropdown-city-item:last-child {
    border-bottom: none;
}

.dropdown-city-item:hover,
.dropdown-city-item.highlighted {
    background: rgba(255, 255, 255, 0.3);
}

.dropdown-city-item .city-name {
    font-weight: 600;
    font-size: 16px;
}

.dropdown-city-item .country-name {
    font-size: 14px;
    color: #666;
}

/* City List */
.city-list {
    background: rgba(255,255,255,0.95);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.city-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #333;
}

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

.city-item:hover {
    background-color: rgba(0,0,0,0.05);
}

.flag-icon {
    font-size: 24px;
}

.city-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.country-name {
    font-size: 14px;
    color: #666;
}

/* Service Categories */
.section-title {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-icon {
    background: var(--primary-blue);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
}

.service-info {
    flex: 1;
}

.service-name {
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-bottom: 4px;
}

.service-description {
    font-size: 14px;
    color: var(--text-muted);
}

/* Provider Page Header */
.provider-header-bar {
    color: white;
    margin-bottom: 20px;
}

.provider-page-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.provider-years {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Provider Categories */
.provider-category {
    display: none;
}

.provider-category.active {
    display: block;
}

/* Provider Cards */
.provider-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 16px;
}

/* Coming Soon Page */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    padding: 20px;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-soon-icon i {
    font-size: 48px;
    color: white;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.coming-soon-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.coming-soon-actions .btn {
    min-width: 250px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.coming-soon-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.coming-soon-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.coming-soon-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.coming-soon-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

/* Services Page Header */
.services-page-header {
    padding: 20px 16px 0 16px;
}

/* Services Header */
.services-header {
    padding-top: 0px;
}

/* Back to Cities Button */
.back-to-cities-container {
    padding-top: 0px;
}

.back-to-cities-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-cities-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-1px);
}

.back-to-cities-btn i {
    font-size: 12px;
}

/* Provider Login Page */
.provider-login-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 16px;
}

.provider-header .provider-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.login-form-container {
    margin-top: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.provider-icon {
    font-size: 3rem;
    color: var(--primary-blue);
}

.login-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 15px;
    color: #333;
    font-size: 16px;
}

.login-form .form-control:focus {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.25);
    color: #333;
}

.login-form .input-group-text {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    color: #666;
    border-radius: 12px 0 0 12px;
}

.login-form .input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.login-form .input-group .btn-outline-secondary {
    border-left: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    border-radius: 0 12px 12px 0;
}

.provider-login-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    border-radius: 12px;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.provider-login-submit:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
}

.provider-header {
    display: flex;
    margin-bottom: 16px;
}

.provider-number {
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 16px;
    flex-shrink: 0;
}

.provider-info {
    flex: 1;
}

.provider-name {
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}

.provider-rating {
    margin-bottom: 6px;
}

.provider-rating .fas {
    color: #FFD700;
}

.provider-rating span {
    color: white;
    font-size: 14px;
}

.reviews {
    color: var(--text-muted);
}

.provider-address,
.provider-phone,
.provider-service,
.provider-website {
    font-size: 14px;
    color: white;
    margin-bottom: 4px;
}

.provider-actions {
    display: flex;
    gap: 8px;
}

.provider-actions .btn {
    flex: 1;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-blue);
}

.btn-success {
    background: var(--success-green);
}

.btn-danger {
    background: var(--danger-red);
}

/* Welcome Screen with Fireworks */
#welcomeScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fireworksCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.welcome-content {
    text-align: center;
    z-index: 10000;
    position: relative;
    animation: welcomeFadeIn 0.8s ease-out;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.welcome-city {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@keyframes welcomeFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Mobile Bottom Indicator */
.mobile-bottom {
    position: fixed;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.home-indicator {
    width: 134px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

/* Hide default navigation and footer */
.navbar, footer {
    display: none !important;
}

/* Flash messages mobile styling */
.alert {
    border-radius: 8px;
    margin: 10px 16px;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 16px 12px;
    }
    
    .provider-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .provider-actions .btn {
        width: 100%;
    }
}

/* Card enhancements */
.card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-header {
    border-bottom: 1px solid var(--bs-border-color);
    background-color: transparent;
}

/* Contact card specific styles */
.contact-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
    border-radius: 50%;
    color: white;
}

.contact-details {
    font-size: 0.9rem;
}

.contact-details i {
    width: 16px;
    text-align: center;
}

/* Progress bar styling */
.progress {
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.6s ease;
}

/* Button enhancements */
.btn {
    border-radius: calc(var(--border-radius) - 2px);
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, var(--bs-success), hsl(120, 60%, 45%));
    border: none;
}

.btn-danger {
    background: linear-gradient(135deg, var(--bs-danger), hsl(0, 70%, 55%));
    border: none;
}

/* Approved Providers Section Styling */
.approved-provider-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.approved-provider-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.approved-provider-card h6 {
    margin-bottom: 8px;
    font-weight: 600;
}

.approved-provider-card .provider-details {
    line-height: 1.4;
}

.approved-provider-card .provider-details small {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.approved-provider-card .provider-details i {
    width: 16px;
    margin-right: 8px;
    text-align: center;
}

.approved-provider-card .provider-number {
    flex-shrink: 0;
    min-width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 12px;
}

.approved-provider-card .provider-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.approved-provider-card .provider-rating .fa-star {
    color: #ffd700;
    filter: brightness(1.3);
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.approved-provider-card .provider-rating span {
    font-size: 14px;
    font-weight: 500;
}

#approvedProviders .text-center {
    padding: 24px 16px;
}

#approvedProviders .spinner-border {
    color: var(--bs-primary);
}

/* Enhanced star styling - More yellow and brighter */
.text-warning,
.fa-star.text-warning,
i.fas.fa-star.text-warning,
.provider-rating .fa-star,
.provider-rating i.fas.fa-star {
    color: #ffd700 !important;
    filter: brightness(1.4) saturate(1.2);
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}

/* Form enhancements */
.form-control,
.form-select {
    border-radius: calc(var(--border-radius) - 2px);
    border: 1px solid var(--bs-border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--bs-body-color);
}

/* Badge styling */
.badge {
    font-weight: 500;
    padding: 0.375em 0.75em;
    border-radius: calc(var(--border-radius) - 4px);
}

/* Alert enhancements */
.alert {
    border: none;
    border-radius: var(--border-radius);
    border-left: 4px solid;
}

.alert-primary {
    border-left-color: var(--bs-primary);
}

.alert-success {
    border-left-color: var(--bs-success);
}

.alert-danger {
    border-left-color: var(--bs-danger);
}

.alert-warning {
    border-left-color: var(--bs-warning);
}

.alert-info {
    border-left-color: var(--bs-info);
}

/* Modal enhancements */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid var(--bs-border-color);
}

.modal-footer {
    border-top: 1px solid var(--bs-border-color);
}

/* Dropdown enhancements */
.dropdown-menu {
    border-radius: var(--border-radius);
    border: 1px solid var(--bs-border-color);
    box-shadow: var(--box-shadow);
}

.dropdown-item {
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bs-secondary-bg);
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--bs-secondary);
}

/* Table enhancements */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.table th {
    font-weight: 600;
    border-bottom: 2px solid var(--bs-border-color);
}

/* Loading states */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive utilities */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .btn-group-vertical .btn {
        border-radius: calc(var(--border-radius) - 2px);
        margin-bottom: 0.25rem;
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .d-flex.justify-content-between > * {
        width: 100%;
    }
}

/* Dark mode specific adjustments */
[data-bs-theme="dark"] .card {
    background-color: var(--bs-dark);
    border-color: var(--bs-secondary);
}

[data-bs-theme="dark"] .contact-avatar {
    background: linear-gradient(135deg, var(--bs-info), var(--bs-primary));
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background-color: var(--bs-dark);
    border-color: var(--bs-secondary);
    color: var(--bs-light);
}

[data-bs-theme="dark"] .dropdown-menu {
    background-color: var(--bs-dark);
    border-color: var(--bs-secondary);
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility classes */
.text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

.border-start-primary {
    border-left: 3px solid var(--bs-primary) !important;
}

.border-start-success {
    border-left: 3px solid var(--bs-success) !important;
}

.border-start-warning {
    border-left: 3px solid var(--bs-warning) !important;
}

.border-start-danger {
    border-left: 3px solid var(--bs-danger) !important;
}

/* Contact list specific styles */
.contact-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    transition: all 0.2s ease;
}

.contact-card:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.1);
}

/* Phone number styling */
.phone-number {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Status indicators */
.status-online {
    color: var(--bs-success);
}

.status-offline {
    color: var(--bs-secondary);
}

.status-busy {
    color: var(--bs-warning);
}

/* Footer styling */
footer {
    margin-top: auto;
    border-top: 1px solid var(--bs-border-color);
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    .dropdown,
    .modal,
    footer {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .contact-details {
        font-size: 12pt;
    }
}
