/* DriverChahiye Core Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0b0f19;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-card-opaque: #1e293b;
    --bg-card-light: #334155;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --primary-light: rgba(245, 158, 11, 0.15);
    --success: #10b981;
    --error: #ef4444;
    --border: rgba(148, 163, 184, 0.12);
    --border-hover: rgba(245, 158, 11, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Configurable background colors for theme switching */
    --bg-header: rgba(11, 15, 25, 0.8);
    --bg-sidebar: #060912;
    --bg-footer: #060912;
    --bg-table-th: rgba(15, 23, 42, 0.8);
    --bg-table: rgba(30, 41, 59, 0.3);
    --bg-input: rgba(15, 23, 42, 0.6);
}

/* Light Theme Variables */
:root.light-theme {
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-opaque: #ffffff;
    --bg-card-light: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #d97706;
    --primary-hover: #b45309;
    --primary-light: rgba(217, 119, 6, 0.1);
    --border: rgba(148, 163, 184, 0.2);
    --border-hover: rgba(217, 119, 6, 0.4);

    --bg-header: rgba(255, 255, 255, 0.8);
    --bg-sidebar: #ffffff;
    --bg-footer: #f8fafc;
    --bg-table-th: #f1f5f9;
    --bg-table: rgba(255, 255, 255, 0.5);
    --bg-input: #ffffff;
}

/* Theme Toggle Button Style */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(15deg);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

/* Header & Navigation */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: #000;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

/* Call Button Header */
.header-phone {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
    backdrop-filter: blur(8px);
    animation: slideDown 0.6s ease forwards;
}

.hero-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(85vh - 80px);
}

.hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px -10px rgba(245, 158, 11, 0.25);
    background: var(--bg-card-light);
}

.stat-item-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-item-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.1rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Booking Widget Card */
.booking-widget-card {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.booking-widget-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px -15px rgba(245, 158, 11, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Glowing background blobs for Hero */
.hero-glow-1 {
    position: absolute;
    top: -5%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    animation: float-slow 20s infinite alternate;
}

.hero-glow-2 {
    position: absolute;
    bottom: -5%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0) 70%);
    filter: blur(70px);
    z-index: -1;
    pointer-events: none;
    animation: float-reverse 22s infinite alternate;
}

@keyframes float-slow {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(5deg) scale(1.05); }
    100% { transform: translateY(-10px) rotate(-2deg) scale(0.95); }
}

@keyframes float-reverse {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(30px) rotate(-8deg) scale(0.95); }
    100% { transform: translateY(10px) rotate(3deg) scale(1.05); }
}

.booking-widget-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.booking-widget-card p.subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Multi-Step Steps Tracker */
.steps-tracker {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.steps-tracker::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--bg-card-light);
    z-index: 1;
}

.step-node {
    position: relative;
    z-index: 2;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.step-node.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-dark);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.step-node.completed {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

/* Form Groups */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

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

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15), var(--shadow-md);
    transform: translateY(-1px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Custom Autocomplete Suggestions UI */
.autocomplete-container {
    position: relative;
}

.suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card-opaque);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

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

/* Vehicle Picker Grid */
.vehicle-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.vehicle-btn {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.vehicle-btn.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

/* Checkbox style */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 1rem;
    color: #fca5a5;
    font-size: 0.85rem;
    display: none;
    animation: slideDown 0.3s ease forwards;
}

.disclaimer-banner.visible {
    display: block;
}

/* Button Navigation inside form */
.form-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

/* Services Section */
.section-wrapper {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid & Details */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Reviews / Social Proof Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
}

.review-rating {
    color: var(--primary);
    margin-bottom: 1rem;
}

.review-comment {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.review-author h4 {
    font-size: 0.95rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-card-light);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
}

/* Onboarding Portal styling */
.driver-portal-wrapper {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.driver-portal-card {
    border-radius: var(--radius-md);
    padding: 3rem;
}

.driver-portal-card h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.driver-portal-card p.desc {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* File Upload custom Dropzones */
.file-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.file-dropzone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-dropzone:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.file-dropzone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropzone-icon {
    font-size: 1.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.dropzone-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dropzone-filename {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.5rem;
    word-break: break-all;
    display: none;
}

/* Status query panel */
.status-query-panel {
    margin-top: 4rem;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.status-query-panel h3 {
    margin-bottom: 1rem;
}

.status-query-box {
    display: flex;
    max-width: 480px;
    margin: 0 auto 1.5rem auto;
    gap: 0.5rem;
}

.status-result {
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Footer Section */
footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 99;
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    border-radius: var(--radius-md);
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Expand Doc Modal */
.modal-content.wide {
    max-width: 800px;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--primary);
}

/* Admin SPA Layout */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-header {
    padding: 0 1rem 2rem 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.admin-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-nav-item a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-nav-item.active a,
.admin-nav-item a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.admin-main {
    flex: 1;
    background: var(--bg-dark);
    padding: 2.5rem;
    overflow-y: auto;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* Admin Cards Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.admin-stat-card {
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

.admin-stat-card h4 {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.admin-stat-card .value {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Table Style */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

table.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
    background: var(--bg-table);
}

table.admin-table th {
    background: var(--bg-table-th);
    color: var(--text-muted);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

table.admin-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
}

table.admin-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

/* Badges for status */
.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.badge-pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--primary);
}

.badge-verified {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.badge-rejected {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
}

.badge-assigned {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.badge-completed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.badge-canceled {
    background: rgba(148, 163, 184, 0.15);
    color: var(--text-muted);
}

/* Action dropdowns & buttons inside tables */
.select-sm {
    background: var(--bg-card-light);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

/* Document Review thumbnails */
.doc-thumbnail-container {
    display: flex;
    gap: 0.5rem;
}

.doc-thumb {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.doc-thumb:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

/* Document Expanded Viewer */
.document-viewer-expanded {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.document-viewer-expanded img {
    max-width: 100%;
    max-height: 500px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* Admin CRM notes textarea */
.crm-note-box {
    width: 100%;
    min-height: 80px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    padding: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    resize: vertical;
}

/* Reviews CRUD form card */
.review-form-card {
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Rating stars selector */
.stars-selector {
    display: flex;
    gap: 0.25rem;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.stars-selector i.active {
    color: var(--primary);
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple responsive hide, click calls header-phone button */
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .booking-widget-card {
        padding: 1.5rem;
    }
    
    .file-upload-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1rem;
    }
    
    .admin-sidebar-header {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-main {
        padding: 1.5rem;
    }
}

/* Reviews Slider/Carousel Styling */
#other-reviews-slider-container {
    margin-top: 5rem;
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    position: relative;
    animation: fadeIn 0.6s ease forwards;
}

.slider-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3.5rem; /* Space for absolute prev/next buttons */
}

.slider-track-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-md);
}

.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: 260px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.slide-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.slider-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-btn.prev-btn {
    left: 0;
}

.slider-btn.next-btn {
    right: 0;
}

@media (max-width: 992px) {
    .slide-card {
        flex: 0 0 calc((100% - 2rem) / 2);
    }
    .slider-wrapper {
        padding: 0 3rem;
    }
}

@media (max-width: 600px) {
    .slide-card {
        flex: 0 0 100%;
    }
    .slider-wrapper {
        padding: 0 2.5rem;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}
