/* Force Inter font family globally */
*,
*::before,
*::after {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji" !important;
}

html,
body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji" !important;
}

:root{
    --brand-color: #FFBC00;
    --text-color: #101828;
    --text-color-secondary: #6B7084;
    
    /* Light theme variables */
    --bg-body: #f9fafb;
    --bg-card: #ffffff;
    --bg-header: #ffffff;
    --bg-sidebar: #ffffff;
    --bg-input: #ffffff;
    --bg-hover: #f3f4f6;
    --bg-section: #F7F3EB;
    
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    
    --border-color: #e5e7eb;
    --border-light: #EBEBEB;
    --border-dark: #d1d5db;
    
    --accent-primary: #ffbc00;
    --accent-hover: #ffa500;
    
    --footer-bg: #0f172a;
    --footer-text: #cbd5e1;
    --footer-title: #e2e8f0;
    --footer-link: #94a3b8;
    --footer-input-bg: #1f2937;
    --footer-input-border: #0b1220;
}

/* Dark theme variables */
body.dark-theme,
.dark-theme {
    --brand-color: #fbbf24;
    --text-color: #f1f5f9;
    --text-color-secondary: #cbd5e1;
    
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --bg-header: #020617;
    --bg-sidebar: #1e293b;
    --bg-input: #334155;
    --bg-hover: #334155;
    --bg-section: #1e293b;
    
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-color: #334155;
    --border-light: #475569;
    --border-dark: #475569;
    
    --accent-primary: #fbbf24;
    --accent-hover: #f59e0b;
    
    --footer-bg: #020617;
    --footer-text: #cbd5e1;
    --footer-title: #f1f5f9;
    --footer-link: #94a3b8;
    --footer-input-bg: #1e293b;
    --footer-input-border: #334155;
}

/* Apply dark theme to body and main elements */
body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji" !important;
}

/* Header: search input icon vertical centering */
.search-input-icon {
    top: 50%;
    transform: translateY(-50%);
}

/* Frontend nav link styles extracted from inline classes */
.nav-link {
    display: block;
    padding: 0.75rem 0.75rem; /* increase top/bottom padding */
    margin-top: 0.25rem; /* subtle top offset */
    font-weight: 500;
    transition: color 150ms ease-in, opacity 150ms ease-in;
}

.nav-link--inactive {
    color: var(--text-color);
}
.nav-link--inactive:hover { color: var(--brand-color); }

.nav-link--active { color: var(--brand-color); }

/* ================= Footer ================= */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 1rem; /* ~py-12 px-4 */
}
.site-footer .container { max-width: 1200px; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.footer-title {
    color: var(--footer-title);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-link {
    display: block;
    color: var(--footer-link);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.25rem 0;
}
.footer-link:hover { color: var(--text-primary); }

.footer-text { color: var(--footer-link); font-size: 0.9rem; margin-bottom: 0.75rem; }

.site-footer .footer-subscribe {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    max-width: 540px;
}
.site-footer .footer-input {
    width: 100%;
    height: 100%;
    background: var(--footer-input-bg);
    border: 1px solid var(--footer-input-border);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 0 180 0 1.25rem; /* room for the button */
    font-size: 0.75rem; /* larger text */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.site-footer .footer-input::placeholder { color: var(--text-muted); }
.site-footer .footer-subscribe-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 45px;
    border-radius: 0 12px 12px 0;
    background: var(--brand-color);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #1f2937;
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-brand img { display: block; }
.footer-copy { color: #94a3b8; font-size: 0.9rem; }

.footer-social { list-style: none; display: flex; gap: .5rem; padding: 0; margin: 0; }
.footer-social-link {
    height: 32px; width: 32px; border-radius: 9999px;
    background: #0b1220; color: #cbd5e1; display: inline-flex;
    align-items: center; justify-content: center; text-decoration: none;
    border: 1px solid #1f2937;
}
.footer-social-link:hover { background: #111827; color: #fff; }

.login-banner
{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.login-form h1 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
    color: var(--text-color);
}
.login-form p {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 15px;
    color: var(--text-color-secondary);
}
.remember-me {
	font-size: 14px;
	font-weight: 400;
    color: var(--text-color);
}
.remember-me-checkbox {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid #D0D5DD;
}
.remember-me-checkbox:focus {
    outline: none;
}
.forgot-password {
	font-size: 14px;
	font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}
.login-btn {
    margin-left: 0;
    width: 100%;
    border-radius: 9999px; 
    background-color: var(--brand-color);
    padding: 0.75rem 1rem; 
    text-align: center;
    font-weight: 600;
    color: black; 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
  }
  .login-btn:hover {
    filter: brightness(95%);
  }
  .login-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-color), 0 0 0 4px #fff;
  }
  .no-account {
	font-size: 14px;
	font-weight: 400;
    color: var(--text-color-secondary);
  }
  .sign-up {
	font-size: 14px;
	font-weight: 500;
    color: var(--text-color);
  }
  .login-container, .login-container .row {
	display: flex;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
}
.custom-input {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 8px 16px;
  border: 1px solid #d1d5db; /* light gray */
  border-radius: 0.5rem;
  background-color: #fff;
  color: #111827;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Focus State */
.custom-input:focus {
  border-color: #ffc107; /* indigo-600 */
  box-shadow: 0 0 0 3px #ffc107;
  outline: none;
}

[type="checkbox"]:focus, [type="radio"]:focus{
    --tw-ring-color: #ffc107 ! important;
}

[type="text"]:focus, [type="email"]:focus, [type="url"]:focus, [type="password"]:focus, [type="number"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="week"]:focus, [multiple]:focus, textarea:focus, select:focus{
    --tw-ring-color: #ffc107 ! important;
}

/* ================= Notification Settings (search section) ================= */
.notification-settings-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.notification-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-hover);
    transition: all 0.2s ease;
}
.notification-back-btn:hover { background: var(--border-color); }

.notification-settings-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.193;
    color: var(--text-color);
    margin: 0;
}

.notification-master-card {
    background: var(--bg-hover);
    border-radius: 10px;
    padding: 14px 24px;
    margin-bottom: 1.5rem;
}
.notification-master-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notification-master-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.notification-icon { width: 24px; height: 24px; }
.notification-master-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.193;
    color: var(--text-primary);
}

.notification-preferences-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.notification-preference-item {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 16px;
}
.notification-preference-item:last-child { border-bottom: none; }
.notification-preference-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notification-preference-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.193;
    color: var(--text-primary);
    flex: 1;
    max-width: 282px;
}

.notification-toggle-switch {
    position: relative;
    width: 32px;
    height: 20px;
    display: inline-block;
}
.notification-toggle-switch input { display: none; }
.notification-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--border-color);
    border-radius: 10px;
    transition: 0.2s;
}
.notification-toggle-slider:before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 2px;
    top: 2px;
    background: var(--bg-card);
    border-radius: 50%;
    transition: 0.2s;
    box-shadow: 0 0 0 1px var(--border-dark);
}
.notification-toggle-switch input:checked + .notification-toggle-slider { background: var(--brand-color); }
.notification-toggle-switch input:checked + .notification-toggle-slider:before { transform: translateX(12px); }

.notification-settings-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}
.notification-save-btn {
    padding: 12px 24px;
    background: var(--brand-color);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.notification-save-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 188, 0, 0.3);
}

/* ================= Notification Listing Page ================= */
.notifications-page-section {
    padding: 40px 0 60px;
    background: var(--bg-body);
}
.notifications-page-container {
    max-width: 960px;
    margin: 0 auto;
}
.notifications-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.notifications-page-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}
.notifications-page-subtitle {
    margin: .5rem 0 0;
    color: var(--text-color-secondary);
    font-size: 0.95rem;
}
.notifications-page-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}
.notifications-filter-tabs {
    display: inline-flex;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    overflow: hidden;
}
.notifications-filter-tab {
    padding: 0.35rem 1.2rem;
    font-size: 0.9rem;
    color: #6B7280;
    text-decoration: none;
    transition: background 0.2s ease;
}
.notifications-filter-tab.is-active {
    background: #111827;
    color: #fff;
}
.notifications-filter-badge {
    background: #FCD34D;
    color: #78350F;
    border-radius: 999px;
    padding: 0 0.45rem;
    font-size: 0.75rem;
    margin-left: 0.35rem;
}
.notification-mark-read-btn {
    border: none;
    background: #E5E7EB;
    color: #111827;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    cursor: pointer;
    transition: filter 0.2s ease;
}
.notification-mark-read-btn:hover {
    filter: brightness(0.95);
}
.notification-alert {
    background: #ECFDF5;
    border: 1px solid #6EE7B7;
    color: #065F46;
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.notification-card {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    background: #FFFFFF;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.notification-card--unread {
    border-color: #F59E0B;
    background: #FFF7ED;
}
.notification-card-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    margin-bottom: .35rem;
}
.notification-card-title {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}
.notification-card-time {
    font-size: 0.85rem;
    color: var(--text-color-secondary);
}
.notification-card-message {
    margin: 0 0 .6rem;
    color: #4B5563;
    font-size: 0.95rem;
}
.notification-card-link {
    font-weight: 600;
    color: var(--brand-color);
    text-decoration: none;
}
.notification-card-link:hover {
    text-decoration: underline;
}
.notification-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 6px;
}
.notification-status-dot.unread { background: #EA580C; }
.notification-status-dot.read { background: #E5E7EB; }
.notification-empty-state {
    text-align: center;
    padding: 48px 16px;
    border: 1px dashed #E5E7EB;
    border-radius: 16px;
    background: #F9FAFB;
}
.notification-empty-state img {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}
.notification-empty-state h3 {
    margin: 0 0 .25rem;
    font-size: 1.125rem;
    color: var(--text-color);
}
.notification-empty-state p {
    margin: 0;
    color: var(--text-color-secondary);
}
.notification-pagination {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}
.iti {
	display: block;
  width: 100%;
}

/* OTP Verification Styles */
.otp-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1050;
}

.otp-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    max-width: 520px;
    width: 100%;
    overflow: hidden;
}

.otp-card-body {
    padding: 28px;
}

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

.otp-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-primary);
}

.otp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 20px;
    color: #111;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.otp-close:hover {
    background-color: rgba(0,0,0,0.06);
    color: #000;
}

.otp-description {
    font-size: 1.125rem;
    color: var(--text-color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.otp-phone {
    color: var(--brand-color);
    font-weight: 600;
}

.otp-form {
    width: 100%;
}

.otp-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.otp-inputs {
    display: flex;
    gap: 18px;
    margin-bottom: 1.75rem;
    justify-content: center;
}

.otp-input {
    width: 72px;
    height: 72px;
    border: 2px solid var(--brand-color);
    border-radius: 16px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    background-color: #fff;
    transition: all 0.2s ease;
    box-shadow: none;
}

.otp-input:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 0 4px rgba(255, 188, 0, 0.25);
    transform: translateY(-1px);
}

.otp-input:not(:placeholder-shown) {
    border-color: var(--brand-color);
    background-color: rgba(255, 188, 0, 0.05);
}

.otp-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
}

.otp-submit-btn {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    background-color: var(--brand-color);
    color: #111;
    font-weight: 600;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(255, 188, 0, 0.3);
}

.otp-submit-btn:hover {
    background-color: #e6a800;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 188, 0, 0.4);
}

.otp-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 188, 0, 0.3);
}

.otp-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 480px) {
    .otp-container {
        padding: 15px;
    }
    
    .otp-card-body {
        padding: 1.5rem;
    }
    
    .otp-inputs {
        gap: 0.5rem;
    }
    
    .otp-input {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
}

.pp-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.pp-img {
    width: 33%;
    height: 100%;
    object-fit: cover;
}

.logout-btn
{
    background-color: var(--brand-color);
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(255, 188, 0, 0.3);
}

/* ================= Homepage Sections ================= */

/* Hero Section */
.hero-section {
    background: var(--bg-section);
    padding: 64px 44px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.21;
    color: var(--text-color);
}
.hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color-secondary);
}
.hero-search-form {
    display: flex;
    height: 50px;
}
.hero-search-input {
    flex: 1;
    border: 1px solid var(--border-light);
    border-radius: 6px 0 0 6px;
    padding: 12px 16px;
    font-size: 16px;
    background-color: var(--bg-input);
    color: var(--text-primary);
}
.hero-search-input::placeholder {
    color: var(--text-muted);
}
.hero-search-btn {
    background: var(--accent-primary);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 0 6px 6px 0;
    font-weight: 500;
    cursor: pointer;
}
.hero-tags { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tag {
    background: var(--bg-card);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 12px;
    text-decoration: none;
    color: var(--text-color-secondary);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.hero-images {
    display: flex;
    gap: 16px;
    height: 416px;
}
.hero-image-placeholder {
    background: var(--bg-hover);
    border-radius: 8px;
    width: 288px;
    height: 192px;
}
.hero-image-tall { height: 416px; }

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    color: var(--text-color);
    margin-bottom: 8px;
}
.section-subtitle {
    font-size: 14px;
    color: var(--text-color-secondary);
}

/* Services Section */
.services-section {
    padding: 64px 32px;
}
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}
.service-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-tab:hover {
    color: var(--brand-color);
    opacity: 0.8;
}
.service-tab--active { 
    border-bottom-color: var(--brand-color); 
    color: var(--brand-color); 
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 0 78px;
}
.popular-carousel-wrapper { overflow: hidden; padding: 0 32px; }
.popular-carousel-track { display: flex; gap: 24px; transition: transform 0.5s ease-in-out; width: fit-content; }
.popular-carousel-track .service-card { min-width: 320px; max-width: 320px; flex-shrink: 0; }
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 16px 20px;
}
.service-card-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}
.service-card-desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color-secondary);
    margin-bottom: 12px;
}
.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}
.service-tag {
    background: var(--bg-hover);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
}
.service-card-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 12px 0;
}
.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-credit {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}
.service-unlock-btn {
    background: var(--brand-color);
    border: 1px solid rgba(255,255,255,1);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
}

/* Talent Section */
.talent-section {
    background: var(--bg-section);
    padding: 54px 32px;
}
.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.talent-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.talent-icon-placeholder {
    width: 48px;
    height: 48px;
    background: var(--brand-color);
    border-radius: 5px;
    padding: 2px;
}
.talent-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.21;
    color: var(--text-color);
    margin-bottom: 4px;
}
.talent-card-count {
    font-size: 14px;
    line-height: 1.21;
    color: var(--text-color-secondary);
}

/* Freelancers Section */
.freelancers-section {
    padding: 64px 32px;
}
.freelancer-carousel-wrapper {
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto 40px;
    position: relative;
}
.freelancer-grid {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}
.freelancer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
}
.freelancer-avatar {
    width: 64px;
    height: 64px;
    background: var(--bg-hover);
    border-radius: 50%;
    object-fit: cover;
}
.freelancer-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color-secondary);
}
.freelancer-title {
    font-size: 12px;
    color: var(--text-color-secondary);
}
.freelancer-rating {
    color: #FACC15;
    font-size: 12px;
}
.trusted-companies {
    border-top: 1px solid var(--border-color);
    padding-top: 33px;
    text-align: center;
}
.trusted-text {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 24px;
}
.company-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.company-logo-placeholder {
    width: 120px;
    height: 60px;
    background: #eee;
    opacity: 0.6;
}

/* Features Section */
.features-section {
    padding: 32px 32px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 40px 32px;
}
.feature-image-placeholder {
    width: 560px;
    height: 384px;
    background: #ddd;
    border-radius: 10px;
}
.features-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.feature-item {
    display: flex;
    gap: 16px;
}
.feature-icon-placeholder {
    width: 40px;
    height: 40px;
    background: var(--brand-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 8px;
}
.feature-desc {
    font-size: 14px;
    line-height: 1.43;
    color: var(--text-color-secondary);
}
.feature-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-color);
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: 64px 32px;
}
.faq-list {
    max-width: 768px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #E5E7EB;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question:hover {
    opacity: 0.8;
}
.faq-question-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
}
.faq-toggle {
    font-size: 20px;
    color: #6B7280;
    transition: transform 0.3s ease;
}
.faq-answer {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.43;
    color: var(--text-color-secondary);
    display: none;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.faq-item--open .faq-toggle { 
    transform: rotate(45deg);
    color: var(--brand-color);
}
.faq-item--open .faq-question-text {
    color: var(--brand-color);
}

/* CTA Section */
.cta-section {
    background: #FFFAEB;
    padding: 64px 336px;
    text-align: center;
}
.cta-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    color: var(--text-color);
    margin-bottom: 16px;
}
.cta-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color-secondary);
    margin-bottom: 32px;
}
.cta-button {
    display: inline-block;
    background: var(--brand-color);
    color: #000;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .features-grid { grid-template-columns: 1fr; }
    .hero-images { display: none; }
    .service-cards { padding: 0; }
    .cta-section { padding: 64px 32px; }
}

/* ================= Home Page (Logged-in User Dashboard) ================= */

/* Hero Section */
.home-hero-section {
    background: linear-gradient(83deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%), url('../img/home_hero_bg-14f817.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 32px;
    border-radius: 0 0 35px 35px;
}
.home-hero-content {
    max-width: 600px;
    min-height: 300px
}
.home-hero-title {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.21;
    color: #fff;
    margin-bottom: 24px;
}
.home-hero-subtitle {
    font-size: 18px;
    line-height: 1.44;
    color: #fff;
    margin-bottom: 36px;
}
.home-hero-buttons {
    display: flex;
    gap: 12px;
}
.home-hero-btn {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 52px;
    display: inline-flex;
    align-items: center;
}
.home-hero-btn--primary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.home-hero-btn--primary:hover {
    background: rgba(255, 255, 255, 0.3);
}
.home-hero-btn--secondary {
    background: #fff;
    color: #000;
}
.home-hero-btn--secondary:hover {
    background: #f5f5f5;
}

/* Talent Section */
.home-talent-section {
    background: #FFF9E6;
    padding: 80px 32px 60px;
}
.home-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.home-section-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    color: var(--text-color);
    margin-bottom: 8px;
}
.home-section-subtitle {
    font-size: 14px;
    line-height: 1.43;
    color: var(--text-color-secondary);
}
.home-talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

/* Provider Stats (else branch) */
.home-provider-stats-section { padding: 20px 0 0; }
.home-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.home-stat-card {
    width: 320px;
    height: 150px;
    background: var(--bg-hover);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.home-stat-label {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: var(--text-color);
    opacity: 0.9;
}
.home-stat-value {
    margin-top: 6px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.21;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .home-stats { gap: 12px; }
    .home-stat-card { width: 32%; min-width: 160px; height: 78px; }
}
.home-talent-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.home-talent-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-color);
    border-radius: 5px;
    padding: 2px;
}
.home-talent-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.21;
    color: var(--text-color);
    margin-bottom: 4px;
}
.home-talent-card-count {
    font-size: 14px;
    line-height: 1.21;
    color: var(--text-color-secondary);
}

/* Services Section */
.home-services-section {
    padding: 64px 32px;
}
.home-section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}
.home-see-all-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-color-secondary);
    transition: color 0.2s ease;
}
.home-see-all-btn:hover {
    color: var(--text-color);
}
.home-service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.home-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 16px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.home-service-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}
.home-service-desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color-secondary);
    margin-bottom: 12px;
}
.home-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}
.home-service-tag {
    background: var(--bg-hover);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
}
.home-service-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 12px 0;
}
.home-service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-service-credit {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}
.home-service-unlock-btn {
    background: var(--brand-color);
    border: 1px solid rgba(255,255,255,1);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}
.home-service-unlock-btn:hover {
    filter: brightness(0.95);
}

/* Responsive styles for home-service-cards */
@media (max-width: 1400px) {
    .home-service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .home-service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-service-cards {
        grid-template-columns: 1fr;
    }
}

/* Banner Section */
.home-banner-section {
    background: var(--bg-hover);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    margin: 0 75px;
    padding: 80px 45px;
    position: relative;
    overflow: hidden;
}
.home-banner-content {
    max-width: 686px;
}
.home-banner-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}
.home-banner-subtitle {
    font-size: 20px;
    line-height: 1.19;
    color: #B8B8B8;
    margin-bottom: 32px;
}
.home-banner-btn {
    background: var(--brand-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    padding: 12px 36px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.home-banner-btn:hover {
    filter: brightness(0.95);
}

/* Popular Services Section */
.home-popular-section {
    padding: 64px 32px;
}
.home-popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
}
.home-popular-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
}
.home-popular-see-all {
    font-size: 24px;
    font-weight: 500;
    color: var(--brand-color);
    text-decoration: none;
}
.home-popular-see-all:hover {
    text-decoration: underline;
}
.home-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}
.home-popular-carousel-wrapper {
    overflow: hidden;
    padding: 25px 32px;
}
.home-popular-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}
.home-popular-carousel-track .home-popular-card {
    min-width: 240px;
    max-width: 240px;
    flex-shrink: 0;
}

/* Static mode for 5 or fewer services */
.home-popular-carousel-track.static-mode {
    width: 100% !important;
    justify-content: center;
    flex-wrap: wrap;
    transform: none !important;
}

.home-popular-carousel-track.static-mode .home-popular-card {
    flex-shrink: 1;
}
.home-popular-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.24);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.home-popular-card:hover {
    transform: translateY(-4px);
}
.home-popular-card-image {
    width: 100%;
    height: 230px;
    background: var(--bg-hover);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home-popular-card-label {
    background: var(--bg-card);
    padding: 10px 53px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking Section */
.home-booking-section {
    padding: 64px 32px;
}
.home-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 27px;
}
.home-booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 363px;
}
.home-booking-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}
.home-booking-desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color-secondary);
}
.home-booking-provider {
    display: flex;
    gap: 8px;
    align-items: center;
}
.home-booking-avatar {
    width: 24px;
    height: 24px;
    background: var(--bg-hover);
    border-radius: 800px;
    object-fit: cover;
}
.home-booking-provider-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.home-booking-provider-header {
    display: flex;
    align-items: center;
}
.home-booking-provider-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
}
.home-booking-provider-badge {
    color: #2196F3;
}
.home-booking-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.home-booking-rating-icon {
    color: #FFA600;
    font-size: 12px;
}
.home-booking-rating-text {
    font-size: 12px;
    font-weight: 700;
    color: #000;
}
.home-booking-payment {
    background: #FFFAEE;
    border-radius: 8px;
    padding: 9px 24px;
    display: flex;
    justify-content: space-between;
}
.home-booking-payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.home-booking-payment-label {
    font-size: 12px;
    color: var(--text-color-secondary);
}
.home-booking-payment-value {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
}
.home-booking-payment-value--released {
    color: #2E8400;
}
.home-booking-duration {
    font-size: 12px;
    color: var(--text-color);
}
.home-booking-divider {
    border: none;
    border-top: 1px solid #EDEDED;
}
.home-booking-dates {
    display: flex;
    justify-content: space-between;
}
.home-booking-date-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
}
.home-booking-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.home-booking-btn {
    border: none;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}
.home-booking-btn--view {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    flex: 1;
}
.home-booking-btn--view:hover {
    background: var(--bg-hover);
}
.home-booking-btn--completed {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    flex: 1;
}
.home-booking-btn--message {
    background: var(--brand-color);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-booking-btn--message:hover {
    filter: brightness(0.95);
}

/* CTA Section */
.home-cta-section {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    margin: 64px 76px;
    padding: 78px 45px;
    text-align: center;
}
.home-cta-content {
    max-width: 800px;
    text-align: left;
}
.home-cta-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.14;
    color: var(--text-color);
    margin-bottom: 16px;
}
.home-cta-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color-secondary);
    margin-bottom: 32px;
}
.home-cta-btn {
    background: var(--brand-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.home-cta-btn:hover {
    filter: brightness(0.95);
}

/* Responsive for Home Page */
@media (max-width: 1024px) {
    .home-talent-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .home-service-cards { grid-template-columns: 1fr; }
    .home-popular-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .home-booking-grid { grid-template-columns: 1fr; }
    .home-banner-section { margin: 0 32px; }
    .home-cta-section { margin: 32px; }
}

@media (max-width: 768px) {
    .home-hero-title { font-size: 28px; }
    .home-hero-subtitle { font-size: 16px; }
    .home-section-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .home-popular-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .home-banner-title { font-size: 28px; }
    .home-cta-title { font-size: 24px; }
}

/* ================= Booking Page ================= */

/* Page Header */
.booking-page-header {
    padding: 28px 72px;
}
.booking-page-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    color: #101828;
   
}

/* Booking Section */
.booking-section {
    padding: 28px 72px 64px;
}
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(361px, 1fr));
    gap: 75px;
    max-width: 1535px;
    margin: 0 auto;
}

/* Booking Card */
.booking-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking-card-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Card Title & Description */
.booking-card-title {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.125;
    color: #101828;
}
.booking-card-description {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: #6B7084;
}

/* Provider Header */
.booking-provider-header {
    display: flex;
    align-items: center;
    gap: 8px;
}
.booking-provider-avatar {
    width: 24px;
    height: 24px;
    border-radius: 800px;
    object-fit: cover;
}
.booking-provider-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.booking-provider-name-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 74px;
}
.booking-provider-name-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}
.booking-provider-name {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
}
.booking-verified-icon {
    width: 16px;
    height: 16px;
}
.booking-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.booking-rating-text {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.19;
    color: #000000;
}

/* Payment Info */
.booking-payment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 9px 24px;
    background: #FFFAEE;
    border-radius: 8px;
}
.booking-payment-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.booking-payment-label {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.21;
    color: #6B7084;
}
.booking-payment-value {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #1E151D;
}
.booking-payment-released {
    color: #2E8400;
}

/* Duration */
.booking-duration {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
}

/* Divider */
.booking-divider {
    height: 1px;
    background: #EDEDED;
}

/* Dates */
.booking-dates {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.booking-date-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 10px;
}
.booking-date-text {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: #101828;
}

/* Action Buttons */
.booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.booking-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
    cursor: pointer;
    transition: all 0.3s ease;
}
.booking-btn:hover {
    background: #F9FAFB;
    border-color: #E5E7EB;
}
.booking-btn-active {
    background: #FFFFFF;
}
.booking-btn-completed {
    background: #FFFFFF;
    color: #2E8400;
}
.booking-btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px;
    width: 48px;
    height: 38px;
    background: #FFBC00;
    border: 1px solid #FFBC00;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000000;
}
.booking-btn-icon:hover {
    background: #FFD54F;
    border-color: #FFD54F;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .booking-page-header {
        padding: 20px 24px;
    }
    .booking-section {
        padding: 20px 24px 40px;
    }
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .booking-dates {
        gap: 20px;
    }
    .booking-provider-name-rating {
        gap: 20px;
    }
}

/* ================= Booking Details Page ================= */

.booking-details-section {
    padding: 21px 61.25px 64px;
}

.booking-details-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
   
    margin: 0 auto;
}

/* Main Details Card */
.booking-details-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.booking-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 694px;
}

.booking-details-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 457px;
}

.booking-details-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.21;
    color: #101828;
}

.booking-details-description {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: #6B7084;
}

.booking-details-provider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.booking-details-provider-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-details-avatar {
    width: 24px;
    height: 24px;
    border-radius: 800px;
    object-fit: cover;
}

.booking-details-provider-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-details-provider-name {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.21;
    color: #000000;
}

.booking-details-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Milestones Section */
.booking-milestones-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-milestones-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.21;
    color: #101828;
}

.booking-milestones-grid {
    display: flex;
    gap: 50px;
}

/* Milestone Card */
.booking-milestone-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 400px;
    transition: all 0.3s ease;
}

.booking-milestone-content {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.booking-milestone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.booking-milestone-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
}

.booking-milestone-price {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
}

.booking-milestone-description {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: #6B7084;
    white-space: pre-line;
}

.booking-milestone-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.booking-milestone-list li {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: #6B7084;
}

.booking-milestone-dates {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-edit-icon {
    width: 16px;
    height: 16px;
    margin-left: 6px;
}

/* Milestone Actions */
.booking-milestone-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.booking-milestone-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid;
}

.booking-milestone-btn-secondary {
    background: #FFFFFF;
    border-color: #F5F5F5;
    color: #101828;
}

.booking-milestone-btn-secondary:hover {
    background: #F9FAFB;
    border-color: #E5E7EB;
}

.booking-milestone-btn-primary {
    background: #FFBC00;
    border-color: #FFBC00;
    color: #101828;
}

.booking-milestone-btn-primary:hover {
    background: #FFD54F;
    border-color: #FFD54F;
}

.booking-milestone-btn-upcoming {
    background: #FFFFFF;
    border-color: #F5F5F5;
    color: #101828;
    width: 100%;
}

.booking-milestone-btn-upcoming:hover {
    background: #F9FAFB;
    border-color: #E5E7EB;
}

/* Responsive for Details Page */
@media (max-width: 1024px) {
    .booking-details-section {
        padding: 20px 24px 40px;
    }
    
    .booking-details-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .booking-details-info {
        width: 100%;
    }
    
    .booking-milestones-grid {
        flex-direction: column;
    }
    
    .booking-milestone-card {
        width: 100%;
    }
    
    .booking-details-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Modal */
.booking-modal.hidden { display: none; }
.booking-modal { position: fixed; inset: 0; z-index: 50; }
.booking-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.booking-modal-content {
    position: relative;
    max-width: 420px;
    width: calc(100% - 32px);
    margin: 10vh auto 0;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    padding: 20px;
}
.booking-modal-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #101828;
    margin-bottom: 12px;
}
.booking-modal-label {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #6B7084;
    margin-bottom: 6px;
}
.booking-modal-input {
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: Inter, sans-serif;
    font-size: 14px;
}
.booking-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 14px; }
.booking-modal-btn {
    padding: 10px 14px;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    border: 1px solid transparent;
    cursor: pointer;
}
.booking-modal-btn-secondary { background: #FFFFFF; color: #101828; border-color: #E5E7EB; }
.booking-modal-btn-secondary:hover { background: #F9FAFB; }
.booking-modal-btn-primary { background: #FFBC00; color: #101828; border-color: #FFBC00; }
.booking-modal-btn-primary:hover { background: #FFD54F; border-color: #FFD54F; }

/* Messages Page */
.messages-section {
    min-height: calc(100vh - 71px);
    background: #FAFAFA;
    padding: 0;
}
.messages-container {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    height: calc(100vh - 71px);
}

/* Left Panel - Message List */
.messages-list-panel {
    width: 359px;
    background: #FFFFFF;
    border-right: 1px solid #EBEBEB;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.08);
}
.messages-list-header {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.messages-list-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}
.messages-search-wrapper {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.messages-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #F3F3F3;
    border-radius: 12px;
}
.messages-search-input {
    flex: 1;
    border: none;
    background: transparent !important;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #101828;
    outline: none;
}
.messages-search-input::placeholder {
    color: rgba(16, 24, 40, 0.4);
}
.messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px;
}

/* Message Item */
.message-item {
    display: flex;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.message-item-active {
    background: #FFFFFF;
    border-radius: 12px;
}
.message-item-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.message-item-content {
    flex: 1;
    min-width: 0;
}
.message-item-name {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
    margin: 0 0 8px 0;
}
.message-item-text {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 11.65px;
    line-height: 1.5;
    color: #6B7084;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Right Panel - Chat */
.messages-chat-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}
.messages-chat-header {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.messages-chat-user {
    display: flex;
    gap: 16px;
    flex: 1;
}
.messages-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}
.messages-chat-user-info {
    display: flex;
    flex-direction: column;
}
.messages-chat-user-name {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
    color: #101828;
    margin: 0;
}
.messages-chat-online {
    display: flex;
    align-items: center;
    gap: 8px;
}
.messages-chat-online-dot {
    width: 10px;
    height: 10px;
    background: #00E357;
    border-radius: 50%;
}
.messages-chat-online-text {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.5;
    color: #101828;
    opacity: 0.6;
}

/* Chat Header Actions */
.messages-chat-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.messages-chat-btn {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 16px;
    font-family: Inter, sans-serif;
    font-weight: 501;
    font-size: 12px;
    line-height: 1.5;
    color: #101828;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.messages-chat-btn:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.messages-chat-btn:active {
    transform: scale(0.98);
}

.messages-chat-btn-offer {
    min-width: 120px;
}

.messages-chat-btn-report {
    min-width: 100px;
}

.messages-chat-flag-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.messages-chat-btn-report span {
    display: inline-block;
}

/* Responsive styles for chat header buttons */
@media (max-width: 768px) {
    .messages-chat-header {
        flex-wrap: wrap;
        padding: 16px;
    }
    
    .messages-chat-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 12px;
    }
    
    .messages-chat-btn {
        padding: 8px 12px;
        font-size: 13px;
        flex: 1;
        max-width: 150px;
    }
    
    .messages-chat-btn-offer {
        min-width: auto;
    }
    
    .messages-chat-btn-report {
        min-width: auto;
    }
    
    .messages-chat-flag-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .messages-chat-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .messages-chat-actions {
        width: 100%;
        margin-top: 16px;
    }
    
    .messages-chat-btn {
        flex: 1;
        max-width: none;
    }
}

/* Chat Body */
.messages-chat-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: opacity 0.3s ease;
}

/* Chat Message Groups */
.chat-message-group {
    display: flex;
    gap: 16px;
    align-self: flex-start;
}
.chat-message-me {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.chat-message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.chat-message-bubbles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chat-message-me .chat-message-bubbles {
    align-items: flex-end;
}
.chat-message-bubble {
    padding: 8px 16px;
    background: #F1F1F1;
    border-radius: 12px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
    max-width: 400px;
    word-wrap: break-word;
    transition: transform 0.2s ease;
}
.chat-message-me .chat-message-bubble {
    background: #FFBC00;
    color: #FFFFFF;
}
.chat-message-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.chat-message-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    width: 56.89px;
}
.chat-message-time span {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.21;
    color: #8C8C8C;
}

/* Booking Card in Chat */
.chat-booking-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 326px;
    min-width: 400px;
}
.chat-booking-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background: #FFFAEE;
    border: 1px solid #FFBC00;
    border-radius: 10px;
}
.chat-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.chat-booking-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}
.chat-booking-price {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
}
.chat-booking-category {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #6B7084;
    margin: 0;
}
.chat-booking-description {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}
.chat-booking-actions {
    display: flex;
    gap: 10px;
}
.chat-booking-btn {
    flex: 1;
    padding: 16px;
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.chat-booking-btn-reject {
    background: #FFFFFF;
    color: #101828;
    border: 1px solid #F5F5F5;
}
.chat-booking-btn-reject:hover {
    background: #F9FAFB;
}

.chat-booking-btn-pending {
    background: #FFFFFF;
    color: #101828;
    border: 1px solid #F5F5F5;
}
.chat-booking-btn-pending:hover {
    background: #F9FAFB;
}
.chat-booking-btn-accept {
    background: #FFBC00;
    color: #101828;
}
.chat-booking-btn-accept:hover {
    background: #FFD54F;
}
.chat-booking-time {
    display: flex;
    align-items: center;
    gap: 6px;
}
.chat-booking-time span {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.21;
    color: #8C8C8C;
}

/* Chat Footer */
.messages-chat-footer {
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: #FFFFFF;
}
.messages-chat-input-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
}
.messages-chat-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
}
.messages-chat-input::placeholder {
    color: #D6D6D6;
}

.read-icon {
    width: 20px;
    height: 20px;
}

.messages-search-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.messages-chat-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

/* Chat Rejection Modal */
.chat-modal.hidden { display: none; }
.chat-modal { position: fixed; inset: 0; z-index: 60; display: block; }
.chat-modal.open .chat-modal-content { transform: translateY(0); opacity: 1; }
.chat-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.chat-modal-content {
    position: relative;
    max-width: 360px;
    width: calc(100% - 32px);
    margin: 10vh auto 0;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    transform: translateY(12px);
    opacity: 0;
    transition: all 0.15s ease;
}
.chat-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px 0; }
.chat-modal-title {
    font-family: Inter, sans-serif; font-weight: 700; font-size: 14px; line-height: 1.21; color: #101828; margin: 0;
}
.chat-modal-close { background: transparent; border: none; font-size: 24px; line-height: 1; cursor: pointer; color: #6B7084; }
.chat-modal-body { padding: 12px 20px 16px; display: flex; flex-direction: column; gap: 12px; }
.radio-row { display: flex; align-items: center; gap: 10px; }
.radio-row input[type="radio"] { appearance: none; width: 18px; height: 18px; border: 2px solid #E5E7EB; border-radius: 50%; position: relative; cursor: pointer; }
.radio-row input[type="radio"]:checked { border-color: #FFBC00; }
.radio-row input[type="radio"]:checked::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; background: #FFBC00; border-radius: 50%; }
.radio-row span { font-family: Inter, sans-serif; font-weight: 500; font-size: 14px; color: #101828; }
.chat-modal-actions { padding: 0 20px 20px; }
.chat-modal-submit { width: 100%; background: #FFBC00; color: #101828; border: 1px solid #FFBC00; border-radius: 8px; padding: 12px 16px; font-family: Inter, sans-serif; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.chat-modal-submit:hover { background: #FFD54F; border-color: #FFD54F; }


/* Responsive */
@media (max-width: 1024px) {
    .messages-list-panel {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .messages-container {
        flex-direction: column;
    }
    .messages-list-panel {
        width: 100%;
        height: 50vh;
    }
    .messages-chat-panel {
        height: 50vh;
    }
}

/* Profile Page */
.profile-page-section {
    /* min-height: calc(100vh - 71px); */
    background: #FAFAFA;
    padding: 24px 0;
}
.profile-page-container {
    display: flex;
    gap: 0;
   
    margin: 0 auto;
    padding: 0 62.6px;
}

/* Sidebar */
.profile-sidebar {
    width: 355px;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    margin-right: 12.35px;
    flex-shrink: 0;
}
.profile-sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 17px 20px 17px 10px;
    width: 355px;
    background: #FFFFFF;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
/* Language dropdown align and style in sidebar */
.profile-sidebar [data-dropdown-toggle="language-dropdown-menu"] {
    margin-left: auto;
    background: transparent;
    border: 0;
    padding: 6px 8px;
}

.profile-sidebar #language-dropdown-menu {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 4px 0;
    z-index: 1000;
}

.profile-sidebar #language-dropdown-menu ul { padding: 6px 0; }
.profile-sidebar #language-dropdown-menu a { color: #101828; }
.profile-sidebar #language-dropdown-menu a:hover { background: #F9FAFB; }
.profile-sidebar-item-active {
    background: #101828;
    color: #FFFFFF;
}
.profile-sidebar-item-active .profile-sidebar-label {
    color: #FFFFFF;
}
.profile-sidebar-item:not(.profile-sidebar-item-active):hover {
    background: #F9FAFB;
}
.profile-sidebar-item-logout .profile-sidebar-label {
    color: #FF0000;
}
.profile-sidebar-item-logout:hover {
    background: #FFF5F5;
}
.profile-sidebar-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile-sidebar-icon svg {
    width: 100%;
    height: 100%;
}
.profile-sidebar-item-active .profile-sidebar-icon svg {
    stroke: #FFFFFF;
}
.profile-sidebar-item-logout .profile-sidebar-icon svg {
    stroke: #FF0000;
}
.profile-sidebar-label {
    flex: 1;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #111415;
}
.profile-sidebar-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.profile-sidebar-item-active .profile-sidebar-arrow {
    display: none;
}
.profile-sidebar-item:first-child {
    border-radius: 10px 10px 0 0;
}
.profile-sidebar-item:last-child {
    border-radius: 0 0 10px 10px;
}

/* Profile Content */
.profile-content {
    flex: 1;
    padding-left: 12.35px;
    background: #FFFFFF;
    border: 1.2px solid #EAEFEF;
    border-radius: 12px;
    padding: 17px 14px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.profile-page-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
    letter-spacing: 1.3%;
    color: #101828;
    margin-bottom: 33px;
}
.profile-card {
    background: #FFFFFF;
    border: 1.2px solid #EAEFEF;
    border-radius: 12px;
    padding: 17px 14px;   
    position: relative;
}
.profile-card-header {
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 16px;
}
.profile-avatar-wrapper {
    position: relative;
}
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #ACACAC;
    object-fit: cover;
}
.profile-avatar-header {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ACACAC;
    object-fit: cover;
}
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.profile-name {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.21;
    color: #1C1C1C;
    margin: 0;
}
.profile-location {
    display: flex;
    align-items: center;
    gap: 4px;
}
.profile-location span {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    color: #000000;
}
.profile-divider {
    width: 841px;
    height: 1px;
    background: #F3F3F3;
    margin: 0 auto;
}
.profile-contact-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px 9px;
    border: 1px solid #F5F5F5;
    border-radius: 10px;
    width: 100%;
}
.profile-contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.profile-contact-label {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
}
.profile-contact-value {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
    text-align: right;
    max-width: 335px;
}
.profile-contact-divider {
    width: 332px;
    height: 0;
    border-top: 0.98px solid #F5F5F5;
    margin: 0;
}

/* Profile Info Card Styles (for Bio, Skills, Languages, Certifications) */
.profile-info-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 9px;
    background: #F9FAFB;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    width: 450px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.profile-info-label {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6B7084;
    flex-shrink: 0;
    min-width: 120px;
}

.profile-info-value {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
    text-align: right;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* For view mode (non-editable), align text to left for better readability */
.profile-info-card .profile-info-value:not(.profile-info-input):not(.profile-info-textarea) {
    text-align: left;
    font-weight: 400;
}

.profile-info-textarea {
    font-weight: 400;
    text-align: left;
    resize: vertical;
    min-height: 80px;
    padding: 8px 12px;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    background: #FFFFFF;
    font-size: 14px;
    line-height: 1.6;
    color: #101828;
    transition: all 0.3s ease;
    width: 100%;
}

.profile-info-textarea:focus {
    outline: none;
    border-color: #FFBC00;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1);
}

.profile-info-input {
    font-weight: 400;
    text-align: left;
    padding: 8px 12px;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    background: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
    transition: all 0.3s ease;
    width: 100%;
}

.profile-info-input:focus {
    outline: none;
    border-color: #FFBC00;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1);
}

.profile-info-input::placeholder,
.profile-info-textarea::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.profile-info-divider {
    width: 100%;
    height: 1px;
    background: #EAEAEA;
    margin: 0;
}

.profile-certificate-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-edit-wrapper {
    position: absolute;
    top: 38.18px;
    right: 14px;
}
.profile-edit-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px;
    background: rgba(13, 52, 47, 0.02);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.profile-edit-btn:hover {
    background: rgba(13, 52, 47, 0.05);
    transform: translateY(-2px);
}
.profile-edit-btn span {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.29;
    color: #101828;
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-page-container {
        flex-direction: column;
        padding: 0 24px;
    }
    .profile-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }
    .profile-content {
        padding-left: 0;
    }
    .profile-divider {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .profile-avatar-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile-contact-card {
        width: 100%;
    }
    .profile-contact-divider {
        width: 100%;
    }
    .profile-info-card {
        width: 100%;
    }
    .profile-edit-wrapper {
        position: static;
        margin-top: 16px;
    }
}

/* Credits Page Styles */
.credits-page-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
    letter-spacing: 0.31px;
    color: #101828;
    margin: 0 0 33px 0;
}

.credits-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.credits-card {
    background: #FFFCF4;
    border: 1px solid #FFF8ED;
    border-radius: 12px;
    padding: 17px 14px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.credits-card-header {
    position: relative;
    z-index: 2;
}

.credits-card-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 57px;
}

.credits-total-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credits-total-label {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.19;
    color: #101828;
    margin: 0;
}

.credits-amount-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.credits-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.credits-amount {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.19;
    letter-spacing: 0.6px;
    color: #101828;
}

.credits-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    background: #FDB022;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    color: #FFFFFF;
    align-self: flex-start;
}

.credits-add-btn:hover {
    background: #FFC700;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(253, 176, 34, 0.3);
}

.credits-add-btn svg:first-of-type {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.credits-add-btn svg:last-of-type {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.credits-add-btn span {
    white-space: nowrap;
}

.credits-transactions-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credits-transactions-title {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    font-size: 15.11px;
    line-height: 1.19;
    color: #000000;
    margin: 0;
}

.credits-transactions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.credits-transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 12px;
    background: rgba(169, 169, 169, 0.06);
    border-radius: 8.39px;
    transition: all 0.3s ease;
}

.credits-transaction-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credits-transaction-icon-wrapper {
    width: 40.29px;
    height: 40.29px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFBC00;
    border-radius: 3.36px;
    flex-shrink: 0;
}

.credits-transaction-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

.credits-transaction-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.credits-transaction-title {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.19;
    color: #101828;
    margin: 0;
}

.credits-transaction-date {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.19;
    letter-spacing: 0.24px;
    color: #6B7084;
    margin: 0;
}

.credits-transaction-amount {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.19;
    color: #FF3B30;
}

.credits-transaction-amount-credit {
    color: #078800;
}

.credits-transaction-amount-debit {
    color: #FF3B30;
}

/* Background pattern for credits card */
.credits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
    border-radius: 12px;
    pointer-events: none;
}

/* Responsive adjustments for credits page */
@media (max-width: 768px) {
    .credits-card-content {
        flex-direction: column;
        gap: 16px;
    }
    .credits-add-btn {
        align-self: stretch;
    }
    .credits-amount {
        font-size: 24px;
    }
    .credits-transactions-list {
        grid-template-columns: 1fr;
    }
    .credits-transaction-item {
        padding: 12px;
    }
    .credits-transaction-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    .credits-transaction-icon-wrapper svg {
        width: 36px;
        height: 36px;
    }
}

/* Edit Profile Page Styles */
.edit-profile-card {
    background: #FFFFFF;
    border: 1.2px solid #EAEFEF;
    border-radius: 12px;
    padding: 17px 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edit-profile-avatar-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.edit-profile-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.edit-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ACACAC;
}

.edit-profile-avatar-upload {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.edit-profile-avatar-upload:hover {
    opacity: 1;
    transform: scale(1.05);
}

.edit-profile-avatar-input {
    display: none;
}

.edit-profile-divider {
    width: 100%;
    height: 1px;
    background: #F3F3F3;
    margin: 0;
}

.edit-profile-fields {
    display: flex;
    flex-direction: row;
    gap: 22.95px;
    padding: 0 14px;
    margin-top: 20px;
}

.edit-profile-field-group {
    display: flex;
    flex-direction: column;
    gap: 11.48px;
    flex: 1;
    margin-top: 40px;
}

.edit-profile-label {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15.3px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.edit-profile-input {
    width: 100%;
    padding: 17.22px 23.91px;
    background: #FFFFFF;
    border: 0.96px solid #EBEBEB;
    border-radius: 38.26px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14.35px;
    line-height: 1.21;
    color: #ACACAC;
    transition: all 0.3s ease;
}

.edit-profile-input:focus {
    outline: none;
    border-color: #FFBC00;
    color: #101828;
}

.edit-profile-input::placeholder {
    color: #ACACAC;
}

.edit-profile-field-group.focused .edit-profile-input {
    border-color: #FFBC00;
}

.edit-profile-error {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #FF0000;
    margin-top: 4px;
}

.edit-profile-save-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(255, 188, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: #000000;
    margin-left: 14px;
    margin-top: 20px;
}

.edit-profile-save-btn:hover {
    background: rgba(255, 188, 0, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 188, 0, 0.3);
}

/* Responsive adjustments for edit profile page */
@media (max-width: 768px) {
    .edit-profile-fields {
        flex-direction: column;
        gap: 16px;
    }
    
    .edit-profile-save-btn {
        align-self: stretch;
        margin-left: 0;
    }
    
    .edit-profile-avatar-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .edit-profile-avatar {
        width: 80px;
        height: 80px;
    }
    
    .edit-profile-avatar-upload {
        width: 24px;
        height: 24px;
    }
    
    .edit-profile-avatar-upload svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================
   Change Password Page Styles
   ========================================== */

.change-password-card {
    /* background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1); */
    padding: 30px;
    width: 100%;
    max-width: 580px;
}

.change-password-header {
    margin-bottom: 17px;
}

.change-password-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.change-password-form {
    width: 100%;
}

.change-password-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.change-password-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4.665px;
}

.change-password-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1em;
    color: #6B7084;
}

.change-password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #EDF3F1;
    border-radius: 10px;
    padding: 9.111px 13.11px;
    transition: all 0.3s ease;
}

.change-password-input-wrapper.focused {
    border-color: #FFBC00 ;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1);
}

.change-password-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    color: #101828;
    outline: none;
    padding-right: 40px;
}



.change-password-input:focus {
    outline: none !important;
    border-color: #FFBC00 !important;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1) !important;
}

.change-password-toggle-btn {
    position: absolute;
    right: 13px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
}

.change-password-toggle-btn:hover {
    opacity: 0.7;
}

.change-password-toggle-btn .eye-icon {
    width: 24px;
    height: 24px;
}

.change-password-submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9.445px 16px 10.555px;
    background: #FFBC00;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.43;
    color: #101828;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    height: 50px;
}

.change-password-submit-btn:hover {
    background: #FEB635;
    box-shadow: 0 4px 12px rgba(255, 188, 0, 0.3);
}

.change-password-submit-btn:active {
    transform: scale(0.98);
}

/* Responsive styles for Change Password page */
@media (max-width: 768px) {
    .change-password-card {
        padding: 20px;
    }
    
    .change-password-title {
        font-size: 20px;
    }
    
    .change-password-fields {
        gap: 12px;
    }
    
    .change-password-submit-btn {
        width: 100%;
    }
}

/* ==========================================
   Provider Profile Page Styles
   ========================================== */

.provider-profile-section {
    background: #FAFAFA;
    padding: 24px 0 64px;
    min-height: calc(100vh - 71px);
}

.provider-profile-container {
    margin: 0 auto;
    padding: 0 64px;
}

.provider-profile-grid {
    display: grid;
    grid-template-columns: 931px 361px;
    gap: 20px;
}

/* Left Column */
.provider-profile-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Provider Card */
.provider-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 17px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.provider-card-header {
    display: flex;
    align-items: center;
}

.provider-info-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5px;
    gap: 8px;
}

.provider-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-avatar {
    width: 50px;
    height: 50px;
    border-radius: 800px;
    object-fit: cover;
}

.provider-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.provider-name-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.provider-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-verified {
    width: 16px;
    height: 16px;
}

.provider-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.provider-location span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
}

.provider-actions {
    display: flex;
    /* flex-direction: column;
    align-items: flex-end; */
    gap: 16px;
}

.provider-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.provider-rating {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.19;
    color: #101828;
}

.provider-heart-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    margin-top:10px;
}

.provider-heart-btn:hover {
    transform: scale(1.1);
}

.provider-buttons {
    display: flex;
    gap: 12px;
}

.provider-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-btn-outline {
    background: transparent;
    border: 1px solid #F5F5F5;
}

.provider-btn-outline:hover {
    background: #FAFAFA;
    border-color: #EBEBEB;
}

.provider-btn-primary {
    background: #FFBC00;
    border: 1px solid transparent;
}

.provider-btn-primary:hover {
    background: #FEB635;
    box-shadow: 0 4px 12px rgba(255, 188, 0, 0.3);
}

.provider-divider {
    height: 1px;
    background: #EDEDED;
    width: 100%;
}

/* Stats Section */
.provider-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
}

.provider-stat-item {
    display: flex;
    gap: 11px;
}

.provider-stat-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.provider-stat-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-stat-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: #6B7084;
    margin: 0;
}

.provider-stat-divider {
    width: 0;
    height: 35px;
    border-left: 1px solid #EBEBEB;
}

/* Skills & Languages Section */
.provider-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 5px;
}

.provider-section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

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

.provider-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 9px 12px;
    background: #FFFAEE;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
    height: 32px;
}

/* Portfolio Card */
.provider-portfolio-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 17px 12px 17px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.provider-portfolio-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.provider-portfolio-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-portfolio-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-portfolio-grid {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.provider-portfolio-item {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 17px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.provider-portfolio-image {
    width: 260px;
    height: 123px;
    object-fit: cover;
    border-radius: 8px;
}

.provider-portfolio-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 274px;
}

.provider-portfolio-item-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-portfolio-item-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: #6B7084;
    margin: 0;
}

/* Certifications Card */
.provider-cert-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 17px 12px 17px 17px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.provider-cert-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.provider-cert-item {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    gap: 16px;
    width: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-cert-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.provider-cert-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #F4F4F4;
}

.provider-cert-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.provider-cert-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-cert-org {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: #6B7084;
    margin: 0;
}

/* Right Column */
.provider-profile-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Services Section */
.provider-services-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.provider-services-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.provider-services-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-services-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.21;
    color: #6B7084;
    margin: 0;
}

.provider-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider-service-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 17px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.provider-service-content {
    display: flex;
    gap: 11px;
    width: 100%;
}

.provider-service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.provider-service-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-service-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: #6B7084;
    margin: 0;
}

.provider-service-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.125;
    color: #000000;
    text-align: right;
    margin: 0;
}

.provider-service-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid #6B7084;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #101828;
    cursor: pointer;
    width: 100%;
    height: 35px;
    transition: all 0.3s ease;
}

.provider-service-btn:hover {
    background: #FFBC00;
    border-color: #FFBC00;
    box-shadow: 0 4px 12px rgba(255, 188, 0, 0.3);
}

/* Reviews Section */
.provider-reviews-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.provider-reviews-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.provider-reviews-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-reviews-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.21;
    color: #101828;
    margin: 0;
}

.provider-reviews-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.provider-reviews-rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.provider-reviews-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.provider-reviews-score {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.21;
    color: #292E2E;
    text-align: center;
}

.provider-reviews-projects {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider-reviews-projects-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.21;
    color: #292E2E;
    margin: 0;
}

.provider-reviews-avatars {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.provider-review-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.provider-review-avatar-more {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.21;
    color: #FFFFFF;
}

.provider-review-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider-review-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-review-rating-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 0 6px;
    background: #FFBC00;
    border-radius: 4px;
    height: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.21;
    color: #292E2E;
}

.provider-review-date {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.21;
    color: #6B7084;
}

.provider-review-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
    margin: 0;
}

.provider-review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-reviewer-avatar {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

.provider-reviewer-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.21;
    color: #101828;
}

.provider-review-divider {
    width: 100%;
    height: 0;
    border-top: 1px solid rgba(107, 112, 132, 0.1);
}

/* Responsive styles for Provider Profile page */
@media (max-width: 1312px) {
    .provider-profile-container {
        padding: 0 32px;
    }
    
    .provider-profile-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .provider-portfolio-grid {
        flex-direction: column;
    }
    
    .provider-portfolio-item {
        width: 100%;
    }
    
    .provider-portfolio-image {
        width: 100%;
    }
    
    .provider-portfolio-content {
        width: 100%;
    }
    
    .provider-cert-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .provider-profile-container {
        padding: 0 16px;
    }
    
    .provider-info-main {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .provider-actions {
        width: 100%;
        align-items: flex-start;
    }
    
    .provider-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .provider-btn {
        width: 100%;
        justify-content: center;
    }
    
    .provider-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .provider-stat-divider {
        display: none;
    }
    
    .provider-reviews-avatars {
        flex-wrap: wrap;
    }

    
}

/* ==========================================
   CMS Page Styles
   ========================================== */

.cms-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cms-page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
    color: #101828;
    margin: 0 0 20px 0;
    flex-shrink: 0;
}

.cms-content-wrapper {
    /* max-height: calc(100vh - 520px); */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    flex: 1;
    max-height: 70vh;
}

/* Custom Scrollbar Styles for CMS Content */
.cms-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.cms-content-wrapper::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 4px;
}

.cms-content-wrapper::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cms-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* Firefox Scrollbar */
.cms-content-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #D1D5DB #F5F5F5;
}

/* Responsive adjustments for CMS page */
@media (max-width: 768px) {
    .cms-content-wrapper {
        max-height: calc(100vh - 180px);
        padding-right: 5px;
    }
    
    .cms-page-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* ==================== Provider Homepage Styles ==================== */

/* Hero Section */
.provider-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    margin-bottom: 40px;
}

.provider-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(83deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
}

.provider-hero-content {
    position: relative;
    z-index: 1;
    max-width: 601px;
}

.provider-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.21;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.provider-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.44;
    color: #FFFFFF;
    margin-bottom: 36px;
}

.provider-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.provider-hero-btn {
    padding: 10px 20px;
    height: 52px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.21;
    letter-spacing: 2%;
    color: #FFFFFF;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.provider-hero-btn--primary {
    background: rgba(255, 255, 255, 0.2);
}

.provider-hero-btn--primary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.provider-hero-btn--secondary {
    background: #FFFFFF;
    color: #000000;
}

.provider-hero-btn--secondary:hover {
    background: #F5F5F5;
}

/* Provider Stats Section */
.provider-stats-wrapper {
    margin-bottom: 60px;
}

.provider-stats-section {
    padding: 40px 0;
    background: #FFF9E6;
    border-radius: 12px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.provider-stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.provider-stat-card {
    width: 315px;
    height: 128px;
    background: rgba(33, 33, 33, 0.06);
    border: 1.83px solid rgba(255, 255, 255, 0.06);
    border-radius: 18.29px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5.49px;
    padding: 14.64px 47.57px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.provider-stat-label {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 21.95px;
    line-height: 1.19;
    color: #101828;
    text-align: center;
}

.provider-stat-value {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 25.61px;
    line-height: 1.19;
    color: #101828;
    opacity: 0.96;
}

/* Provider Section Headers */
.provider-section-header {
    margin-bottom: 24px;
}

.provider-section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.33;
    color: #101828;
    margin: 0;
}

/* Provider Job Cards */
.provider-jobs-section {
    margin-bottom: 60px;
}

.provider-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(361px, 1fr));
    gap: 23px;
    margin-top: 51px;
}

.provider-job-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 14px;
    padding: 16px 20px;
    width: 100%;
    max-width: 361px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.provider-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-job-avatar {
    width: 46px;
    height: 46px;
    border-radius: 800px;
    object-fit: cover;
}

.provider-booking-avatar {
    width: 40px;
    height: 40px;
    border-radius: 800px;
    object-fit: cover;
}

.provider-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.provider-card-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.provider-card-name-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.provider-card-name {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.19;
    color: #000000;
}

.provider-card-verified {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.provider-card-verified-small {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.provider-card-message-btn {
    width: 22px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.provider-card-message-btn:hover {
    opacity: 0.7;
}

.provider-card-message-btn-small {
    width: 22px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.provider-card-message-btn-small:hover {
    opacity: 0.7;
}

.provider-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.provider-card-location svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.provider-card-location span {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.19;
    color: #000000;
}

.provider-card-role {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.125;
    color: #000000;
    margin: 0;
}

.provider-card-desc {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: #6B7084;
    margin: 0;
}

.provider-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.provider-job-tag {
    background: #FFFAEE;
    border-radius: 8px;
    padding: 9px 12px;
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.19;
    color: #1E151D;
    transition: all 0.2s ease;
    cursor: pointer;
}

.provider-job-tag:hover {
    background: #FFE8A3;
    transform: translateY(-2px);
}

.provider-job-divider {
    height: 1px;
    background: #EDEDED;
    margin: 8px 0;
}

.provider-job-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.provider-job-btn {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    border-radius: 6px;
    padding: 10px 12px;
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.19;
    color: #101828;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.provider-job-btn:hover {
    background: #F9FAFB;
    transform: scale(0.98);
}

.provider-job-btn-view {
    flex: 1;
}

.provider-job-btn-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #FFBC00;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.provider-job-btn-icon:hover {
    background: #FFBC00;
    transform: scale(0.95);
}

/* Provider Banner Section */
.provider-banner-section {
    margin: 60px 0;
    padding: 60px 0;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
}

.provider-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.provider-banner-illustration {
    width: 361px;
    height: 435px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.provider-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 686px;
}

.provider-banner-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: #101828;
    margin: 0;
}

.provider-banner-subtitle {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.19;
    color: #B8B8B8;
    margin: 0;
}

.provider-banner-btn {
    width: fit-content;
    background: #FFBC00;
    border: none;
    border-radius: 8px;
    padding: 12px 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #101828;
    cursor: pointer;
    transition: all 0.2s ease;
}

.provider-banner-btn:hover {
    background: #E5A800;
    transform: scale(1.05);
}

/* Provider Booking Section */
.provider-booking-section {
    margin-bottom: 60px;
}

.provider-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(361px, 1fr));
    gap: 30px;
    margin-top: 24px;
}

.provider-booking-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.provider-booking-divider {
    height: 1px;
    background: #EDEDED;
    margin: 8px 0;
}

.provider-booking-actions {
    display: flex;
    gap: 6px;
    justify-content: space-between;
}

.provider-booking-btn {
    flex: 1;
    border-radius: 6px;
    padding: 16px;
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.provider-booking-btn-reject {
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    color: #101828;
}

.provider-booking-btn-reject:hover {
    background: #F9FAFB;
}

.provider-booking-btn-accept {
    background: #FFBC00;
    border: none;
    color: #101828;
}

.provider-booking-btn-accept:hover {
    background: #E5A800;
}

/* Provider CTA Section */
.provider-cta-section {
    background: #FFFAEB;
    border-radius: 12px;
    padding: 78px 45px;
    margin: 60px 0;
}

.provider-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.provider-cta-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.provider-cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.14;
    color: #101828;
    margin: 0;
}

.provider-cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #6B7084;
    margin: 0;
}

.provider-cta-btn {
    background: #FFBC00;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.provider-cta-btn:hover {
    background: #E5A800;
    transform: scale(1.05);
}

/* Responsive Adjustments for Provider Homepage */
@media (max-width: 1200px) {
    .provider-stats-grid {
        gap: 16px;
    }
    
    .provider-stat-card {
        width: 180px;
        height: 110px;
    }
    
    .provider-jobs-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .provider-job-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .provider-hero-section {
        padding: 80px 0 60px;
    }
    
    .provider-hero-title {
        font-size: 32px;
    }
    
    .provider-hero-subtitle {
        font-size: 16px;
    }
    
    .provider-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .provider-hero-btn {
        width: 100%;
    }
    
    .provider-stats-section {
        padding: 24px 16px;
        margin-top: -20px;
    }
    
    .provider-stats-grid {
        flex-direction: column;
        width: 100%;
    }
    
    .provider-stat-card {
        width: 100%;
        max-width: 300px;
        height: 100px;
    }
    
    .provider-stat-label {
        font-size: 18px;
    }
    
    .provider-stat-value {
        font-size: 22px;
    }
    
    .provider-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-job-card {
        width: 100%;
        max-width: 100%;
    }
    
    .provider-banner-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .provider-banner-illustration {
        width: 250px;
        height: 300px;
    }
    
    .provider-banner-text {
        align-items: center;
    }
    
    .provider-banner-title {
        font-size: 28px;
    }
    
    .provider-banner-subtitle {
        font-size: 16px;
    }
    
    .provider-booking-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-cta-section {
        padding: 40px 24px;
    }
    
    .provider-cta-title {
        font-size: 22px;
    }
    
    .provider-cta-subtitle {
        font-size: 14px;
    }
}

/* ==========================================
   Send Offer Modal Styles
   ========================================== */

.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.offer-modal.hidden {
    display: none;
}

.offer-modal.open .offer-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.offer-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.offer-modal-content {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 745px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0px 4px 6px 0px rgba(255, 255, 255, 0.36);
    transform: translateY(12px);
    opacity: 0;
    transition: all 0.15s ease;
    z-index: 1;
}

.offer-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.offer-modal-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offer-modal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #050D2B;
    margin: 0;
}

.offer-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.offer-modal-close:hover {
    opacity: 0.7;
}

.offer-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 68px;
}

.offer-field-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-field-group-full {
    grid-column: 1 / -1;
}

.offer-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #101828;
    margin: 0;
}

.offer-input,
.offer-select,
.offer-textarea {
    width: 100%;
    padding: 10px 14px;
    background: #FFFFFF;
    border: 1px solid #D1D7DF !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #101828;
    transition: all 0.3s ease;
    outline: none;
}

.offer-input::placeholder,
.offer-textarea::placeholder {
    color: #6B7084;
}

.offer-input:focus,
.offer-select:focus,
.offer-textarea:focus {
    border-color: #FFBC00;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1);
}

.offer-field-group.focused .offer-label {
    color: #FFBC00;
}

.offer-field-group.focused .offer-input,
.offer-field-group.focused .offer-select,
.offer-field-group.focused .offer-textarea {
    border-color: #FFBC00;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1);
}

.offer-select-wrapper {
    position: relative;
    align-items: center;
}

.offer-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.offer-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.offer-textarea {
    resize: vertical;
    min-height: 93px;
    font-family: 'Inter', sans-serif;
}

.offer-modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    margin-top: 24px;
}

.offer-submit-btn {
    width: 360.38px;
    height: 49px;
    background: #FFBC00;
    border: none;
    border-radius: 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    color: #101828;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-submit-btn:hover {
    background: #FEB635;
    box-shadow: 0 4px 12px rgba(255, 188, 0, 0.3);
    transform: translateY(-1px);
}

.offer-submit-btn:active {
    transform: translateY(0);
}

.offer-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.3);
}

/* Responsive styles for Offer Modal */
@media (max-width: 768px) {
    .offer-modal-content {
        padding: 24px;
        max-width: 100%;
    }
    
    .offer-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-field-group-full {
        grid-column: 1;
    }
    
    .offer-modal-title {
        font-size: 20px;
    }
    
    .offer-submit-btn {
        width: 100%;
        max-width: 360px;
    }
    
    .offer-modal-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .offer-modal-content {
        padding: 20px;
        border-radius: 12px;
    }
    
    .offer-modal-header {
        margin-bottom: 20px;
    }
    
    .offer-form {
        gap: 20px;
    }
    
    .offer-input,
    .offer-select,
    .offer-textarea {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .offer-label {
        font-size: 14px;
    }
    
    .offer-submit-btn {
        height: 44px;
        font-size: 14px;
    }
}

/* ==========================================
   Header Styles (Replacing Tailwind)
   ========================================== */

/* Navigation Bar */
.header-nav {
    border-bottom: 2px solid #E5E7EB;
    background: #FFFFFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 100px;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.header-logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo-img {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.header-user-type {
    font-size: 12px;
    font-weight: 600;
    color: #FFBC00;
    text-transform: capitalize;
    padding: 2px 12px;
    border-radius: 12px;
}

.header-right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    position: relative;
}

.header-actions-group {
    margin-right: 8px;
    display: none;
    align-items: center;
    gap: 12px;
}

.header-btn {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-btn:hover {
    background: #F3F4F6;
}

.header-btn-login {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-btn-login:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.header-btn-signup {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background: #FFBC00;
    border: 1px solid #FFBC00;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-btn-signup:hover {
    background: #FEB635;
    border-color: #FEB635;
}

.header-btn-icon {
    border-radius: 6px;
    padding: 8px;
    color: #4B5563;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-btn-icon:hover {
    background: #F3F4F6;
}
.header-btn-notification {
    position: relative;
    display: inline-flex;
}
.header-notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #EF4444;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    padding: 0 4px;
    font-weight: 600;
}

.header-btn-credits {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    padding: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-btn-credits:hover {
    background: #F9FAFB;
}

.header-btn-credits img {
    height: 16px;
    width: 16px;
}

.header-btn-credits span {
    margin-left: 8px;
}

.header-btn-profile {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-btn-profile:hover {
    background: #F3F4F6;
}

.header-btn-profile img {
    height: 36px;
    border-radius: 6px;
}

.header-btn-profile span {
    margin-left: 8px;
}

.header-dropdown-toggle {
    margin-left: 8px;
    display: none;
    cursor: pointer;
}

.header-dropdown-toggle svg {
    height: 20px;
    width: 20px;
    color: #111827;
}

.header-dropdown-menu {
    position: absolute;
    z-index: 50;
    margin-top: 16px;
    margin-bottom: 16px;
    list-style: none;
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
    border-radius: 8px;
    background: #FFFFFF;
    font-size: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: none;
    right: 0;
    top: 100%;
    min-width: 200px;
}

.header-dropdown-menu.show {
    display: block;
}

.header-dropdown-menu ul {
    padding: 8px 0;
    font-weight: 500;
}

.header-dropdown-menu li {
    border-bottom: 1px solid #F3F4F6;
}

.header-dropdown-menu li:last-child {
    border-bottom: none;
}

.header-dropdown-menu li.border-bottom {
    border-bottom: 2px solid #E5E7EB;
}

.header-dropdown-link {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-dropdown-link:hover {
    background: #F3F4F6;
}

.header-dropdown-link-content {
    display: inline-flex;
    align-items: center;
}

.header-dropdown-link-content svg {
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

.header-mobile-toggle {
    display: inline-flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px;
    font-size: 14px;
    color: #6B7280;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-mobile-toggle:hover {
    background: #F3F4F6;
}

.header-mobile-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px #E5E7EB;
}

.header-mobile-toggle svg {
    height: 20px;
    width: 20px;
}

.header-nav-section {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
}

.header-nav-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    border: 0;
    background: #FFFFFF;
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.header-nav-list li {
    list-style: none;
}

.header-search-wrapper {
    margin-left: 16px;
    flex-shrink: 0;
}

.header-search-form {
    position: relative;
    width: 100%;
}

.header-search-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.header-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
    flex-shrink: 0;
}

.header-search-input {
    width: 450px;
    border-radius: 25px !important;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    padding: 10px 16px 10px 44px !important;
    font-size: 14px;
    color: #111827;
    border-color: #E5E7EB !important;
    transition: all 0.2s ease;
}

.header-search-input::placeholder {
    color: #9CA3AF;
}

.header-search-input:focus {
    border-color: #D1D5DB !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1) !important;
}

.header-text-hidden {
    display: none;
}

.header-text-visible {
    display: inline-block;
}

/* Responsive */
@media (min-width: 768px) {
    .header-actions-group {
        display: flex;
    }
    
    .header-dropdown-toggle {
        display: block;
    }
    
    .header-nav-section {
        display: none;
    }
    
    .header-text-hidden {
        display: inline-block;
    }
    
    .header-mobile-toggle {
        display: none;
    }
    
    .header-center { max-width: 640px; }
    
    .header-search-form.guest {
        width: 500px;
    }
    
    .header-left .header-nav-list {
        display: flex;
    }
}

@media (min-width: 640px) {
    .header-text-visible-sm {
        display: inline-block;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .header-nav-section.show {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .header-nav-list {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .header-search-wrapper {
        width: 100%;
    }
    
    .header-search-form {
        width: 100%;
    }
    
    .header-search-form.guest {
        width: 100%;
    }

    /* Small adjustments for compact screens */
    .header-container { flex-wrap: wrap; row-gap: 10px; }
    .header-left { gap: 16px; }
    .header-left .header-nav-list { display: none; }
    .header-center { order: 3; width: 100%; padding: 0; }
    .header-search-input { width: 100%; }
    .header-right-section { order: 2; gap: 8px; }
    .header-btn-credits span { display: none; }
    .header-btn-profile span { display: none; }
    .header-mobile-toggle { display: inline-flex; }
    .header-nav-section { display: none; }
}

/* Tablet */
@media (max-width: 1024px) {
    .header-container { flex-wrap: wrap; row-gap: 10px; }
    .header-left { gap: 24px; }
    .header-left .header-nav-list { display: none; }
    .header-mobile-toggle { display: inline-flex; }
    .header-center { order: 3; width: 100%; padding: 0; }
    .header-search-input { width: 100%; }
    .header-right-section { order: 2; gap: 10px; }
    .header-btn-login,
    .header-btn-signup {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .header-logo-img { height: 30px; }
    .header-user-type { 
        font-size: 10px; 
        padding: 2px 8px;
    }
    .header-btn { padding: 6px 10px; }
    .header-search-input { font-size: 13px; padding: 8px 12px 8px 40px !important; }
}

/* ==========================================
   My Services Page Styles
   ========================================== */

.my-services-container {
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.my-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 33px;
}

.my-services-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
    letter-spacing: 0.31px;
    color: var(--text-color);
    margin: 0;
}

.my-services-edit-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px;
    background: rgba(13, 52, 47, 0.02);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.my-services-edit-btn:hover {
    background: rgba(13, 52, 47, 0.05);
    transform: scale(1.02);
}

.my-services-edit-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-color);
    flex-shrink: 0;
}

.my-services-edit-btn span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.29;
    color: var(--text-color);
}

.my-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.my-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 17px 12px;
    flex-grow: 1;
    transition: all 0.3s ease;
}

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

.my-service-card-content {
    gap: 1px;
}

.my-service-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.my-service-card-title {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.19;
    color: var(--text-color);
    margin: 0 0 6px 0;
}

.my-service-card-subtitle {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: var(--text-color-secondary);
    margin: 0 0 8px 0;
}

.my-service-card-list {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: var(--text-color-secondary);
    margin: 0;
    padding-left: 18px;
    list-style-type: disc;
}

.my-service-card-list li {
    margin-bottom: 4px;
}

.my-service-card-list li:last-child {
    margin-bottom: 0;
}

.my-service-card-description {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.33;
    color: var(--text-color-secondary);
    margin: 0;
    white-space: pre-line;
}

.my-service-card-price {
    font-family: 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.125;
    color: var(--text-color);
    text-align: right;
    align-self: flex-start;
    margin-right: 19px;
}

/* Responsive styles for My Services page */
@media (max-width: 1024px) {
    .my-service-card {
        width: calc(50% - 6px);
    }
}

@media (max-width: 768px) {
    .my-services-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .my-services-edit-btn {
        align-self: stretch;
        justify-content: center;
    }
    
    .my-service-card {
        width: 100%;
        min-width: auto;
    }
    
    .my-services-grid {
        flex-direction: column;
    }
}

/* Provider Profile - Service Selection Styles */
.provider-service-btn.service-selected {
    background-color: var(--brand-color);
    color: var(--text-color);
}

.provider-btn:disabled,
.provider-btn[disabled] {
    background-color: var(--border-color) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed;
    border-color: var(--border-color) !important;
    box-shadow: none !important;
}

.provider-btn:disabled .provider-btn-icon,
.provider-btn[disabled] .provider-btn-icon {
    filter: grayscale(1);
    opacity: 0.5;
}

.provider-plan-item {
    transition: all 0.2s ease;
}

.provider-plan-item:hover {
    border-color: var(--brand-color) !important;
    box-shadow: 0 2px 8px rgba(255, 188, 0, 0.15);
}

.provider-service-name a:hover {
    color: var(--brand-color) !important;
}

@media (max-width: 768px) {
    .provider-plan-item {
        grid-template-columns: 1fr !important;
    }
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-rating svg {
    width: 16px;
    height: 16px;
}

.profile-rating span {
    font-size: 12px;
    color: var(--text-color-secondary);
}

.chat-typing-indicator {
    padding: 10px 20px;
    font-style: italic;
    color: #666;
    font-size: 14px;
}

.chat-system-message {
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

.chat-booking-delivery {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.chat-booking-btn-accepted {
    background: linear-gradient(135deg, #FFD700 0%, #FFBC00 100%) !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
}

.chat-booking-btn-rejected {
    background-color: #dc3545 !important;
    color: white;
}

.chat-booking-btn-cancelled {
    background-color: #6c757d !important;
    color: white;
}

.chat-booking-btn-pending {
    background-color: #9ca3af !important;
    color: #ffffff !important;
}

.message-unread-badge {
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-left: auto;
}

.no-conversations {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* Upload buttons styling */
.chat-upload-buttons {
    display: flex !important;
    gap: 8px;
    margin-right: 8px;
    align-items: center;
}

.chat-upload-buttons button {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    font-size: 18px !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 6px !important;
    transition: all 0.2s !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.chat-upload-buttons button:hover {
    background: #e9ecef !important;
    border-color: #adb5bd !important;
    transform: scale(1.05) !important;
}

/* Chat input container layout */
.messages-chat-input-container {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    gap: 8px !important;
}

.messages-chat-input-wrapper {
    flex: 1 !important;
}

/* Enhanced input container styling */
#enhancedInputContainer {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 12px !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 20px !important;
    background: white !important;
    min-height: 44px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Attachment chip styling */
.attachment-chip {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #e3f2fd !important;
    border: 1px solid #90caf9 !important;
    border-radius: 16px !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    color: #1565c0 !important;
    max-width: 150px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.attachment-chip button {
    background: none !important;
    border: none !important;
    color: #1565c0 !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin-left: 2px !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

.attachment-chip button:hover {
    color: #0d47a1 !important;
}

/* Update input styling when in enhanced container */
#enhancedInputContainer #chatInput {
    flex: 1 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 14px !important;
    min-width: 120px !important;
    padding: 0 !important;
}

/* Send icon in enhanced container */
#enhancedInputContainer .send-icon {
    cursor: pointer !important;
    width: 24px !important;
    height: 24px !important;
    margin-left: 8px !important;
}

/* Upload button styling */
#uploadBtn {
    cursor: pointer !important;
    width: 45px !important;
    height: 45px !important;
    padding: 6px !important;
    border-radius: 6px !important;
    transition: all 0.2s !important;
}

#uploadBtn:hover {
    background-color: #f0f0f0 !important;
    transform: scale(1.1) !important;
}

/* Custom reject reason input styling */
#customRejectReasonContainer {
    animation: fadeIn 0.3s ease;
}

#customRejectReason {
    transition: border-color 0.2s ease;
}

#customRejectReason:focus {
    outline: none;
    border-color: #FFBC00;
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1);
}

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

/* ==================== GLOBAL RESPONSIVE & INTERACTIVE STYLES ==================== */

/* Smooth transitions for all interactive elements */
* {
    -webkit-tap-highlight-color: transparent;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji" !important;
}

button, a, .card, .btn, input, select, textarea {
    transition: all 0.3s ease;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--brand-color);
    outline-offset: 2px;
}

/* ==================== HEADER RESPONSIVE ==================== */

header {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header.header-scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
    header .container {
        padding: 0 2rem;
    }
}

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

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

/* ==================== CONTAINER RESPONSIVE ==================== */

.container, .container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 2rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 4rem;
    }
}

/* ==================== GRID RESPONSIVE ==================== */

.grid-responsive {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .grid-responsive {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (min-width: 768px) {
    .grid-responsive {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .grid-responsive {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* ==================== CARD INTERACTIVE STYLES ==================== */

.service-card, .booking-card, .talent-card, .provider-card, .category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover, .booking-card:hover, .talent-card:hover, .provider-card:hover, .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card:active, .booking-card:active, .talent-card:active, .provider-card:active, .category-card:active {
    transform: translateY(-4px);
}

/* ==================== BUTTON RESPONSIVE ==================== */

.btn, button:not(.no-style) {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover, button:not(.no-style):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active, button:not(.no-style):active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .btn, button:not(.no-style) {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .btn, button:not(.no-style) {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
}

/* ==================== FORM RESPONSIVE ==================== */

input, textarea, select {
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.1);
}

@media (max-width: 768px) {
    input, textarea, select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* ==================== MODAL RESPONSIVE ==================== */

.modal, .booking-modal {
    z-index: 9999;
}

.modal-content, .booking-modal-content {
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .modal-content, .booking-modal-content {
        width: 95%;
        max-width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }
}

@media (max-width: 576px) {
    .modal-content, .booking-modal-content {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        border-radius: 12px 12px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 90vh;
    }
}

/* ==================== ANIMATION CLASSES ==================== */

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.animate-in {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* ==================== LOADING SPINNER ==================== */

.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.global-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--brand-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-message {
    color: var(--text-color);
    font-weight: 500;
}

/* ==================== TOAST NOTIFICATIONS ==================== */

.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateX(400px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 99999;
    max-width: 400px;
}

.custom-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-toast.toast-success {
    border-left: 4px solid #10B981;
}

.custom-toast.toast-error {
    border-left: 4px solid #EF4444;
}

.custom-toast.toast-warning {
    border-left: 4px solid #F59E0B;
}

.custom-toast.toast-info {
    border-left: 4px solid #3B82F6;
}

.toast-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.toast-success .toast-icon {
    color: #10B981;
}

.toast-error .toast-icon {
    color: #EF4444;
}

.toast-warning .toast-icon {
    color: #F59E0B;
}

.toast-info .toast-icon {
    color: #3B82F6;
}

@media (max-width: 576px) {
    .custom-toast {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

/* ==================== TOOLTIP ==================== */

.custom-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 99999;
    white-space: nowrap;
}

.custom-tooltip.show {
    opacity: 1;
}

/* ==================== REDUCE MOTION ==================== */

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

/* ==================== TOUCH DEVICE OPTIMIZATIONS ==================== */

.touch-device .hover-only {
    display: none;
}

.touch-device button,
.touch-device a,
.touch-device .clickable {
    min-height: 44px;
    min-width: 66px;
}

/* ==================== PRINT STYLES ==================== */

@media print {
    header, footer, .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ==================== UTILITY CLASSES ==================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Responsive utilities */
@media (max-width: 576px) {
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
}

@media (max-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
}

@media (max-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
}

@media (max-width: 1200px) {
    .d-xl-none { display: none !important; }
    .d-xl-block { display: block !important; }
}

/* ==================== SCROLLBAR STYLING ==================== */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-hover);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-color) var(--bg-hover);
}

/* ==================== IMAGE LAZY LOADING ==================== */

img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* ==================== END OF RESPONSIVE STYLES ==================== */

