/*
 * Nakliyatcilar.net - Professional Light Theme
 * Turkish Moving Companies Platform
 * ============================================
 */


/* ==========================================
   1. CSS VARIABLES & COLOR PALETTE
   ========================================== */
:root {
    /* Primary Colors - Professional Blue */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;

    /* Accent Colors - Warm Orange */
    --accent-50: #fff7ed;
    --accent-100: #ffedd5;
    --accent-200: #fed7aa;
    --accent-300: #fdba74;
    --accent-400: #fb923c;
    --accent-500: #f97316;
    --accent-600: #ea580c;
    --accent-700: #c2410c;

    /* Success - Green */
    --success-50: #f0fdf4;
    --success-500: #22c55e;
    --success-600: #16a34a;

    /* Warning - Amber */
    --warning-50: #fffbeb;
    --warning-500: #f59e0b;
    --warning-600: #d97706;

    /* Danger - Red */
    --danger-50: #fef2f2;
    --danger-500: #ef4444;
    --danger-600: #dc2626;

    /* Neutral - Gray */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* ==========================================
   2. BULMA OVERRIDES
   ========================================== */

/* Primary color overrides */
.has-background-primary { background-color: var(--primary-600) !important; }
.has-text-primary { color: var(--primary-600) !important; }
.button.is-primary {
    background-color: var(--primary-600) !important;
    border-color: transparent !important;
}
.button.is-primary:hover { background-color: var(--primary-700) !important; }

/* Warning/Accent color overrides */
.has-background-warning { background-color: var(--accent-500) !important; }
.has-text-warning { color: var(--accent-500) !important; }
.button.is-warning {
    background-color: var(--accent-500) !important;
    border-color: transparent !important;
    color: white !important;
}
.button.is-warning:hover { background-color: var(--accent-600) !important; }

/* Success */
.has-background-success { background-color: var(--success-500) !important; }
.button.is-success { background-color: var(--success-500) !important; }

/* Light backgrounds */
.has-background-light { background-color: var(--gray-50) !important; }
.has-background-white-bis { background-color: var(--gray-100) !important; }

/* ==========================================
   3. TYPOGRAPHY
   ========================================== */
html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    font-weight: 600;
}

.title {
    color: var(--gray-900) !important;
}

.subtitle {
    color: var(--gray-600) !important;
}

/* ==========================================
   4. NAVBAR
   ========================================== */
.navbar {
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.navbar-item {
    color: var(--gray-700);
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.navbar-item:hover {
    background-color: var(--gray-100);
    color: var(--primary-600);
}

.navbar-brand .navbar-item {
    font-weight: 700;
    font-size: 1.25rem;
}

.navbar-brand .navbar-item:hover {
    background: transparent;
}

.navbar-burger span {
    background-color: var(--gray-700);
    height: 2px;
    left: calc(50% - 10px);
    width: 20px;
}

/* Professional Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    border-radius: var(--radius);
    color: white;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.site-logo .logo-text {
    display: flex;
    align-items: baseline;
}

.site-logo .logo-main {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-logo .logo-dot {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-700);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-600) 100%);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.9rem;
}

.footer-logo .logo-main {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo .logo-dot {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-400);
}

/* User Menu Dropdown */
.navbar-item.has-dropdown {
    padding: 0;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    background: var(--gray-100);
    cursor: pointer;
}

.user-menu-trigger:hover {
    background: var(--gray-200);
}

.user-menu-trigger::after {
    display: none; /* Hide Bulma's default arrow, using FontAwesome icon instead */
}

.user-avatar-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    overflow: hidden;
}

.user-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name-text {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* User Dropdown - Click to open */
.user-dropdown .navbar-dropdown {
    display: none !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    padding: 0.5rem !important;
    min-width: 180px !important;
}

.user-dropdown.is-active .navbar-dropdown {
    display: block !important;
}

.user-dropdown .navbar-dropdown .navbar-item {
    color: #374151 !important;
    background: transparent !important;
}

.user-dropdown .navbar-dropdown .navbar-item:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
}

.navbar-dropdown {
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 180px;
}

.navbar-dropdown .navbar-item {
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.navbar-dropdown .navbar-divider {
    background-color: var(--gray-200);
    margin: 0.5rem 0;
}

.navbar-item-form {
    display: block;
    margin: 0;
    padding: 0;
}

.navbar-item.logout-item {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    color: var(--danger-600);
}

.navbar-item.logout-item:hover {
    background-color: var(--danger-50);
    color: var(--danger-600);
}

/* Mobile Menu */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background: #ffffff;
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .navbar-menu.is-active {
        display: block;
    }

    .site-logo .logo-main,
    .site-logo .logo-dot {
        font-size: 1.1rem;
    }

    .site-logo .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .navbar-item.has-dropdown {
        padding: 0;
    }

    .user-dropdown .navbar-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: var(--gray-50);
        border-radius: var(--radius);
        margin-top: 0.5rem;
    }

    .user-menu-trigger {
        width: 100%;
        justify-content: flex-start;
    }

    .user-menu-trigger::after {
        margin-left: auto;
    }
}

/* ==========================================
   5. BUTTONS
   ========================================== */
.button {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.button.is-primary {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
}

.button.is-warning {
    background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-500) 100%);
}

.button.is-light {
    background-color: var(--gray-100);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.button.is-light:hover {
    background-color: var(--gray-200);
    border-color: var(--gray-300);
}

/* CTA Button */
.button.is-cta {
    background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-600) 100%);
    color: white;
    font-weight: 600;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
}

.button.is-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

/* ==========================================
   6. CARDS & BOXES
   ========================================== */
.box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
}

.box:hover {
    box-shadow: var(--shadow-md);
}

.card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: none;
}

.card-header-title {
    color: var(--gray-800);
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
}

/* Company Card */
.company-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.company-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.company-card .company-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    background: var(--gray-100);
}

.company-card .company-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.company-card .company-location {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.company-card .rating {
    color: var(--warning-500);
}

/* ==========================================
   7. FORMS
   ========================================== */
.input, .textarea, .select select {
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-300);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.input:focus, .textarea:focus, .select select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.input::placeholder, .textarea::placeholder {
    color: var(--gray-400);
}

.label {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.875rem;
}

.help {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ==========================================
   8. HERO SECTION
   ========================================== */
.hero.is-primary-gradient {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
}

.hero.is-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .title, .hero .subtitle {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   9. TAGS & BADGES
   ========================================== */
.tag {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: var(--radius);
}

.tag.is-primary {
    background-color: var(--primary-100);
    color: var(--primary-700);
}

.tag.is-success {
    background-color: var(--success-50);
    color: var(--success-600);
}

.tag.is-warning {
    background-color: var(--warning-50);
    color: var(--warning-600);
}

.tag.is-danger {
    background-color: var(--danger-50);
    color: var(--danger-600);
}

.tag.is-info {
    background-color: var(--primary-50);
    color: var(--primary-600);
}

/* Verified Badge */
.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Premium Badge */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-500) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==========================================
   10. TABLES
   ========================================== */
.table {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table th {
    background: var(--gray-50);
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gray-200);
}

.table td {
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}

.table tbody tr:hover {
    background: var(--gray-50);
}

/* ==========================================
   11. NOTIFICATIONS
   ========================================== */
.notification {
    border-radius: var(--radius-lg);
    border: none;
}

.notification.is-primary {
    background-color: var(--primary-50);
    color: var(--primary-800);
}

.notification.is-success {
    background-color: var(--success-50);
    color: var(--success-600);
}

.notification.is-warning {
    background-color: var(--warning-50);
    color: var(--warning-600);
}

.notification.is-danger {
    background-color: var(--danger-50);
    color: var(--danger-600);
}

.notification.is-info {
    background-color: var(--primary-50);
    color: var(--primary-700);
}

/* ==========================================
   12. MENU (SIDEBAR)
   ========================================== */
.menu-label {
    color: var(--gray-400);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-list a {
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    padding: 0.625rem 0.75rem;
}

.menu-list a:hover {
    background-color: var(--gray-100);
    color: var(--primary-600);
}

.menu-list a.is-active {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
}

/* ==========================================
   13. FOOTER
   ========================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 1.5rem 2rem;
}

.footer .title {
    color: #ffffff !important;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    margin-top: 3rem;
    padding-top: 2rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Footer trust-badge contrast fix */
.footer .trust-badge {
    color: var(--gray-300);
}

.footer .trust-badge .badge-icon {
    color: #4ade80;
}

/* ==========================================
   14. RATING STARS
   ========================================== */
.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.rating-stars .star {
    color: var(--gray-300);
}

.rating-stars .star.filled {
    color: var(--warning-500);
}

.rating-value {
    font-weight: 600;
    color: var(--gray-800);
    margin-left: 0.5rem;
}

/* ==========================================
   15. QUOTE WIZARD
   ========================================== */
.quote-wizard {
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wizard-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.wizard-step.is-active .step-number {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
}

.wizard-step.is-completed .step-number {
    background: var(--success-500);
    color: white;
}

.wizard-step .step-title {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.wizard-step.is-active .step-title {
    color: var(--primary-600);
}

/* ==========================================
   16. STAT CARDS
   ========================================== */
.stat-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: var(--primary-200);
}

.stat-card .stat-label {
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.stat-card .stat-value.is-primary {
    color: var(--primary-600);
}

.stat-card .stat-value.is-success {
    color: var(--success-500);
}

.stat-card .stat-change {
    font-size: 0.8rem;
    font-weight: 500;
}

.stat-card .stat-change.is-positive {
    color: var(--success-500);
}

.stat-card .stat-change.is-negative {
    color: var(--danger-500);
}

/* ==========================================
   17. ICONS
   ========================================== */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-box.is-primary {
    background: var(--primary-100);
    color: var(--primary-600);
}

.icon-box.is-success {
    background: var(--success-50);
    color: var(--success-500);
}

.icon-box.is-warning {
    background: var(--warning-50);
    color: var(--warning-500);
}

.icon-box.is-danger {
    background: var(--danger-50);
    color: var(--danger-500);
}

/* ==========================================
   18. COMPANY PANEL SIDEBAR
   ========================================== */
.company-sidebar {
    background: #ffffff;
    border-right: 1px solid var(--gray-200);
    min-height: 100vh;
}

.company-sidebar .sidebar-brand {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.company-sidebar .sidebar-brand .brand-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-600);
}

.company-sidebar .sidebar-brand .brand-accent {
    color: var(--accent-500);
}

.company-sidebar .company-info {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.company-sidebar .company-info .company-name {
    font-weight: 600;
    color: var(--gray-800);
}

.company-main {
    background: var(--gray-50);
    min-height: 100vh;
}

/* ==========================================
   19. BREADCRUMB
   ========================================== */
.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--primary-600);
}

.breadcrumb li.is-active a {
    color: var(--gray-800);
}

/* ==========================================
   20. HOW IT WORKS SECTION
   ========================================== */
.how-it-works-step {
    text-align: center;
    padding: 2rem;
}

.how-it-works-step .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.how-it-works-step .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.how-it-works-step h3 {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.how-it-works-step p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ==========================================
   21. CITY CARDS
   ========================================== */
.city-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.city-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.city-card .city-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    font-size: 1.25rem;
}

.city-card .city-name {
    font-weight: 600;
    color: var(--gray-800);
}

.city-card .city-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ==========================================
   22. PAGINATION
   ========================================== */
.pagination-link {
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

.pagination-link:hover {
    border-color: var(--primary-300);
    color: var(--primary-600);
}

.pagination-link.is-current {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

/* ==========================================
   23. LOADING STATES
   ========================================== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================
   24. RESPONSIVE UTILITIES
   ========================================== */
@media screen and (max-width: 768px) {
    .is-hidden-mobile-custom {
        display: none !important;
    }

    .company-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        width: 280px;
        z-index: 100;
        transition: left 0.3s ease;
    }

    .company-sidebar.is-open {
        left: 0;
    }

    .company-main {
        margin-left: 0;
    }

    .hero .title {
        font-size: 1.75rem !important;
    }

    .wizard-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

/* ==========================================
   25. ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

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

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==========================================
   26. SPECIAL ELEMENTS
   ========================================== */

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.feature-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--success-50);
    color: var(--success-500);
    font-size: 0.75rem;
    font-weight: bold;
}

/* Price display */
.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-display .currency {
    font-size: 1.5rem;
    color: var(--gray-500);
}

.price-display .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state .empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--gray-400);
}

.empty-state h3 {
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-500);
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.trust-badge .badge-icon {
    color: var(--success-500);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}
