/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 0 80px;
}

.welcome-section {
    text-align: center;
}

.welcome-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.dashboard-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.card-content {
    padding: 1.5rem;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 2rem;
}

.action-btn span {
    font-weight: 500;
    text-align: center;
}

/* Quotes List */
.quotes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* New Quote Requests Section */
.quotes-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

.section-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header h2 i {
    color: #f15a2c;
}

.new-quote-btn {
    background: #f15a2c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.new-quote-btn:hover {
    background: #e04a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 90, 44, 0.3);
    color: white;
    text-decoration: none;
}

.empty-quotes {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f15a2c, #e04a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.empty-quotes h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.empty-quotes p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-btn {
    background: linear-gradient(135deg, #f15a2c, #e04a1a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 90, 44, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 90, 44, 0.4);
    color: white;
    text-decoration: none;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.quote-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #f15a2c;
}

.quote-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

.project-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.project-type i {
    color: #f15a2c;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #e3f2fd;
    color: #1976d2;
}

.status-reviewed {
    background: #f3e5f5;
    color: #7b1fa2;
}

.status-quoted {
    background: #fff3e0;
    color: #f57c00;
}

.status-accepted {
    background: #e8f5e8;
    color: #388e3c;
}

.status-rejected {
    background: #ffebee;
    color: #d32f2f;
}

.quote-card-body {
    padding: 1.5rem;
}

.quote-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.admin-response {
    background: #f8f9fa;
    border-left: 4px solid #f15a2c;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1rem;
}

.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.response-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.response-timestamp {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.response-timestamp i {
    color: #f15a2c;
    font-size: 0.8rem;
}

/* Profile Quote List Styles (matching my-quotes page) */
.quotes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    border-left: 4px solid #f15a2c;
    transition: all 0.3s ease;
}

.quote-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.quote-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.quote-title-section {
    flex: 1;
}

.quote-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.quote-timestamp {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.quote-timestamp i {
    color: #f15a2c;
    margin-right: 0.4rem;
    font-size: 0.8rem;
}

.quote-status {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-reviewed { background: #f3e5f5; color: #7b1fa2; }
.status-quoted { background: #fff3e0; color: #f57c00; }
.status-accepted { background: #e8f5e8; color: #388e3c; }
.status-rejected { background: #ffebee; color: #d32f2f; }

.quote-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.quote-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.detail-item i {
    color: #f15a2c;
    width: 16px;
}

/* Profile Admin Response Section (matching my-quotes page) */
.admin-response-section {
    margin-top: 2rem;
}

.admin-response-section .admin-response {
    background: white;
    border: 2px solid #f15a2c;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(241, 90, 44, 0.15);
}

.admin-response-section .response-header {
    background: linear-gradient(135deg, #f15a2c 0%, #e04a1a 100%);
    color: white;
    padding: 1rem;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    border-radius: 14px 14px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-response-section .response-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.admin-response-section .response-title i {
    color: white;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.admin-response-section .response-timestamp {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.admin-response-section .response-timestamp i {
    color: white;
    margin-right: 0.3rem;
    font-size: 0.9rem;
}

.response-header i {
    color: #f15a2c;
}

/* Horizontal Statistics */
.stats-horizontal {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.stats-horizontal::-webkit-scrollbar {
    display: none;
}

.stats-horizontal .stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    min-width: 200px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-horizontal .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f15a2c 0%, #e04a1a 100%);
}

.stats-horizontal .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(241, 90, 44, 0.2);
    border-color: #f15a2c;
}

.stats-horizontal .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f15a2c 0%, #e04a1a 100%);
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stats-horizontal .stat-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.stats-horizontal .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stats-horizontal .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    line-height: 1;
}

/* New Account Information Design */
.account-section {
    margin-bottom: 2rem;
}

.account-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 2px solid #f8f9fa;
}

.account-section .section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-section .section-header h2 i {
    color: #f15a2c;
}

.edit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f15a2c 0%, #e04a1a 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 90, 44, 0.3);
    color: white;
    text-decoration: none;
}

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

.account-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f15a2c 0%, #e04a1a 100%);
}

.account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(241, 90, 44, 0.2);
    border-color: #f15a2c;
}

.account-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f15a2c 0%, #e04a1a 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.account-card .card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.detail-row .value {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: right;
}

.verified-badge:not(img) {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #e8f5e8;
    color: #388e3c;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.verified-badge i {
    font-size: 0.7rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge i {
    font-size: 0.6rem;
}

.status-active { background: #e8f5e8; color: #388e3c; }
.status-inactive { background: #ffebee; color: #d32f2f; }
.status-pending { background: #fff3cd; color: #856404; }

/* Edit Profile Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.edit-profile-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f15a2c 0%, #e04a1a 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.edit-profile-form {
    padding: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #f15a2c;
    background: white;
    box-shadow: 0 0 0 3px rgba(241, 90, 44, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f15a2c 0%, #e04a1a 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 90, 44, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Professional Popup System */
.profile-popup .popup-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.profile-popup .popup-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.profile-popup .popup-icon i {
    font-size: 18px;
    color: white;
}

.profile-popup .popup-text {
    flex: 1;
    min-width: 0;
}

.profile-popup .popup-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.profile-popup .popup-message {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.95;
}

.profile-popup .popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-popup .popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Popup animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Username Change Info */
.username-change-info {
    margin-top: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 1px solid #bbdefb;
    border-radius: 12px;
    animation: slideDown 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.change-info-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #1565c0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.change-info-content i {
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.change-info-content div {
    flex: 1;
}

.change-info-content strong {
    color: #0d47a1;
    font-weight: 600;
}

.change-info-content small {
    color: #5e72e4;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.25rem;
}

/* Limit reached state */
.username-change-info.limit-reached {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    border-color: #ffcdd2;
}

.username-change-info.limit-reached .change-info-content {
    color: #c62828;
}

.username-change-info.limit-reached .change-info-content strong {
    color: #b71c1c;
}

.username-change-info.limit-reached .change-info-content small {
    color: #d32f2f;
}

/* Modal username change info */
.username-change-info-modal {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.85rem;
}

.username-change-info-modal .change-info-content {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #495057;
    line-height: 1.4;
}

.username-change-info-modal .change-info-content i {
    color: #6c757d;
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.username-change-info-modal .change-info-content strong {
    color: #343a40;
    font-weight: 600;
}

.username-change-info-modal .change-info-content small {
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Limit reached state for modal */
.username-change-info-modal.limit-reached {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    border-color: #ffcdd2;
}

.username-change-info-modal.limit-reached .change-info-content {
    color: #c62828;
}

.username-change-info-modal.limit-reached .change-info-content i {
    color: #d32f2f;
}

.username-change-info-modal.limit-reached .change-info-content strong {
    color: #b71c1c;
}

.username-change-info-modal.limit-reached .change-info-content small {
    color: #d32f2f;
}

/* Disabled field styling */
.form-group input[disabled] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    border-color: #dee2e6 !important;
}

.form-group input[disabled]:focus {
    border-color: #dee2e6 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Email change info modal */
.email-change-info-modal {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    font-size: 0.85rem;
}

.email-change-info-modal .change-info-content {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #856404;
    line-height: 1.4;
}

.email-change-info-modal .change-info-content i {
    color: #f39c12;
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.email-change-info-modal .change-info-content strong {
    color: #856404;
    font-weight: 600;
}

.email-change-info-modal .change-info-content small {
    color: #856404;
    font-size: 0.8rem;
    line-height: 1.3;
}

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

.response-text {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.quote-card-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.detail-item i {
    color: #f15a2c;
    width: 16px;
}

.view-more {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.view-all-btn {
    background: white;
    color: #f15a2c;
    border: 2px solid #f15a2c;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #f15a2c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 90, 44, 0.3);
    text-decoration: none;
}

/* Responsive Quote Section */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .quotes-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    
    .quote-card-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .quote-card-body {
        padding: 1rem;
    }
    
    .response-header {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .response-title {
        font-size: 0.95rem;
    }
    
    .response-timestamp {
        font-size: 0.8rem;
    }
    
    /* Mobile Quote List Styles */
    .quote-item {
        padding: 0.75rem;
    }
    
    .quote-item-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .quote-title-section {
        width: 100%;
    }
    
    .quote-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .quote-timestamp {
        font-size: 0.8rem;
    }
    
    .quote-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Mobile Admin Response Section */
    .admin-response-section {
        margin-top: 1.5rem;
    }
    
    .admin-response-section .admin-response {
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(241, 90, 44, 0.1);
    }
    
    .admin-response-section .response-header {
        padding: 0.75rem;
        margin: -1rem -1rem 0.75rem -1rem;
        border-radius: 10px 10px 0 0;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .admin-response-section .response-title {
        font-size: 1rem;
    }
    
    .admin-response-section .response-timestamp {
        font-size: 0.8rem;
    }
    
    /* Mobile Horizontal Statistics */
    .stats-horizontal {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        justify-content: flex-start;
    }
    
    .stats-horizontal .stat-card {
        min-width: 160px;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .stats-horizontal .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stats-horizontal .stat-number {
        font-size: 1.3rem;
    }
    
    .stats-horizontal .stat-label {
        font-size: 0.8rem;
    }
    
    /* Mobile Account Information */
    .account-section .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0.75rem 0;
    }
    
    .account-section .section-header h2 {
        font-size: 1.3rem;
    }
    
    .account-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .account-card {
        padding: 1rem;
    }
    
    .account-card .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .account-card .card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .detail-row {
        padding: 0.5rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .detail-row .value {
        text-align: left;
    }
    
    /* Mobile Edit Profile Modal */
    .edit-profile-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .edit-profile-form {
        padding: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
    }
    
    .quote-card-footer {
        padding: 1rem;
    }
    
    .empty-quotes {
        padding: 2rem 1rem;
    }
    
    .empty-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Latest Quote Card Styles */
.latest-quote-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.latest-quote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #f15a2c;
}





/* All Quotes Section */
.all-quotes-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

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

.section-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0;
}

.quote-timeline {
    font-weight: 500;
    color: #27ae60;
}

/* Projects Preview */
.projects-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-preview {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.project-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    flex: 1;
}

.project-info h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1rem;
}

.project-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Account Info - New Compact Layout */
.account-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f15a2c, #e04a1a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-content label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.info-content span {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #27ae60;
    font-weight: 500;
    margin-top: 0.25rem;
}

.verification-badge i {
    font-size: 0.7rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge i {
    font-size: 0.6rem;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* No Data State */
.no-data {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.no-data i {
    font-size: 3rem;
    color: #e1e8ed;
    margin-bottom: 1rem;
}

.no-data p {
    margin-bottom: 1rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #f8f9fa;
    color: #e74c3c;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

/* Quote Request Form */
.quote-request-section {
    padding: 80px 0;
}

.quote-form-container {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e8ed;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
}

.form-section h3 i {
    color: #e74c3c;
    font-size: 1.1rem;
}

/* Form Help */
.form-help {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.form-help i {
    color: #e74c3c;
    font-size: 0.9rem;
}

.form-help span {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* User Info Display */
.user-info-display {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.user-info-display .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e8ed;
}

.user-info-display .info-item:last-child {
    border-bottom: none;
}

.user-info-display .info-item label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 80px;
}

.user-info-display .info-item span {
    color: #666;
    text-align: right;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.contact-note i {
    color: #e74c3c;
}

.contact-note a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.contact-note a:hover {
    text-decoration: underline;
}

/* Enhanced Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Enhanced Form Styling */
#quote-form {
    position: relative;
}

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

#quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

#quote-form select,
#quote-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

#quote-form select:focus,
#quote-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

#quote-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

#quote-form select {
    cursor: pointer;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Enhanced Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 1.1rem;
}

.quote-info {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote-info h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.contact-method strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.contact-method p {
    margin: 0;
    color: #666;
}

/* New Profile Header Styles */
.profile-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #f15a2c 75%, #e04a1a 100%);
    color: white;
    padding: 120px 0 60px 0;
    border-bottom: 1px solid #e9ecef;
    margin-top: 0;
    position: relative;
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.profile-avatar-section {
    flex-shrink: 0;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 2px #f15a2c;
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 3px #f15a2c;
}

.upload-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: #f15a2c;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: #e04a1a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.verified-badge {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.profile-email {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.profile-member-since {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.avatar-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    cursor: pointer !important;
}

.avatar-container:hover .avatar-overlay {
    opacity: 1 !important;
}

.avatar-upload-btn {
    background: none;
    border: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.avatar-upload-btn:hover {
    transform: scale(1.1);
}

.avatar-upload-btn i {
    font-size: 1.5rem;
}

.avatar-upload-btn span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Upload Hint Styles */
.upload-hint {
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #f15a2c, #e04a1a) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 4px 15px rgba(241, 90, 44, 0.3) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
    white-space: nowrap !important;
    z-index: 100 !important;
}

.avatar-container:hover .upload-hint {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(-5px) !important;
}

.upload-hint i {
    font-size: 0.9rem;
}

.upload-instruction {
    text-align: center !important;
    margin-top: 1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    opacity: 0.8 !important;
    transition: opacity 0.3s ease !important;
}

.avatar-container:hover + .upload-instruction {
    opacity: 1 !important;
}

/* Upload Indicator - Always Visible */
.upload-indicator {
    position: absolute !important;
    bottom: 2px !important;
    right: 2px !important;
    background: linear-gradient(135deg, #f15a2c, #e04a1a) !important;
    color: white !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.5rem !important;
    box-shadow: 0 2px 6px rgba(241, 90, 44, 0.3) !important;
    border: 2px solid white !important;
    animation: pulse 2s infinite !important;
    cursor: pointer !important;
    z-index: 100 !important;
    transition: all 0.3s ease !important;
}

.upload-indicator:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(241, 90, 44, 0.5) !important;
}

.upload-indicator i {
    font-size: 0.7rem;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 8px rgba(241, 90, 44, 0.3);
    }
    50% {
        box-shadow: 0 2px 8px rgba(241, 90, 44, 0.6), 0 0 0 4px rgba(241, 90, 44, 0.1);
    }
    100% {
        box-shadow: 0 2px 8px rgba(241, 90, 44, 0.3);
    }
}

/* Upload Tip for New Users */
.upload-tip {
    background: linear-gradient(135deg, #f15a2c, #e04a1a) !important;
    color: white !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
    margin-top: 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(241, 90, 44, 0.3) !important;
    animation: slideInUp 0.5s ease !important;
    border-left: 4px solid #d13d0f !important;
}

.upload-tip i {
    font-size: 1.1rem;
    color: #ffffff;
}

.upload-tip span {
    flex: 1;
}

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

/* Enhanced Upload Notification Styles */
.upload-notification {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    padding: 0 !important;
    z-index: 10000 !important;
    max-width: 420px !important;
    min-width: 320px !important;
    opacity: 0 !important;
    transform: translateX(100%) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
}

.upload-notification.show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.notification-content {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.25rem !important;
    position: relative !important;
}

.notification-icon {
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
}

.notification-text {
    flex: 1 !important;
    min-width: 0 !important;
}

.notification-title {
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
    color: #2c3e50 !important;
}

.notification-message {
    font-size: 0.9rem !important;
    color: #5a6c7d !important;
    line-height: 1.4 !important;
    word-wrap: break-word !important;
}

.notification-close {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    background: none !important;
    border: none !important;
    color: #95a5a6 !important;
    cursor: pointer !important;
    padding: 0.25rem !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    font-size: 0.8rem !important;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #7f8c8d !important;
}

/* Success Notification */
.upload-notification-success {
    border-left: 4px solid #27ae60 !important;
}

.upload-notification-success .notification-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: white !important;
}

.upload-notification-success .notification-title {
    color: #27ae60 !important;
}

/* Error Notification */
.upload-notification-error {
    border-left: 4px solid #e74c3c !important;
}

.upload-notification-error .notification-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white !important;
}

.upload-notification-error .notification-title {
    color: #e74c3c !important;
}

/* Warning Notification */
.upload-notification-warning {
    border-left: 4px solid #f39c12 !important;
}

.upload-notification-warning .notification-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    color: white !important;
}

.upload-notification-warning .notification-title {
    color: #f39c12 !important;
}

/* Info Notification */
.upload-notification-info {
    border-left: 4px solid #3498db !important;
}

.upload-notification-info .notification-icon {
    background: linear-gradient(135deg, #3498db, #2980b9) !important;
    color: white !important;
}

.upload-notification-info .notification-title {
    color: #3498db !important;
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.profile-info p {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

/* New Profile Info Styles */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.welcome-badge i {
    color: #f15a2c;
}

.profile-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
}

.profile-title .greeting {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.profile-title .name {
    background: linear-gradient(45deg, #fff, #f15a2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.verification-badge-inline {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.profile-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-subtitle i {
    color: #f15a2c;
    width: 16px;
}

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

.verification-status,
.member-level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.verification-status i {
    color: #4ecdc4;
}

.member-level i {
    color: #f15a2c;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2ecc71;
    font-weight: 500;
}

.verified-badge {
    width: 20px;
    height: 20px;
}

.profile-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f15a2c, #e04a1a);
}

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

.stat-card-primary::before {
    background: linear-gradient(90deg, #f15a2c, #e04a1a);
}

.stat-card-warning::before {
    background: linear-gradient(90deg, #f15a2c, #d13d0f);
}

.stat-card-success::before {
    background: linear-gradient(90deg, #f15a2c, #c23408);
}

.stat-card-info::before {
    background: linear-gradient(90deg, #f15a2c, #b32d05);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-content h3 {
    font-size: 2rem;
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
}

.stat-content p {
    margin: 0;
    color: #666;
    font-weight: 500;
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(45deg, #f15a2c, #e04a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem !important;
}

.stat-label {
    font-size: 0.9rem !important;
    color: #7f8c8d !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem !important;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 500;
}

.stat-trend i {
    font-size: 0.7rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Full Width Cards */
.profile-card.full-width {
    width: 100%;
    margin-bottom: 2rem;
}

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

.quick-action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-action-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 90, 44, 0.2);
    border-color: #f15a2c;
    text-decoration: none;
    color: inherit;
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f15a2c, #e04a1a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.action-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.action-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
}

.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    margin-bottom: 2rem;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f15a2c, #e04a1a, #d13d0f);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f15a2c, #e04a1a);
}

.card-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(45deg, #f15a2c, #e04a1a);
    border-radius: 2px;
}

.card-content {
    padding: 1.5rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.action-item:hover {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateX(5px);
}

.action-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-verified {
    background-color: #d1ecf1;
    color: #0c5460;
}

.view-all {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e8ed;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background-color: #e8f4f8;
    border-color: #e74c3c;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-content h4 {
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
    font-size: 0.9rem;
}

.activity-content p {
    margin: 0 0 0.25rem 0;
    color: #666;
    font-size: 0.8rem;
}

.activity-date {
    color: #999;
    font-size: 0.75rem;
}

.activity-status {
    flex-shrink: 0;
}

/* Help Links */
.help-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.help-item:hover {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateX(5px);
}

.help-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    color: #e74c3c;
    transition: color 0.3s ease;
}

.help-item:hover i {
    color: white;
}

.help-item h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.help-item p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .account-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .profile-header {
        padding: 100px 0 50px 0;
    }
    
    .profile-header-content {
        gap: 1.5rem;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .upload-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .profile-header {
        padding: 90px 0 40px 0;
    }
    
    .profile-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .upload-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .profile-name {
        font-size: 2rem;
        justify-content: center;
    }
    
    .profile-email {
        font-size: 1rem;
    }
    
    .profile-member-since {
        font-size: 0.9rem;
    }
    
    .profile-title .greeting {
        font-size: 1.1rem !important;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .profile-title .name {
        font-size: 2.2rem !important;
        display: block;
    }
    
    .verification-badge-inline {
        width: 18px !important;
        height: 18px !important;
        margin-left: 0.4rem !important;
    }
    
    .profile-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
        justify-content: center;
    }
    
    .profile-badges {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .verification-status {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .profile-content {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .project-preview {
        flex-direction: column;
    }
    
    .project-image {
        width: 100%;
        height: 150px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .quote-form-container,
    .quote-info {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .user-info-display {
        padding: 1rem;
    }
    
    .user-info-display .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .user-info-display .info-item span {
        text-align: left;
    }
    
    /* Mobile Quick Actions */
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-action-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .action-content h3 {
        font-size: 1rem;
    }
    
    .action-content p {
        font-size: 0.85rem;
    }
    
    .account-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .info-content label {
        font-size: 0.75rem;
    }
    
    .info-content span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .profile-header {
        padding: 80px 0 30px 0;
    }
    
    .profile-header-content {
        gap: 1rem;
    }
    
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
    
    .upload-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-email {
        font-size: 0.95rem;
    }
    
    .profile-member-since {
        font-size: 0.85rem;
    }
    
    .profile-title {
        font-size: 1.8rem !important;
    }
    
    .profile-title .greeting {
        font-size: 1rem !important;
    }
    
    .profile-title .name {
        font-size: 1.8rem !important;
    }
    
    .verification-badge-inline {
        width: 16px !important;
        height: 16px !important;
        margin-left: 0.3rem !important;
    }
    
    .profile-subtitle {
        font-size: 0.9rem !important;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .profile-subtitle i {
        display: none;
    }
    
    .stat-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-content h3 {
        font-size: 1.25rem;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .action-item {
        padding: 0.75rem;
    }
    
    .activity-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .activity-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .activity-content h4 {
        font-size: 0.85rem;
    }
    
    .activity-content p {
        font-size: 0.75rem;
    }
    
    .help-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .help-item i {
        font-size: 1.2rem;
        width: 25px;
    }
    
    .help-item h4 {
        font-size: 0.9rem;
    }
    
    .help-item p {
        font-size: 0.8rem;
    }
    
    /* Extra Small Mobile Quick Actions */
    .quick-action-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .action-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .action-content h3 {
        font-size: 0.9rem;
    }
    
    .action-content p {
        font-size: 0.8rem;
    }
    
    .info-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .info-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .info-content label {
        font-size: 0.7rem;
    }
    
    .info-content span {
        font-size: 0.85rem;
    }
}
