/*
Theme Name: NIDFIL Connect
Theme URI: https://nidfil.com
Author: NIDFIL
Author URI: https://nidfil.com
Description: A modern WordPress theme for connecting users with construction and renovation specialists.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nidfil-connect
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #f97015;
    --orange-hover: #e05f0d;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background: var(--white);
    padding: 0.75rem 2rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    height: 50px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.header-specialist-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-specialist-highlight {
    color: #ff8c42;
    display: inline-block;
    transition: all 0.3s ease;
}

.header-specialist-link:hover .header-specialist-highlight {
    color: #ff6b35;
    transform: translateY(-1px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-dropdown {
    position: relative;
}

.language-switcher-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.2s;
    width: 100%;
    font-family: inherit;
}

.language-switcher-button:hover {
    border-color: var(--orange-primary);
}

.language-switcher-button .dropdown-arrow {
    transition: transform 0.2s;
}

.language-switcher.active .language-switcher-button .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
    overflow: hidden;
}

.language-switcher.active .language-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    z-index: 1000;
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--bg-light);
    color: var(--orange-primary);
}

.language-option.active {
    background: rgba(249, 112, 21, 0.1);
    color: var(--orange-primary);
    font-weight: 600;
}

.language-name {
    font-size: 0.9rem;
}

.language-code {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.language-option:hover .language-code,
.language-option.active .language-code {
    color: var(--orange-primary);
}

.access-dropdown {
    position: relative;
}

.access-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    width: 100%;
    font-family: inherit;
}

.access-button:hover {
    border-color: var(--orange-primary);
}

.access-button .dropdown-arrow {
    transition: transform 0.2s;
}

.access-dropdown.active .access-button .dropdown-arrow {
    transform: rotate(180deg);
}

.access-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
    overflow: hidden;
}

.access-dropdown.active .access-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    z-index: 1000;
}

.access-option {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.access-option:last-child {
    border-bottom: none;
}

.access-option:hover {
    background: var(--bg-light);
    color: var(--orange-primary);
}

/* Access Modal Styles */
.access-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.access-modal.modal-active {
    opacity: 1;
    visibility: visible;
}

.access-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.access-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
    z-index: 10000;
}

.access-modal.modal-active .access-modal-content {
    transform: scale(1);
}

.access-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s;
    z-index: 10001;
}

.access-modal .modal-close:hover {
    background: var(--border-color);
    transform: rotate(90deg);
}

.access-modal .modal-body {
    padding: 2rem;
}

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

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-light);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.form-tab.active {
    color: var(--orange-primary);
    border-bottom-color: var(--orange-primary);
}

.form-tab:hover {
    color: var(--orange-primary);
}

.access-form {
    display: none !important;
}

.access-form.active-form {
    display: block !important;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="number"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.2s;
    font-family: inherit;
    appearance: textfield;
    -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(249, 112, 21, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--orange-primary);
}

.forgot-password {
    color: var(--orange-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: var(--orange-hover);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.form-divider span {
    position: relative;
    background: var(--white);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.social-login {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    .site-header {
        padding: 0.625rem 1rem;
    }
    
    .header-container {
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding: 0;
    }
    
    .site-logo {
        height: 45px;
        flex-shrink: 0;
    }
    
    .logo-image {
        height: 45px;
        max-width: 120px;
        object-fit: contain;
    }
    
    .header-specialist-link {
        font-size: 0.8125rem;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .header-right {
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .header-dropdown {
        flex-shrink: 0;
    }
    
    .language-switcher-button,
    .access-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    
    .access-button span {
        display: none;
    }
    
    .access-button {
        padding: 0.5rem;
        min-width: 40px;
        justify-content: center;
    }
    
    .language-dropdown-menu,
    .access-dropdown-menu {
        right: 0;
        left: auto;
        min-width: 160px;
        max-width: calc(100vw - 2rem);
    }
    
    .access-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .access-modal .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-image-container {
        margin-bottom: 1.5rem;
        border-radius: 25px;
    }
    
    .hero-image {
        border-radius: 10px;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title-highlight {
    color: var(--orange-primary);
    display: block;
    margin-top: 3.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-container {
    width: 100%;
    
    margin: 0 auto 2.5rem;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    text-decoration: none;
}

.btn-outline {
    background: var(--white);
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
}

.btn-outline:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 112, 21, 0.3);
}

/* Search Section */
.search-container {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(249, 112, 21, 0.08);
}

.search-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-field label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 1rem 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    cursor: pointer;
}

.search-field select:hover,
.search-field input:hover {
    border-color: rgba(249, 112, 21, 0.4);
    box-shadow: 0 2px 8px rgba(249, 112, 21, 0.08);
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 4px rgba(249, 112, 21, 0.12), 0 4px 12px rgba(249, 112, 21, 0.15);
    background-color: #fffefb;
}

.search-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23666666' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.125rem center;
    padding-right: 3rem;
    background-size: 16px 16px;
}

.search-field select option {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--white);
    font-weight: 500;
}

.search-field select option:hover,
.search-field select option:focus,
.search-field select option:checked {
    background: rgba(249, 112, 21, 0.1);
    color: var(--orange-primary);
    font-weight: 600;
}

/* Custom select styling for better appearance */
.search-field select::-ms-expand {
    display: none;
}

/* Selected value styling */
.search-field select:not([value=""]) {
    border-color: rgba(249, 112, 21, 0.3);
    background-color: #fffefb;
    color: var(--text-dark);
    font-weight: 600;
}

.search-field select:not([value=""]):hover {
    border-color: rgba(249, 112, 21, 0.5);
}

/* Placeholder/empty state styling */
.search-field select[value=""] {
    color: var(--text-light);
    font-weight: 500;
}

/* Enhanced dropdown arrow animation */
.search-field select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23666666' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

.location-field {
    position: relative;
}

.location-field input {
    padding-right: 2.5rem;
}

.location-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.search-button {
    padding: 1rem 2.5rem;
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-end;
    box-shadow: 0 4px 12px rgba(249, 112, 21, 0.25);
    letter-spacing: 0.01em;
}

.search-button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 112, 21, 0.35);
}

.search-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(249, 112, 21, 0.25);
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #E5E7EB;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 112, 21, 0.05) 0%, rgba(249, 112, 21, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange-primary);
    box-shadow: 0 8px 24px rgba(249, 112, 21, 0.15);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.category-card svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.category-card:hover svg {
    transform: scale(1.1);
}

.category-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Responsive Categories Grid */
@media (max-width: 1400px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .category-name {
        font-size: 0.875rem;
    }
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .steps-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 2rem 0;
    }
    
    .steps-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .step-card {
        padding: 1.25rem;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    row-gap: 2rem;
    column-gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--orange-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--orange-primary);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 2rem 0;
    }
    
    .why-choose-grid {
        gap: 1.25rem;
    }
}

.why-choose-content {
    max-width: 1000px;
    margin: 0 auto;
}

.features-list {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(249, 112, 21, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonials-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    row-gap: 2rem;
    column-gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Specialists Near You Section */
.specialists-near-section {
    padding: 5rem 0;
    background: var(--white);
}

.specialists-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

/* Map Container (Left Side) */
.map-container {
    background: #F5F5F0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 600px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.map-pin-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.map-pin-small {
    position: absolute;
    z-index: 1;
}

.map-text-content {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.map-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.map-coming-soon {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Specialists List (Right Side) */
.specialists-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.specialists-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

.specialist-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
}

.specialist-card:hover {
    box-shadow: var(--shadow-md);
    border: 2px solid var(--orange-primary) !important;
}

.specialist-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-hover) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.specialist-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange-primary);
    display: block;
}

.specialist-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.specialist-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.specialist-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.specialist-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.verified-badge {
    background: #10B981;
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.verified-badge svg {
    width: 10px;
    height: 10px;
}

.specialist-category {
    font-size: 0.875rem;
    color: var(--orange-primary);
    font-weight: 500;
    margin: 0;
}

.specialist-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.rating-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.reviews-count {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.specialist-location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specialist-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.specialist-location svg {
    flex-shrink: 0;
}

.distance {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.specialist-services {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(249, 112, 21, 0.1);
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.service-icon:hover {
    background: rgba(249, 112, 21, 0.2);
    transform: translateY(-2px);
}

.service-icon svg {
    flex-shrink: 0;
}

.view-more-link {
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border-radius: 8px;
}

.view-more-link:hover {
    color: var(--orange-primary);
    background: rgba(249, 112, 21, 0.05);
}

.view-more-link svg {
    transition: transform 0.3s;
}

.view-more-link:hover svg {
    transform: translateX(4px);
}

/* Specialist Card Selected State */
.specialist-card-selected {
    border: 2px solid var(--orange-primary) !important;
    box-shadow: 0 4px 12px rgba(249, 112, 21, 0.15);
}

.specialist-card-selected:hover {
    border: 2px solid var(--orange-primary) !important;
    box-shadow: 0 4px 12px rgba(249, 112, 21, 0.15);
}

/* Specialist Actions Buttons */
.specialist-actions {
    display: none;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.specialist-card-selected .specialist-actions {
    display: flex;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: var(--orange-primary);
    color: white;
}

.call-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 112, 21, 0.3);
}

.action-btn svg {
    flex-shrink: 0;
}

/* Specialist Modal */
.specialist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.specialist-modal.modal-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
    z-index: 10000;
    cursor: default;
    pointer-events: auto;
}

.modal-content * {
    pointer-events: auto;
}

.specialist-modal.modal-active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--border-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-avatar {
    flex-shrink: 0;
}

.modal-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--orange-primary);
    display: block;
    box-shadow: 0 4px 12px rgba(249, 112, 21, 0.2);
}

.avatar-placeholder-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-hover) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.75rem;
}

.modal-header-info {
    flex: 1;
}

.modal-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.modal-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modal-profession {
    font-size: 1rem;
    color: var(--orange-primary);
    font-weight: 500;
    margin: 0 0 0.75rem 0;
}

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

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item svg {
    flex-shrink: 0;
}

.detail-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.detail-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-description {
    margin-bottom: 2rem;
}

.modal-description h3,
.modal-services-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(249, 112, 21, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(249, 112, 21, 0.15);
    transition: all 0.3s;
    min-width: 120px;
    cursor: pointer;
}

.service-icon-large:hover {
    background: rgba(249, 112, 21, 0.15);
    border-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 112, 21, 0.2);
}

.service-icon-large svg {
    flex-shrink: 0;
}

.service-icon-large span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.modal-services h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.modal-description p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.modal-services {
    margin-bottom: 2rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.modal-actions .action-btn {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .modal-name-row {
        justify-content: center;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .action-btn {
        width: 100%;
    }
}

/* Why Choose NIDFIL Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    row-gap: 2rem;
    column-gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 0;
    }
    
    .why-choose-card {
        aspect-ratio: 1 / 1;
        max-width: 100%;
    }
    
    .why-choose-image {
        min-height: 350px;
    }
}

.why-choose-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(249, 112, 21, 0.2);
}

.why-choose-card:hover .why-choose-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.why-choose-image {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
}

.why-choose-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.why-choose-card:hover .why-choose-img {
    transform: scale(1.05);
}

.why-choose-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.3) 100%);
    padding: 2rem 1.5rem 1.75rem;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: auto;
}

/* Fallback for broken images */
.why-choose-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 112, 21, 0.1) 0%, rgba(249, 112, 21, 0.05) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-image:has(img[src=""])::before,
.why-choose-image:not(:has(img))::before {
    opacity: 1;
}

.image-placeholder {
    width: 80px;
    height: 80px;
    color: var(--orange-primary);
    opacity: 0.5;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.why-choose-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.why-choose-card-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

/* CTA for Professionals Section */
.cta-professionals-section {
    padding: 5rem 0;
    background: var(--orange-primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .cta-professionals-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .cta-professionals-section {
        padding: 2rem 0;
    }
}

.cta-professionals-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-professionals-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-professionals-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-white {
    background: var(--white);
    color: var(--orange-primary);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    row-gap: 2rem;
    column-gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-statistics .stat-label,
.cta-professionals-section .stat-label {
    font-size: 0.875rem;
    color: var(--white) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image-container {
        margin-bottom: 2rem;
        border-radius: 30px;
    }
    
    .hero-image {
        border-radius: 12px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-button {
        width: 100%;
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 0;
        margin-top: 2rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 0;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item:hover {
        transform: translateY(-4px);
    }
    
    .specialists-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    .map-placeholder {
        min-height: 400px;
    }
    
    .specialists-list {
        max-height: none;
    }
    
    .specialist-card {
        flex-direction: row;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 0;
    }
    
    .cta-statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .cta-professionals-title {
        font-size: 2rem;
    }
    
    .cta-professionals-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }
    
    .steps-grid {
        gap: 1.25rem;
        row-gap: 1.25rem;
        column-gap: 0;
        margin-top: 1.5rem;
    }
    
    .step-card {
        padding: 1.25rem;
    }
    
    .why-choose-grid {
        gap: 1.25rem;
        row-gap: 1.25rem;
        column-gap: 0;
    }
    
    .testimonials-grid {
        gap: 1.25rem;
        row-gap: 1.25rem;
        column-gap: 0;
    }
    
    .cta-statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        row-gap: 1.25rem;
        column-gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* WordPress Core Styles */
.wp-block-group {
    margin-bottom: 2rem;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: 100%;
}

/* Footer Styles */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    row-gap: 2rem;
    column-gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo-image svg text {
    fill: var(--white);
}

.footer-logo-image svg path[stroke="#f97015"],
.footer-logo-image svg path[stroke="#FF6B35"] {
    stroke: var(--orange-primary);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--orange-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    color: var(--orange-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--orange-primary);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        row-gap: 2rem;
        column-gap: 0;
    }
    
    .footer-column {
        gap: 0.75rem;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-links {
        gap: 0.625rem;
    }
    
    .footer-contact {
        gap: 0.875rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.25rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        row-gap: 1.5rem;
        column-gap: 0;
    }
    
    .footer-column {
        gap: 0.5rem;
    }
    
    .footer-logo-image {
        height: 45px;
    }
    
    .footer-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .footer-contact {
        gap: 0.75rem;
    }
    
    .footer-contact li {
        font-size: 0.875rem;
        gap: 0.625rem;
    }
    
    .footer-contact svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-bottom {
        gap: 0.75rem;
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8125rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal a {
        font-size: 0.8125rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

/* Dashboard Styles */
.dashboard-main {
    min-height: calc(100vh - 200px);
    background: var(--bg-light);
    padding: 2rem 0;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.dashboard-sidebar {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    max-width: 100%;
}

/* Force sidebar visibility on all devices */
.dashboard-sidebar,
.dashboard-sidebar.mobile-open,
.dashboard-sidebar:not(.mobile-open) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Sidebar always visible on all devices */
@media (max-width: 767px) {
    .dashboard-sidebar {
        position: static !important;
        transform: none !important;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 1rem;
    }
}

.sidebar-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--orange-primary);
}

.edit-image-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-primary);
    color: var(--white);
    border: 3px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.edit-image-btn:hover {
    background: var(--orange-hover);
    transform: scale(1.1);
}

.image-upload-actions {
    position: absolute;
    bottom: -85px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
    min-width: 200px;
    border: 1px solid rgba(249, 112, 21, 0.1);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.image-upload-actions::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.05));
}

.image-upload-actions.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: all !important;
}

.image-upload-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
}

.image-upload-status {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 100%;
}

.image-upload-status:empty {
    display: none;
}

.image-upload-status.info {
    background: rgba(33, 150, 243, 0.1);
    color: #1976d2;
}

.image-upload-status.success {
    background: rgba(76, 175, 80, 0.1);
    color: #388e3c;
}

.image-upload-status.error {
    background: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-sm.btn-primary {
    background: var(--orange-primary);
    color: var(--white);
}

.btn-sm.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
}

.btn-sm.btn-outline {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-sm.btn-outline:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

.btn-sm:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-sm svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.profile-email {
    font-size: 0.875rem;
    color: var(--text-light);
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.nav-item:hover {
    background: var(--bg-light);
    color: var(--orange-primary);
}

.nav-item.active {
    background: rgba(249, 112, 21, 0.1);
    color: var(--orange-primary);
    font-weight: 600;
}

.nav-item svg {
    flex-shrink: 0;
}

.nav-item-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-top: 1px solid var(--border-color);
    border-radius: 10px;
    background: #dc2626;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-item-logout:hover {
    background: #b91c1c;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.nav-item-logout:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.2);
}

.nav-item-logout svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.nav-item-logout span {
    font-size: 0.9375rem;
}

.badge {
    margin-left: auto;
    background: var(--orange-primary);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.dashboard-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.dashboard-section {
    display: none !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-section.active {
    display: block !important;
    opacity: 1;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.section-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.edit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.edit-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

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

.card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-dark);
}

.icon-btn:hover {
    background: var(--orange-primary);
    color: var(--white);
    border-color: var(--orange-primary);
}

.card-body {
    color: var(--text-light);
    line-height: 1.6;
}

.bio-text {
    margin: 0;
    min-height: 60px;
}

.bio-edit-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 1rem;
}

.bio-edit-form textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(249, 112, 21, 0.1);
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

.info-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.info-input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.info-input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(249, 112, 21, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Messages Styles */
.messages-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 1.5rem;
    height: 600px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.messages-sidebar {
    background: var(--bg-light);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.messages-search {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.messages-search input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
}

.conversations-list {
    flex: 1;
    overflow-y: auto;
}

.conversation-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.conversation-item:hover {
    background: var(--white);
}

.conversation-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.conversation-info {
    flex: 1;
    min-width: 0;
}

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

.conversation-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.conversation-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

.conversation-preview {
    font-size: 0.875rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.messages-chat {
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.chat-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.chat-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.chat-status {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    position: relative;
}

.message.received {
    align-self: flex-start;
    background: var(--bg-light);
    color: var(--text-dark);
}

.message.sent {
    align-self: flex-end;
    background: var(--orange-primary);
    color: var(--white);
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    display: block;
}

.chat-input-container {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.chat-input-container input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
}

.send-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.send-btn:hover {
    background: var(--orange-hover);
}

/* Reviews Styles */
.reviews-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reviews-summary {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-value-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-count {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating .star {
    width: 16px;
    height: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.review-rating .star.filled path {
    fill: #FFD700;
}

.review-rating .star.empty path {
    fill: #E5E5E5;
}

.review-rating.editable-rating .star:hover {
    transform: scale(1.2);
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-input .rating-star {
    cursor: pointer;
    transition: all 0.2s;
}

.rating-input .rating-star:hover {
    transform: scale(1.1);
}

.rating-input .rating-star.active path,
.rating-input .rating-star:hover path {
    fill: #FFD700;
}

/* Responsive Dashboard */
@media (min-width: 769px) and (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static !important;
        display: block !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 1.5rem;
        border-radius: 16px;
        top: auto !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .dashboard-sidebar-overlay {
        display: none !important;
    }
    
    .sidebar-close-mobile {
        display: none !important;
    }
    
    .messages-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .messages-sidebar {
        max-height: 300px;
    }
}

@media (max-width: 767px) {
    .dashboard-main {
        padding: 2rem 0;
    }
    
    .dashboard-container {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Sidebar always visible on mobile */
    .dashboard-sidebar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin-bottom: 1rem;
    }
    
    .sidebar-header {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .edit-image-btn {
        width: 36px;
        height: 36px;
    }
    
    .image-upload-actions {
        bottom: -75px;
        min-width: 180px;
        padding: 0.875rem 1rem;
    }
    
    .profile-name {
        font-size: 1.125rem;
    }
    
    .profile-email {
        font-size: 0.875rem;
    }
    
    .dashboard-nav {
        gap: 0.5rem;
    }
    
    .nav-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .nav-item svg {
        width: 18px;
        height: 18px;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header h1 {
        font-size: 1.5rem;
    }
    
    .welcome-text {
        font-size: 0.875rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .overview-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .overview-card {
        padding: 1.25rem;
    }
    
    .overview-icon {
        width: 40px;
        height: 40px;
    }
    
    .overview-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .overview-content h3 {
        font-size: 1.5rem;
    }
    
    .overview-content p {
        font-size: 0.8125rem;
    }
    
    .recent-activity-summary {
        margin-top: 1.5rem;
    }
    
    .activity-summary-list {
        gap: 1rem;
    }
    
    .activity-summary-item {
        padding: 1rem;
    }
    
    .profile-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .card-header h3 {
        font-size: 1.125rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 0.75rem 0;
    }
    
    .info-item label {
        font-size: 0.8125rem;
    }
    
    .info-value,
    .info-input {
        font-size: 0.9375rem;
    }
    
    .social-links-container {
        gap: 1rem;
    }
    
    .social-link-item {
        padding: 0.875rem;
    }
    
    .social-link-item svg {
        width: 18px;
        height: 18px;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .quick-action-btn {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .quick-action-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .bio-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .profile-card {
        margin-bottom: 1rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .social-link-value,
    .social-link-input {
        font-size: 0.875rem;
    }
    
    .bio-edit-form textarea {
        font-size: 0.9375rem;
        padding: 0.875rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 0.875rem;
    }
    
    .activity-timeline {
        gap: 1rem;
    }
    
    .activity-item {
        padding: 1rem;
    }
    
    .activity-icon {
        width: 32px;
        height: 32px;
    }
    
    .activity-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .activity-text {
        font-size: 0.875rem;
    }
    
    .activity-time {
        font-size: 0.75rem;
    }
    
    .messages-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .messages-sidebar {
        max-height: 300px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .messages-search {
        padding: 1rem;
    }
    
    .messages-search input {
        font-size: 0.875rem;
        padding: 0.75rem;
    }
    
    .conversation-item {
        padding: 1rem;
    }
    
    .conversation-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .conversation-name {
        font-size: 0.9375rem;
    }
    
    .conversation-preview {
        font-size: 0.8125rem;
    }
    
    .chat-header {
        padding: 1rem;
    }
    
    .chat-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .chat-header h3 {
        font-size: 1rem;
    }
    
    .chat-status {
        font-size: 0.8125rem;
    }
    
    .chat-messages {
        padding: 1rem;
        max-height: 400px;
    }
    
    .message {
        padding: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .message p {
        font-size: 0.875rem;
    }
    
    .message-time {
        font-size: 0.75rem;
    }
    
    .chat-input-container {
        padding: 1rem;
    }
    
    .chat-input-container input {
        font-size: 0.875rem;
        padding: 0.75rem;
    }
    
    .send-btn {
        width: 40px;
        height: 40px;
    }
    
    .send-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .reviews-summary {
        margin-bottom: 1.5rem;
    }
    
    .rating-stars-large {
        gap: 0.5rem;
    }
    
    .rating-stars-large svg {
        width: 24px;
        height: 24px;
    }
    
    .rating-value-large {
        font-size: 2rem;
    }
    
    .rating-count {
        font-size: 0.875rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .reviewer-info h4 {
        font-size: 0.9375rem;
    }
    
    .review-rating .star {
        width: 14px;
        height: 14px;
    }
    
    .review-text {
        font-size: 0.875rem;
    }
    
    .review-date {
        font-size: 0.8125rem;
    }
    
    .notifications-list {
        gap: 0;
    }
    
    .notification-item {
        padding: 1rem;
    }
    
    .notification-icon {
        width: 36px;
        height: 36px;
    }
    
    .notification-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .notification-content h4 {
        font-size: 0.875rem;
    }
    
    .notification-content p {
        font-size: 0.8125rem;
    }
    
    .notification-time {
        font-size: 0.75rem;
    }
    
    .settings-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 0;
    }
    
    .settings-label {
        width: 100%;
    }
    
    .settings-label label {
        font-size: 0.9375rem;
    }
    
    .settings-description {
        font-size: 0.8125rem;
    }
    
    .toggle-switch {
        align-self: flex-start;
    }
    
    .danger-actions {
        flex-direction: column;
    }
    
    .danger-actions .btn {
        width: 100%;
    }
    
    .completion-badge {
        font-size: 0.8125rem;
        padding: 0.25rem 0.625rem;
    }
    
    .completion-text {
        font-size: 0.875rem;
    }
    
    .edit-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .edit-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .icon-btn {
        width: 32px;
        height: 32px;
    }
    
    .icon-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .dashboard-main {
        padding: 2.5rem 0;
    }
    
    .dashboard-container {
        padding: 0 0.75rem;
    }
    
    .dashboard-sidebar {
        padding: 1rem;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .edit-image-btn {
        width: 32px;
        height: 32px;
    }
    
    .edit-image-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .image-upload-actions {
        bottom: -70px;
        min-width: 160px;
        padding: 0.75rem;
    }
    
    .image-upload-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .image-upload-buttons .btn {
        width: 100%;
    }
    
    .dashboard-content {
        padding: 0.75rem;
    }
    
    .section-header h1 {
        font-size: 1.25rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .profile-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .card-body {
        padding-top: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .nav-item-logout {
        padding: 0.75rem 1rem;
        margin-top: 0.75rem;
    }
    
    .nav-item-logout svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-item-logout span {
        font-size: 0.875rem;
    }
    
    .btn-sm {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
}

/* Modern Profile Enhancements */

/* Profile Completion Card */
.completion-card {
    background: linear-gradient(135deg, rgba(249, 112, 21, 0.1) 0%, rgba(249, 112, 21, 0.05) 100%);
    border: 2px solid rgba(249, 112, 21, 0.2);
}

.completion-badge {
    background: var(--orange-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.completion-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.completion-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-primary) 0%, #ff8c42 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.completion-text {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #f0f2f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    transition: all 0.25s ease;
}

.stat-card-primary .stat-icon {
    background: rgba(249, 112, 21, 0.1);
    color: #f97015;
    box-shadow: none;
}

.stat-card-success .stat-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-card-info .stat-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    box-shadow: none;
}

.stat-card-warning .stat-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stat-card-primary:hover .stat-icon {
    background: linear-gradient(135deg, var(--orange-primary) 0%, #ff8c42 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(249, 112, 21, 0.25);
}

.stat-card-info:hover .stat-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
}

.quick-action-btn:hover {
    border-color: var(--orange-primary);
    background: rgba(249, 112, 21, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 112, 21, 0.15);
}

.quick-action-btn svg {
    color: var(--orange-primary);
}

/* Skills Section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    min-height: 40px;
}

.skill-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(249, 112, 21, 0.1) 0%, rgba(249, 112, 21, 0.05) 100%);
    color: var(--orange-primary);
    border: 1px solid rgba(249, 112, 21, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 112, 21, 0.3);
}

.empty-state {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.skills-input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    margin-bottom: 1rem;
}

.skills-input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(249, 112, 21, 0.1);
}

/* Social Media Links */
.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.social-link-item:hover {
    background: var(--white);
    border-color: var(--orange-primary);
    box-shadow: 0 2px 8px rgba(249, 112, 21, 0.1);
}

.social-link-item svg {
    color: var(--orange-primary);
    flex-shrink: 0;
}

.social-link-value {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.social-link-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9375rem;
}

.social-link-input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(249, 112, 21, 0.1);
}

/* Activity Timeline */
.activity-timeline {
    position: relative;
    padding-left: 2rem;
}

.activity-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.activity-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

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

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.activity-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.activity-icon-info {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.activity-icon-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.activity-content {
    flex: 1;
    padding-top: 0.25rem;
}

.activity-text {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Settings Section */
.settings-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.settings-label {
    flex: 1;
}

.settings-label label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.settings-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-left: 1rem;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--orange-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(249, 112, 21, 0.2);
}

/* Danger Zone */
.danger-zone {
    border: 2px solid #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.danger-zone .card-header h3 {
    color: #ef4444;
}

.danger-actions {
    display: flex;
    gap: 1rem;
}

.btn-danger {
    color: #ef4444;
    border-color: #ef4444;
}

.btn-danger:hover {
    background: #ef4444;
    color: var(--white);
}

/* Dashboard Overview Section */
.dashboard-overview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.welcome-text {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 400;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.overview-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.overview-icon-primary {
    background: linear-gradient(135deg, var(--orange-primary) 0%, #ff8c42 100%);
}

.overview-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.overview-icon-info {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.overview-icon-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.overview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.overview-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.recent-activity-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.recent-activity-summary h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.activity-summary-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.activity-summary-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.activity-summary-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-summary-content {
    flex: 1;
}

.activity-summary-content p {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.activity-summary-content span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    gap: 0.75rem;
    color: var(--orange-hover);
}

/* Projects Section */
.projects-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.projects-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

.filter-btn.active {
    background: var(--orange-primary);
    color: var(--white);
    border-color: var(--orange-primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--orange-primary);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.project-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.project-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-meta svg {
    flex-shrink: 0;
}

.project-rating {
    color: var(--text-dark);
    font-weight: 600;
}

/* Notifications Section */
.notifications-content {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.notifications-list {
    display: flex;
    flex-direction: column;
}

.notification-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
}

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

.notification-item:hover {
    background: var(--bg-light);
}

.notification-item.unread {
    background: rgba(249, 112, 21, 0.03);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.notification-icon-info {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.notification-icon-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.notification-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.notification-content {
    flex: 1;
}

.notification-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.notification-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0 0 0.25rem 0;
    line-height: 1.5;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

.notification-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-primary);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.badge-new {
    background: #ef4444;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-link {
    cursor: pointer;
}

/* Specialist-Specific Styles */
.services-list,
.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item,
.certification-item {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-item span,
.certification-item span {
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.no-data {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

.services-edit-form textarea,
.certifications-edit-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 1rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.project-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-in-progress {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.project-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.project-date,
.project-client {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-card-success .stat-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-card-success:hover .stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.stat-card-warning .stat-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stat-card-warning:hover .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

/* Business Video Styles */
.business-video-container {
    position: relative;
}

.video-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
    text-align: center;
    transition: all 0.3s ease;
}

.video-upload-placeholder:hover {
    border-color: var(--orange-primary);
    background: rgba(249, 112, 21, 0.05);
}

.video-upload-placeholder svg {
    color: var(--orange-primary);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.video-upload-placeholder .no-data {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.video-preview-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.business-video-preview {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    background: #000;
    display: block;
}

.remove-video-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.video-upload-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-upload-actions.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.video-upload-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.video-upload-status {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    background-color: var(--light-gray);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.video-upload-status.info {
    background-color: #e0f2fe;
    color: #0288d1;
}

.video-upload-status.success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.video-upload-status.error {
    background-color: #ffebee;
    color: #d32f2f;
}

/* Mobile Menu Toggle - Hidden on all devices */
.mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
}

/* Ensure sidebar is visible on all devices */
.dashboard-sidebar {
    display: block !important;
    visibility: visible !important;
    position: sticky !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
    height: fit-content !important;
    border-radius: 16px !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

.mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
}

.dashboard-sidebar-overlay {
    display: none !important;
}

.sidebar-close-mobile {
    display: none !important;
}

@media (min-width: 768px) {
    .dashboard-container {
        grid-template-columns: 280px 1fr !important;
    }
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
    }
    
    .dashboard-sidebar {
        position: static !important;
        display: block !important;
        visibility: visible !important;
        transform: none !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 16px !important;
        pointer-events: all !important;
        margin-bottom: 1rem;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .dashboard-sidebar-overlay {
        display: none !important;
    }
    
    .sidebar-close-mobile {
        display: none !important;
    }
    
    .dashboard-sidebar-overlay {
        display: none !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-timeline {
        padding-left: 1.5rem;
    }
    
    .settings-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .toggle-switch {
        margin-left: 0;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   ============================================ */

/* Extra Small Devices (Phones, 320px - 480px) */
@media (max-width: 480px) {
    /* Header - Extra Small Devices */
    .site-header {
        padding: 0.5rem 0.75rem;
    }
    
    .header-container {
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0;
    }
    
    .site-logo {
        height: 38px;
        flex-shrink: 0;
    }
    
    .logo-image {
        height: 38px;
        max-width: 100px;
        object-fit: contain;
    }
    
    .header-specialist-link {
        font-size: 0.6875rem;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-right {
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .header-dropdown {
        flex-shrink: 0;
    }
    
    .language-switcher-button {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
        min-width: auto;
    }
    
    .language-switcher-button .current-language {
        font-size: 0.75rem;
    }
    
    .language-switcher-button .dropdown-arrow {
        width: 10px;
        height: 10px;
    }
    
    .access-button {
        padding: 0.4rem;
        min-width: 36px;
        font-size: 0;
        justify-content: center;
    }
    
    .access-button span {
        display: none;
    }
    
    .access-button svg {
        width: 18px;
        height: 18px;
    }
    
    .access-button .dropdown-arrow {
        display: none;
    }
    
    .language-dropdown-menu,
    .access-dropdown-menu {
        right: 0;
        left: auto;
        min-width: 150px;
        max-width: calc(100vw - 1.5rem);
        font-size: 0.875rem;
    }
    
    .language-option,
    .access-option {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
    
    /* Modals */
    .access-modal-content {
        width: 95%;
        max-width: 95%;
        margin: 1rem auto;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-subtitle {
        font-size: 0.875rem;
    }
    
    .form-tabs {
        gap: 0.5rem;
    }
    
    .form-tab {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Dashboard */
    .dashboard-main {
        padding: 2rem 0;
    }
    
    .dashboard-container {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }
    
    .dashboard-sidebar {
        width: 260px;
        max-width: 90vw;
        padding: 1rem;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .edit-image-btn {
        width: 32px;
        height: 32px;
    }
    
    .edit-image-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .image-upload-actions {
        bottom: -70px;
        min-width: 160px;
        padding: 0.75rem;
    }
    
    .image-upload-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .image-upload-buttons .btn {
        width: 100%;
    }
    
    .profile-name {
        font-size: 1rem;
    }
    
    .profile-email {
        font-size: 0.8125rem;
    }
    
    .nav-item {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .nav-item svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-item-logout {
        padding: 0.75rem 1rem;
        margin-top: 0.75rem;
    }
    
    .nav-item-logout svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-item-logout span {
        font-size: 0.875rem;
    }
    
    .dashboard-content {
        padding: 0.75rem;
    }
    
    .section-header h1 {
        font-size: 1.25rem;
    }
    
    .welcome-text {
        font-size: 0.8125rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .stat-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .overview-card {
        padding: 1rem;
    }
    
    .overview-icon {
        width: 36px;
        height: 36px;
    }
    
    .overview-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .overview-content h3 {
        font-size: 1.25rem;
    }
    
    .overview-content p {
        font-size: 0.75rem;
    }
    
    .profile-card {
        padding: 1rem;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .info-item label {
        font-size: 0.75rem;
    }
    
    .info-value,
    .info-input {
        font-size: 0.875rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-sm {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .edit-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .icon-btn {
        width: 32px;
        height: 32px;
    }
    
    .icon-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Forms */
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Activity Timeline */
    .activity-timeline {
        padding-left: 1rem;
    }
    
    .activity-item {
        padding: 0.875rem;
    }
    
    .activity-icon {
        width: 28px;
        height: 28px;
    }
    
    .activity-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .activity-text {
        font-size: 0.8125rem;
    }
    
    .activity-time {
        font-size: 0.6875rem;
    }
    
    /* Messages */
    .messages-search input {
        font-size: 0.8125rem;
        padding: 0.625rem;
    }
    
    .conversation-item {
        padding: 0.875rem;
    }
    
    .conversation-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }
    
    .conversation-name {
        font-size: 0.875rem;
    }
    
    .conversation-preview {
        font-size: 0.75rem;
    }
    
    .chat-header {
        padding: 0.875rem;
    }
    
    .chat-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }
    
    .chat-header h3 {
        font-size: 0.9375rem;
    }
    
    .chat-status {
        font-size: 0.75rem;
    }
    
    .message {
        padding: 0.75rem;
        margin-bottom: 0.625rem;
    }
    
    .message p {
        font-size: 0.8125rem;
    }
    
    .message-time {
        font-size: 0.6875rem;
    }
    
    .chat-input-container input {
        font-size: 0.8125rem;
        padding: 0.625rem;
    }
    
    .send-btn {
        width: 36px;
        height: 36px;
    }
    
    .send-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Reviews */
    .rating-stars-large svg {
        width: 20px;
        height: 20px;
    }
    
    .rating-value-large {
        font-size: 1.75rem;
    }
    
    .rating-count {
        font-size: 0.8125rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .reviewer-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }
    
    .reviewer-info h4 {
        font-size: 0.875rem;
    }
    
    .review-rating .star {
        width: 12px;
        height: 12px;
    }
    
    .review-text {
        font-size: 0.8125rem;
    }
    
    .review-date {
        font-size: 0.75rem;
    }
    
    /* Notifications */
    .notification-item {
        padding: 0.875rem;
    }
    
    .notification-icon {
        width: 32px;
        height: 32px;
    }
    
    .notification-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .notification-content h4 {
        font-size: 0.8125rem;
    }
    
    .notification-content p {
        font-size: 0.75rem;
    }
    
    .notification-time {
        font-size: 0.6875rem;
    }
    
    /* Settings */
    .settings-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.625rem;
        padding: 0.875rem 0;
    }
    
    .settings-label {
        width: 100%;
    }
    
    .settings-label label {
        font-size: 0.875rem;
    }
    
    .settings-description {
        font-size: 0.75rem;
    }
    
    .danger-actions {
        flex-direction: column;
    }
    
    .danger-actions .btn {
        width: 100%;
    }
    
    /* Specialist Specific */
    .services-list,
    .certifications-list {
        gap: 0.75rem;
    }
    
    .service-item,
    .certification-item {
        padding: 0.875rem;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .video-upload-placeholder {
        padding: 2rem 1rem;
    }
    
    .video-upload-placeholder svg {
        width: 48px;
        height: 48px;
    }
    
    .business-data-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Footer styles are handled in main responsive section above */
}

/* Small Devices (Large Phones, 481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .site-header {
        padding: 0.625rem 1rem;
    }
    
    .header-container {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .site-logo {
        height: 42px;
    }
    
    .logo-image {
        height: 42px;
        max-width: 110px;
    }
    
    .header-right {
        gap: 0.625rem;
    }
    
    .language-switcher-button,
    .access-button {
        padding: 0.45rem 0.625rem;
        font-size: 0.8125rem;
    }
    
    .access-button span {
        display: none;
    }
    
    .access-button {
        padding: 0.45rem;
        min-width: 38px;
        justify-content: center;
    }
    
    .language-dropdown-menu,
    .access-dropdown-menu {
        min-width: 170px;
    }
    
    .dashboard-container {
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .overview-cards {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .business-data-grid {
        grid-template-columns: 1fr;
    }
}

/* Medium Devices (Tablets Portrait, 601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1.25rem;
    }
    
    .header-container {
        gap: 1rem;
    }
    
    .site-logo {
        height: 48px;
    }
    
    .logo-image {
        height: 48px;
        max-width: 130px;
    }
    
    .header-right {
        gap: 0.875rem;
    }
    
    .language-switcher-button,
    .access-button {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .access-button span {
        display: inline;
    }
    
    .language-dropdown-menu,
    .access-dropdown-menu {
        min-width: 180px;
    }
    
    .dashboard-container {
        padding: 0 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .overview-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .access-modal-content {
        width: 90%;
        max-width: 500px;
    }
}

/* Large Devices (Tablets Landscape, 769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .site-header {
        padding: 0.75rem 1.5rem;
    }
    
    .dashboard-container {
        padding: 0 1.5rem;
        grid-template-columns: 260px 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-sidebar {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .access-modal-content {
        width: 85%;
        max-width: 550px;
    }
}

/* Extra Large Devices (Desktop, 1025px - 1400px) */
@media (min-width: 1025px) and (max-width: 1400px) {
    .dashboard-container {
        padding: 0 2rem;
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .overview-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* XXL Devices (Large Desktop, 1401px+) */
@media (min-width: 1401px) {
    .dashboard-container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .overview-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .business-data-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .dashboard-sidebar {
        height: 100vh;
        overflow-y: auto;
    }
    
    .access-modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .dashboard-content {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch target sizes */
    .btn,
    .nav-item,
    .language-switcher-button,
    .access-button,
    .edit-btn,
    .icon-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .stat-card:hover,
    .overview-card:hover,
    .profile-card:hover {
        transform: none;
    }
    
    /* Improve tap feedback */
    .btn:active,
    .nav-item:active,
    .language-switcher-button:active,
    .access-button:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .profile-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Future) */
@media (prefers-color-scheme: dark) {
    /* Reserved for future dark mode implementation */
}

/* Print Styles */
@media print {
    .site-header,
    .dashboard-sidebar,
    .mobile-menu-toggle,
    .dashboard-sidebar-overlay,
    .sidebar-close-mobile,
    .btn,
    .form-actions {
        display: none !important;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-content {
        padding: 0;
    }
    
    .profile-card,
    .stat-card,
    .overview-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

