/* ============================ DESIGN TOKENS & RESET ============================= */
/* ============================ SCROLLBAR ============================= */
/* ============================ ICON SYSTEM (SVG) ============================= */
/* ============================ LAYOUT HELPERS ============================= */
/* ============================ TYPOGRAPHY ============================= */
/* ============================ BUTTONS ============================= */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================ FORM ELEMENTS ============================= */
/* ============================ BADGE ============================= */
/* ============================ CARDS ============================= */
/* ============================ NAVBAR ============================= */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================ PAGE SYSTEM ============================= */
/* ============================ HERO SECTION ============================= */
/* Hero Cards */
/* ============================ TRUST BAR ============================= */
/* ============================ SWEETALERT THEME CUSTOMIZATION ============================= */
/* SweetAlert Theme Customization */
/* ============================ PAGINATION ============================= */
/* ============================ EMAIL LAYOUT ============================= */
/* ============================ PROFESSIONAL SIGNUP - STYLES ============================= */
/* Main Container */
/* Header */
/* Form Card */
/* Step Navigation */
/* Step Panels */
/* Form Elements */
/* Email with OTP */
/* OTP Input Group */
/* Error Messages */
/* Skills Container */
/* Upload Box */
/* Warning Box */
/* Form Actions */
/* Toast Notifications */
/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive */
/* ============================ PROFESSIONAL PROFILE ============================= */
/* ============================ PROFESSIONAL EARNINGS ============================= */
/* ============================ PROFESSIONAL JOBS ============================= */
/* ============================ PROFESSIONAL REVIEWS ============================= */
/* ============================ PROFESSIONAL SETTINGS ============================= */
/* ============================ PROFESSIONAL OVERVIEW ============================= */
/* ============================ OFFERS STRIP ============================= */
/* ============================ SECTION STYLES ============================= */
/* ============================ CATEGORY GRID ============================= */
/* ============================ SERVICE CARDS ============================= */
/* ============================ TABS ============================= */
/* ============================ HOW IT WORKS ============================= */
/* ============================ TESTIMONIALS ============================= */
/* ============================ MEMBERSHIP ============================= */
/* ============================ APP PROMO ============================= */
/* ============================ FOOTER ============================= */
/* ============================ MODALS ============================= */
/* ============================ AUTH MODAL ============================= */
/* ============================ CITY MODAL ============================= */
/* ============================ SERVICES LIST PAGE ============================= */
/* ============================ SERVICE DETAIL PAGE ============================= */
/* ============================ CART PAGE ============================= */
/* ============================ CHECKOUT ============================= */
/* ============================ ORDER CONFIRMATION ============================= */
/* ============================ DASHBOARD LAYOUT ============================= */
/* ============================ PROFESSIONAL PAGES ============================= */
/* Pro Dashboard */
/* ============================ NOTIFICATION TOAST ============================= */
/* ============================ STICKY CART BAR ============================= */
/* ============================ RATING STARS INPUT ============================= */
/* ============================ UTILITY STYLES ============================= */
/* ============================ APP INLINE STYLES ============================= */
/* ============================ INDEX INLINE STYLES ============================= */
/* ============================ PROFILE INLINE STYLES ============================= */
/* Responsive Media Queries */
/* ============================ RESPONSIVE ============================= */
/* ============================ RESPONSIVE VIEW HELPERS ============================= */
:root {
    --primary: #0b3d2e;
    --primary-md: #155a42;
    --primary-lt: #1e7a58;
    --accent: #f0a500;
    --accent-lt: #fbbf24;
    --danger: #dc2626;
    --success: #16a34a;
    --bg: #f5f4f1;
    --bg2: #edecea;
    --white: #fff;
    --text: #111827;
    --text-md: #374151;
    --text-sm: #6b7280;
    --border: #e5e3df;
    --border-md: #d1cfc9;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.13);
    --nav-h: 64px;
    --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --error-color: #dc2626;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1 {
    font-family: 'Sora', sans-serif;
    line-height: 1.25;
}

h2 {
    font-family: 'Sora', sans-serif;
    line-height: 1.25;
}

h3 {
    font-family: 'Sora', sans-serif;
    line-height: 1.25;
}

h4 {
    font-family: 'Sora', sans-serif;
    line-height: 1.25;
}

h5 {
    font-family: 'Sora', sans-serif;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

input {
    font-family: 'Manrope', sans-serif;
    outline: none;
    border: none;
}

select {
    font-family: 'Manrope', sans-serif;
    outline: none;
    border: none;
}

textarea {
    font-family: 'Manrope', sans-serif;
    outline: none;
    border: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

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

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--border-md);
    border-radius: 4px;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gap-4 {
    gap: 4px;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.w-full {
    width: 100%;
}

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

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.display-1 {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -1.5px;
}

.display-2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.8px;
}

.h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.h3 {
    font-size: 20px;
    font-weight: 700;
}

.h4 {
    font-size: 16px;
    font-weight: 700;
}

.body-lg {
    font-size: 17px;
}

.body {
    font-size: 15px;
}

.body-sm {
    font-size: 13px;
}

.caption {
    font-size: 12px;
}

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

.accent-text {
    color: var(--accent);
}

.primary-text {
    color: var(--primary);
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-md);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(11, 61, 46, 0.3);
}

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

.btn-accent {
    background: var(--accent);
    color: var(--text);
}

.btn-accent:hover {
    background: var(--accent-lt);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(240, 165, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--text-md);
}

.btn-ghost:hover {
    background: var(--bg2);
}

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

.btn-danger:hover {
    background: #b91c1c;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-xl {
    padding: 17px 40px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}

.btn-icon {
    padding: 10px;
    border-radius: var(--radius-sm);
}

.btn-round {
    border-radius: 50px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-md);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-input {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
    width: 100%;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.08);
}

.form-input::placeholder {
    color: var(--text-sm);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    font-size: 12px;
    color: var(--danger);
    display: none;
}

.form-error.show {
    display: block;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .form-input {
    padding-left: 40px;
}

.input-icon-wrap .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-sm);
}

.input-icon-wrap .input-icon-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-sm);
    cursor: pointer;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.badge-primary {
    background: #d1fae5;
    color: var(--primary);
}

.badge-accent {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-info {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-gray {
    background: var(--bg2);
    color: var(--text-sm);
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

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

.card-body {
    padding: 20px;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

#navbar.elevated {
    box-shadow: var(--shadow);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.nav-logo span {
    color: var(--accent);
}

.nav-logo-mark {
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-mark svg {
    stroke: white;
}

.nav-search {
    flex: 1;
    max-width: 460px;
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 0 6px 0 16px;
    gap: 8px;
    transition: var(--transition);
}

.nav-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.08);
}

.nav-search input {
    flex: 1;
    background: none;
    font-size: 14px;
    color: var(--text);
    padding: 9px 0;
}

.nav-search input::placeholder {
    color: var(--text-sm);
}

.nav-search-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.nav-city-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-city-btn:hover {
    border-color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link-btn {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-md);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-link-btn:hover {
    background: var(--bg);
    color: var(--text);
}

.nav-account-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    margin-top: 8px;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown-menu.open {
    display: block;
    animation: slideDown 0.2s ease-out;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-md);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: left;
    font-size: 13px;
}

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

.dropdown-item:hover img {
    opacity: 1;
}

.dropdown-item img {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.dropdown-item-logout {
    color: var(--danger);
}

.dropdown-item-logout:hover {
    background: rgba(220, 38, 38, 0.05);
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--danger);
    color: white;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page {
    display: none;
    min-height: 100vh;
    padding-top: var(--nav-h);
}

.page.active {
    display: block;
}

.hero {
    background: linear-gradient(130deg, var(--primary) 0%, #072819 100%);
    padding: 72px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg);
    clip-path: ellipse(58% 100% at 50% 100%);
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.hero-bg-circle:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
}

.hero-bg-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    background: white;
    bottom: -50px;
    left: 5%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    color: white;
    margin-bottom: 16px;
}

.hero-title .accent {
    color: var(--accent-lt);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-search-bar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    max-width: 580px;
}

.hero-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.hero-search-field input {
    flex: 1;
    background: none;
    font-size: 15px;
    color: var(--text);
}

.hero-search-field input::placeholder {
    color: var(--text-sm);
}

.hero-search-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    margin: 4px 0;
}

.hero-city-pick {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-md);
    cursor: pointer;
    min-width: 130px;
}

.hero-search-btn {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search-btn:hover {
    background: var(--primary-md);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-tag:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
}

.hero-tag svg {
    stroke: rgba(255, 255, 255, 0.8);
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 40px;
}

.hero-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-lt);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-service-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon svg {
    stroke: var(--accent-lt);
}

.hero-card-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.hero-card-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.hero-card-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
}

.trust-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 36px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: #ecfdf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    stroke: var(--primary);
}

.trust-title {
    font-size: 14px;
    font-weight: 700;
}

.trust-sub {
    font-size: 12px;
    color: var(--text-sm);
}

.swal2-popup {
    font-family: 'Manrope', sans-serif;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: none;
}

.swal2-title {
    font-family: 'Sora', sans-serif;
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
}

.swal2-html-container {
    color: var(--text-md);
    font-size: 15px;
    line-height: 1.6;
}

.swal2-confirm {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
    padding: 11px 22px !important;
    transition: var(--transition) !important;
}

.swal2-confirm:hover {
    background: var(--primary-md) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px rgba(11, 61, 46, 0.3) !important;
}

.swal2-cancel {
    background: transparent !important;
    color: var(--text-md) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    padding: 9px 20px !important;
    transition: var(--transition) !important;
}

.swal2-cancel:hover {
    background: var(--bg2) !important;
}

.swal2-styled:focus {
    box-shadow: none !important;
}

.swal2-icon.swal2-warning {
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: var(--success) !important;
}

.swal2-icon.swal2-success path {
    fill: var(--success) !important;
}

.swal2-icon.swal2-error {
    color: var(--danger) !important;
    border-color: var(--danger) !important;
}

.swal2-icon.swal2-info {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.pagination-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg2);
    color: var(--text1);
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.pagination-link:hover {
    background: var(--bg);
}

.pagination-link.disabled {
    color: var(--text2);
    cursor: not-allowed;
    background: var(--bg3);
}

.pagination-link.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.email-footer-copyright {
    margin-top: 10px;
    font-size: 12px;
}

.pro-signup-wrapper {
    min-height: 100vh;
    background: var(--bg);
    padding: 48px 0;
}

.pro-signup-container {
    max-width: 640px;
}

.pro-signup-header {
    text-align: center;
    margin-bottom: 36px;
}

.pro-signup-header .nav-logo {
    justify-content: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.pro-signup-header h1 {
    margin-bottom: 8px;
}

.pro-signup-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.pro-signup-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.pro-step-pill {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    transition: all 0.3s ease;
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: var(--border);
    transition: var(--transition);
}

.pro-step-pill.active {
    background: var(--primary, #7f77dd);
    background: var(--accent);
}

.pro-step-pill.done {
    background: var(--success-color);
    background: var(--primary);
}

.pro-step-panel {
    display: none;
}

.pro-step-panel h3 {
    margin-bottom: 4px;
}

.pro-step-panel .step-subtitle {
    margin-bottom: 24px;
}

.pro-step-panel.active {
    display: block !important;
}

.pro-form-group {
    margin-bottom: 16px;
}

.pro-form-group.large {
    margin-bottom: 24px;
}

.pro-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.pro-email-wrapper {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.pro-email-wrapper input {
    flex: 1;
}

.pro-email-wrapper button {
    white-space: nowrap;
}

.pro-otp-group {
    display: none;
    margin-bottom: 16px;
}

.pro-otp-group.visible {
    display: block;
}

.pro-otp-input {
    font-size: 20px;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 10px;
    padding: 7px;
}

.pro-otp-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.pro-otp-buttons button {
    flex: 1;
}

.pro-otp-timer {
    margin: 4px 0;
    font-size: 12px;
}

.error-message {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

.pro-skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--skill-gap);
    margin-bottom: 10px;
}

.skill-tag {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    color: var(--text-md, #475569);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    color: var(--text-md);
}

.skill-tag:hover {
    border-color: var(--primary, #7f77dd);
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.skill-tag .arrow {
    margin-left: 6px;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 3px;
    padding: 2px 5px;
    pointer-events: none;
    user-select: none;
}

.skill-tag.selected {
    background: var(--primary, #7f77dd);
    color: white;
    border-color: var(--primary, #7f77dd);
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.upload-box {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px dashed var(--border-md);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.upload-box:hover {
    border-color: var(--primary, #7f77dd);
    background: rgba(127, 119, 221, 0.05);
    border-color: var(--primary);
    background: #f9fdf9;
}

.upload-box svg {
    color: var(--text-md, #475569);
    margin-bottom: 8px;
    stroke: var(--text-sm);
    margin: 0 auto 12px;
}

.upload-box-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.upload-box-subtitle {
    font-size: 12px;
    color: var(--text-sm);
}

.upload-box-filename {
    font-size: 12px;
    color: var(--success-color);
    margin-top: 4px;
}

.pro-warning-box {
    background: var(--warning-bg);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 24px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pro-warning-box svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--warning-color);
}

.pro-warning-box-text {
    font-size: 13px;
    color: var(--warning-color);
}

.pro-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.pro-form-actions button {
    flex: 1;
}

.pro-form-actions .btn-back {
    flex-basis: auto;
    flex: 0;
}

.pro-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    font-weight: 500;
    max-width: 400px;
    color: white;
    animation: slideIn 0.3s ease-out;
}

.pro-toast.success {
    background-color: var(--success-color);
}

.pro-toast.error {
    background-color: var(--error-color);
}

.pro-toast.info {
    background-color: var(--info-color);
}

.pro-toast.out {
    animation: slideOut 0.3s ease-out;
}

.pro-profile-wrapper {
    padding: 20px 0;
}

.pro-profile-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.pro-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pro-profile-avatar {
    width: 80px;
    height: 80px;
    font-size: 32px;
    background: linear-gradient(135deg, #0b3d2e, #1e7a58);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    font-weight: 800;
}

.form-actions-group {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.earnings-header-card {
    background: linear-gradient(135deg, var(--primary), #0f3d27);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: white;
    margin-bottom: 24px;
}

.earnings-label {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.earnings-amount {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Sora', sans-serif;
    color: var(--accent-lt);
}

.earnings-stats {
    margin-top: 20px;
    display: flex;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 13px;
    opacity: 0.6;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
}

.transaction-history-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.transaction-title {
    margin-bottom: 18px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.transaction-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-icon-box.success {
    background: #ecfdf5;
}

.transaction-icon-box.pending {
    background: #fef3c7;
}

.transaction-content {
    flex: 1;
}

.transaction-name {
    font-weight: 700;
    margin-bottom: 2px;
}

.transaction-date {
    font-size: 12px;
    color: var(--text-sm);
}

.transaction-amount-section {
    text-align: right;
}

.transaction-amount {
    font-weight: 800;
    color: var(--primary);
}

.transaction-amount-badge {
    margin-top: 4px;
}

.job-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.job-card:hover {
    border-color: var(--primary-lt);
    box-shadow: var(--shadow-sm);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.job-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.job-details {
    font-size: 13px;
    color: var(--text-sm);
}

.job-icon {
    display: inline-block;
    margin-right: 3px;
    vertical-align: -1px;
}

.job-location {
    font-size: 12px;
    color: var(--text-sm);
    margin-top: 4px;
}

.job-price-section {
    text-align: right;
}

.job-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
}

.job-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.review-rating-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.review-rating-wrapper {
    display: flex;
    gap: 36px;
    align-items: center;
}

.review-rating-center {
    text-align: center;
}

.review-rating-number {
    font-size: 56px;
    font-weight: 900;
    font-family: 'Sora', sans-serif;
    color: var(--primary);
}

.review-stars {
    display: flex;
    gap: 3px;
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.review-stars-centered {
    justify-content: center;
    margin-bottom: 6px;
}

.star svg {
    stroke: var(--accent);
    fill: var(--accent);
    stroke: var(--accent);
    fill: var(--accent);
}

.review-rating-bars {
    flex: 1;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-label {
    font-size: 12px;
    color: var(--text-sm);
    width: 32px;
}

.rating-bar-bg {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
}

.rating-percentage {
    font-size: 12px;
    color: var(--text-sm);
    width: 28px;
}

.review-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    font-size: 14px;
    font-weight: 700;
}

.reviewer-details {
    font-size: 12px;
    color: var(--text-sm);
}

.review-text {
    font-size: 14px;
    color: var(--text-md);
    line-height: 1.6;
    font-size: 15px;
    color: var(--text-md);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.settings-container {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

.settings-label {
    font-weight: 700;
    margin-bottom: 2px;
}

.settings-description {
    font-size: 13px;
    color: var(--text-sm);
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--primary);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.toggle-switch.off {
    background: var(--border);
}

.toggle-switch.off .toggle-dot {
    right: auto;
    left: 3px;
}

.toggle-dot {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 3px;
    transition: all 0.2s;
}

.password-input-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.password-input {
    max-width: 200px;
}

.settings-danger-label {
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--danger);
}

.settings-danger-text {
    font-size: 13px;
    color: var(--text-sm);
    margin-bottom: 12px;
}

.pro-status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-status-text {
    font-size: 13px;
    color: var(--text-sm);
}

.stat-card-icon-success {
    background: #ecfdf5;
}

.stat-card-icon-warning {
    background: #fef3c7;
}

.stat-card-icon-info {
    background: #dbeafe;
}

.stat-card-icon-danger {
    background: #fee2e2;
}

.job-details-meta {
    font-size: 13px;
    color: var(--text-sm);
}

.job-icon-inline {
    display: inline-block;
    margin-right: 3px;
    vertical-align: -1px;
}

.job-location-text {
    font-size: 12px;
    color: var(--text-sm);
    margin-top: 4px;
}

.job-price-section-right {
    text-align: right;
}

.job-price-amount {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
}

.btn-decline {
    color: var(--danger);
}

.pro-upcoming-jobs-section {
    margin-top: 24px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.pro-upcoming-jobs-title {
    margin-bottom: 16px;
}

.earnings-chart-header {
    margin-bottom: 20px;
}

.pro-photo-actions {
    margin-top: 8px;
}

.pro-profile-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.email-readonly {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.form-helper-text {
    color: #6b7280;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
}

.section-title-lg {
    margin-top: 28px;
}

.section-description {
    margin-bottom: 16px;
}

.form-group-spaced {
    margin-top: 20px;
}

.grid-2-spaced {
    margin-top: 20px;
}

.textarea-tall {
    min-height: 120px;
}

.file-input-hidden {
    display: none;
}

.form-actions-top {
    margin-top: 32px;
}

.offers-strip {
    background: var(--primary);
    padding: 28px 0;
    overflow: hidden;
}

.offers-scroll-wrap {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
}

.offers-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.offer-pill {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 16px 22px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 260px;
}

.offer-pill:hover {
    background: rgba(255, 255, 255, 0.18);
}

.offer-pill-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent-lt);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.offer-pill-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.offer-pill-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.offer-code {
    margin-top: 10px;
    display: inline-block;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-lt);
    letter-spacing: 2px;
}

.section {
    padding: 64px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-sm);
    margin-top: 6px;
}

.see-all-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.see-all-link:hover {
    text-decoration: underline;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.cat-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.cat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.cat-card:hover .cat-icon-bg {
    background: var(--primary);
}

.cat-card:hover .cat-icon-bg svg {
    stroke: white;
}

.cat-icon-bg {
    width: 56px;
    height: 56px;
    background: #ecfdf5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: var(--transition);
}

.cat-icon-bg svg {
    stroke: var(--primary);
}

.cat-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.cat-count {
    font-size: 11px;
    color: var(--text-sm);
}

.services-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.services-row::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex-shrink: 0;
    width: 240px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-lt);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card-img {
    height: 150px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-card-img svg {
    stroke: var(--primary);
    opacity: 0.4;
}

.service-card-img-icon {
    position: absolute;
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.service-card-img-icon svg {
    stroke: var(--primary);
}

.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.service-body {
    padding: 14px;
}

.service-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-desc {
    font-size: 12px;
    color: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 36px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.service-price small {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-sm);
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #92400e;
}

.service-rating svg {
    stroke: var(--accent);
    fill: var(--accent);
}

.add-to-cart-btn {
    width: 100%;
    margin-top: 10px;
}

.tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text-md);
    cursor: pointer;
    transition: var(--transition);
}

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

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

.how-section {
    background: var(--primary);
    padding: 80px 0;
}

.how-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.how-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 60px;
}

.how-steps {
    display: flex;
    gap: 0;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(100%/8);
    right: calc(100%/8);
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.how-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-num svg {
    stroke: rgba(255, 255, 255, 0.9);
}

.step-num-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 180px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-lt);
    box-shadow: var(--shadow);
}

.reviewer-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-detail {
    font-size: 12px;
    color: var(--text-sm);
}

.membership-banner {
    background: linear-gradient(130deg, var(--primary), #072819);
    border-radius: var(--radius-xl);
    padding: 52px 56px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

.membership-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.12), transparent 70%);
    top: -100px;
    right: -50px;
    pointer-events: none;
}

.membership-left {
    flex: 1;
}

.membership-badge {
    background: var(--accent);
    color: var(--text);
    font-size: 11px;
    font-weight: 900;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.membership-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.membership-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.perk-check {
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-check svg {
    stroke: var(--text);
}

.perk-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

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

.mem-price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.mem-price {
    font-size: clamp(44px, 6vw, 60px);
    font-weight: 900;
    color: var(--accent-lt);
    font-family: 'Sora', sans-serif;
    line-height: 1;
}

.mem-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.app-section {
    background: #fef9ee;
    border: 1.5px solid #fde68a;
    border-radius: var(--radius-xl);
    padding: 52px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.app-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
}

.app-sub {
    font-size: 16px;
    color: var(--text-sm);
    line-height: 1.75;
    margin-bottom: 32px;
}

.app-buttons {
    display: flex;
    gap: 14px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--text);
    color: white;
    padding: 14px 22px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.app-dl-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.app-dl-btn svg {
    stroke: white;
}

.app-dl-label {
    font-size: 11px;
    opacity: 0.65;
    display: block;
    text-align: left;
}

.app-dl-name {
    font-size: 15px;
    font-weight: 800;
    display: block;
    text-align: left;
}

.phone-mockups {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.phone-mock {
    width: 130px;
    height: 240px;
    background: var(--text);
    border-radius: 28px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    padding: 8px;
}

.phone-mock:first-child {
    transform: rotate(-7deg) translateY(24px);
}

.phone-mock:last-child {
    transform: rotate(7deg) translateY(24px);
}

.phone-screen {
    background: var(--bg);
    border-radius: 22px;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.phone-header-bar {
    background: var(--primary);
    border-radius: 8px;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 6px;
}

.ph-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.ph-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    flex: 1;
}

.phone-item {
    background: white;
    border-radius: 8px;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pi-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--bg);
    flex-shrink: 0;
}

.pi-bar {
    height: 5px;
    background: var(--border);
    border-radius: 4px;
    flex: 1;
}

footer {
    background: #0a1f13;
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .accent {
    color: var(--accent);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-lt);
}

.social-link svg {
    stroke: rgba(255, 255, 255, 0.8);
}

.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.footer-link:hover {
    color: var(--accent-lt);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 520px;
    width: 94%;
    max-height: 88vh;
    overflow-y: auto;
    transform: translateY(24px) scale(0.97);
    transition: var(--transition);
    position: relative;
}

.modal-lg {
    max-width: 720px;
}

.modal-xl {
    max-width: 920px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg2);
}

.modal-close svg {
    stroke: var(--text-sm);
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal-sub {
    font-size: 14px;
    color: var(--text-sm);
    margin-bottom: 28px;
}

.auth-tabs {
    display: flex;
    gap: 0;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 9px;
    border-radius: calc(var(--radius-sm) - 2px);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-sm);
}

.auth-tab.active {
    background: white;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

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

.auth-divider span {
    position: relative;
    background: white;
    padding: 0 14px;
    font-size: 13px;
    color: var(--text-sm);
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
}

.social-login-btn:hover {
    border-color: var(--primary);
    background: #f9fdf9;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.city-chip {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 700;
}

.city-chip:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.city-chip.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.city-chip-icon {
    display: block;
    margin: 0 auto 6px;
}

.services-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

.filter-sidebar {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: calc(var(--nav-h) + 20px);
}

.filter-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-clear {
    font-size: 13px;
    font-weight: 700;
    color: var(--danger);
    cursor: pointer;
}

.filter-section {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    margin-top: 18px;
}

.filter-section-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.filter-checkbox {
    width: 17px;
    height: 17px;
    border: 1.5px solid var(--border-md);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.filter-checkbox.checked {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-checkbox.checked svg {
    stroke: white;
}

.filter-label {
    font-size: 14px;
    color: var(--text-md);
}

.filter-range {
    width: 100%;
    accent-color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-grid .service-card {
    width: 100%;
}

.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.results-count {
    font-size: 14px;
    color: var(--text-sm);
}

.sort-select {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.service-detail-img {
    height: 360px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 28px;
    overflow: hidden;
}

.service-detail-img svg {
    stroke: var(--primary);
    opacity: 0.3;
}

.service-detail-img-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.service-detail-img-icon svg {
    stroke: var(--primary);
    width: 48px;
    height: 48px;
}

.service-detail-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.service-includes {
    margin-top: 24px;
}

.service-includes-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.include-check {
    width: 20px;
    height: 20px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.include-check svg {
    stroke: var(--primary);
}

.include-text {
    font-size: 14px;
    color: var(--text-md);
    line-height: 1.5;
}

.booking-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: calc(var(--nav-h) + 20px);
}

.booking-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.booking-price small {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-sm);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.time-slot {
    padding: 9px 6px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #ecfdf5;
}

.time-slot.selected {
    border-color: var(--primary);
    color: var(--primary);
    background: #ecfdf5;
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

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

.cart-item-img {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-img svg {
    stroke: var(--primary);
}

.cart-item-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-sub {
    font-size: 13px;
    color: var(--text-sm);
}

.cart-item-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-left: auto;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-sm);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--danger);
    background: #fee2e2;
}

.order-summary {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 800;
    border-top: 2px solid var(--border);
    padding-top: 16px;
    margin-top: 6px;
}

.promo-input-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.promo-input {
    flex: 1;
}

.checkout-steps {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
}

.checkout-step {
    flex: 1;
    display: flex;
    align-items: center;
}

.step-circle-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.step-circle-sm.done {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-circle-sm.active {
    border-color: var(--primary);
    color: var(--primary);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
}

.step-line.done {
    background: var(--primary);
}

.step-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-sm);
    margin-top: 6px;
}

.address-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.address-card.selected {
    border-color: var(--primary);
    background: #f0fdf4;
}

.address-type {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-sm);
    margin-bottom: 6px;
}

.address-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
}

.payment-option.selected {
    border-color: var(--primary);
    background: #f0fdf4;
}

.payment-option.selected .payment-radio {
    border-color: var(--primary);
}

.payment-option.selected .payment-radio-dot {
    display: block;
}

.payment-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border-md);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    display: none;
}

.payment-icon-box {
    width: 44px;
    height: 44px;
    background: var(--bg2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.confirmation-icon svg {
    stroke: var(--success);
}

.track-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.track-step {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    position: relative;
}

.track-step:last-child {
    padding-bottom: 0;
}

.track-step:last-child::before {
    display: none;
}

.track-step::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    height: 100%;
    background: var(--border);
}

.track-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg2);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.track-dot.done {
    background: var(--primary);
    border-color: var(--primary);
}

.track-dot.done svg {
    stroke: white;
}

.track-step-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.track-step-sub {
    font-size: 13px;
    color: var(--text-sm);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    min-height: calc(100vh - var(--nav-h));
    padding: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.sidebar {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 0;
    height: fit-content;
    position: sticky;
    top: calc(var(--nav-h) + 20px);
}

.sidebar-profile {
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    margin-bottom: 12px;
}

.sidebar-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-md));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
    font-weight: 900;
    color: white;
    font-family: 'Sora', sans-serif;
}

.sidebar-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.sidebar-email {
    font-size: 12px;
    color: var(--text-sm);
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-md);
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-nav-item:hover {
    background: var(--bg) !important;
    color: var(--text);
    border-left-color: var(--border);
}

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

.sidebar-nav-item.active {
    background: #f0fdf4;
    color: var(--primary);
    border-left-color: var(--primary);
}

.dashboard-content {
    min-width: 0;
}

.dash-page {
    display: none;
}

.dash-page.active {
    display: block;
}

.dash-header {
    margin-bottom: 28px;
}

.dash-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
}

.dash-sub {
    font-size: 14px;
    color: var(--text-sm);
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.stat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.stat-card-num {
    font-size: 26px;
    font-weight: 900;
    font-family: 'Sora', sans-serif;
    margin-bottom: 4px;
}

.stat-card-label {
    font-size: 13px;
    color: var(--text-sm);
}

.booking-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.booking-list-item:hover {
    border-color: var(--primary-lt);
    box-shadow: var(--shadow-sm);
}

.booking-item-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-item-icon svg {
    stroke: var(--primary);
}

.booking-item-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.booking-item-detail {
    font-size: 13px;
    color: var(--text-sm);
}

.booking-item-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-left: auto;
    flex-shrink: 0;
}

.booking-status {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
}

.status-upcoming {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-completed {
    background: #d1fae5;
    color: var(--primary);
}

.status-cancelled {
    background: #fee2e2;
    color: var(--danger);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pro-stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.earnings-chart {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.chart-bars {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 120px;
    padding-top: 10px;
}

.chart-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.chart-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(to top, var(--primary), var(--primary-lt));
    min-height: 4px;
    transition: height 0.5s ease;
}

.chart-label {
    font-size: 11px;
    color: var(--text-sm);
    font-weight: 600;
}

.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--text);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 340px;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

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

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: white;
    border-top: 1px solid var(--border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: var(--transition);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.sticky-cart.show {
    transform: translateY(0);
}

.sticky-cart-info {
    display: flex;
    flex-direction: column;
}

.sticky-cart-count {
    font-size: 13px;
    color: var(--text-sm);
}

.sticky-cart-total {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.star-input {
    display: flex;
    gap: 4px;
}

.star-input svg {
    cursor: pointer;
    transition: var(--transition);
}

.star-input svg:hover {
    transform: scale(1.2);
}

.error-msg {
    display: none;
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
}

.error-msg.show {
    display: block;
}

.hidden {
    display: none;
}

.show {
    display: block !important;
}

.mb-16 {
    margin-bottom: 16px;
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

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

.font-size-13 {
    font-size: 13px;
}

.color-primary {
    color: var(--primary);
}

.btn-inline {
    margin-left: 10px;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 5px;
    background: #248cdc;
    color: white;
    border: none;
    cursor: pointer;
}

.text-center-gray {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text3);
}

.grid-gap-16-mb-16 {
    gap: 16px;
    margin-bottom: 16px;
}

.grid-gap-16-mb-24 {
    gap: 16px;
    margin-bottom: 24px;
}

.text-center-mt-16 {
    text-align: center;
    margin-top: 16px;
}

.inline-spinner {
    display: inline-block;
    margin-right: 4px;
}

.section-pt-0 {
    padding-top: 0;
}

.section-pt-0-bg2 {
    padding-top: 0;
    background: var(--bg2);
}

.container-pt-64 {
    padding-top: 64px;
}

.reviewer-av-bg1 {
    background: linear-gradient(135deg, #1b4332, #2d6a4f);
}

.reviewer-av-bg2 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.reviewer-av-bg3 {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.pi-bar-w60 {
    width: 60%;
}

.pi-bar-w80 {
    width: 80%;
}

.phone-item-bg1 {
    background: #d1fae5;
}

.pi-icon-bg1 {
    background: #a7f3d0;
}

.pi-bar-bg1 {
    background: #6ee7b7;
}

.phone-item-bg2 {
    background: #fef3c7;
}

.pi-icon-bg2 {
    background: #fde68a;
}

.pi-bar-bg2 {
    background: #fcd34d;
    width: 70%;
}

.phone-location-icon {
    background: white;
    border-radius: 8px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-p28 {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.flex-gap-20-mb-28-pb-28-bb {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

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

.font-size-20-fw-800-mb-4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.btn-cursor-pointer {
    cursor: pointer;
}

.text-sm-center-gray {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-sm);
}

.pro-link {
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
}

.min-h-80 {
    min-height: 80px;
}

.mobile-view {
    display: none;
}

.desktop-view {
    display: block;
}

@media (max-width: 640px) {
    .pro-form-row {
        grid-template-columns: 1fr;
    }

    .pro-signup-card {
        padding: 24px;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .how-steps {
        flex-direction: column;
        align-items: center;
    }

    .how-steps::before {
        display: none;
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        display: none;
    }

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

    .services-page-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pro-stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .app-section {
        grid-template-columns: 1fr;
    }

    .phone-mockups {
        display: none;
    }

    .membership-banner {
        flex-direction: column;
    }

    .trust-items {
        gap: 0;
    }

    .trust-item {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-view {
        display: block;
    }

    .desktop-view {
        display: none;
    }
}
