        :root {
            --bg-main: #F8FAFC;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --accent-blue: #0891B2;
            --accent-cyan: #06B6D4;
            --accent-navy: #2B2D42;
            --accent-orange: #0891B2;
            --accent-pink: #ec4899;
            --accent-purple: #8b5cf6;
            --accent-green: #059669;
            --accent-yellow: #F59E0B;
            --accent-red: #DC2626;
            --text-dark: #1E293B;
            --text-medium: #475569;
            --text-light: #64748B;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
            --gradient-hero: linear-gradient(135deg, #2B2D42 0%, #475569 50%, #64748B 100%);
            --gradient-btn: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
            --gradient-card: linear-gradient(145deg, #ffffff 0%, #F8FAFC 100%);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-main);
            color: var(--text-dark);
            min-height: 100vh;
            overflow-x: hidden;
            /* Performance optimizations */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Admin Sidebar Toggle - HIDDEN */
        .admin-toggle {
            display: none; /* Hidden - use secret access instead */
        }

        /* Admin Sidebar */
        .admin-sidebar {
            position: fixed;
            right: -600px;
            top: 0;
            width: 600px;
            height: 100%;
            background: var(--bg-white);
            box-shadow: -8px 0 32px rgba(0,0,0,0.15);
            z-index: 2000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .admin-sidebar.open {
            right: 0;
        }

        /* FULLSCREEN MODE */
        .admin-sidebar.fullscreen {
            width: 100vw;
            right: -100vw;
        }

        .admin-sidebar.fullscreen.open {
            right: 0;
        }

        .admin-sidebar-header {
            padding: 24px;
            background: var(--gradient-btn);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .admin-sidebar-header h2 {
            font-size: 20px;
            font-weight: 700;
        }

        .admin-header-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .fullscreen-toggle {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .fullscreen-toggle:hover {
            background: rgba(255,255,255,0.3);
        }

        .close-sidebar {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-sidebar:hover {
            background: rgba(255,255,255,0.3);
        }

        .admin-sidebar-content {
            flex: 1;
            overflow-y: auto;
            padding: 24px;
        }

        /* Admin Tabs */
        .admin-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 12px;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #94a3b8 #f1f5f9;
            position: relative;
            padding-right: 40px;
        }

        /* Fade indicator on right side */
        .admin-tabs::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 12px;
            width: 40px;
            background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
            pointer-events: none;
        }

        /* Custom scrollbar for admin tabs */
        .admin-tabs::-webkit-scrollbar {
            height: 6px;
        }

        .admin-tabs::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
        }

        .admin-tabs::-webkit-scrollbar-thumb {
            background: #94a3b8;
            border-radius: 10px;
        }

        .admin-tabs::-webkit-scrollbar-thumb:hover {
            background: #64748b;
        }

        .admin-tab {
            padding: 10px 16px;
            background: #f1f5f9;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-medium);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .admin-tab.active {
            background: var(--gradient-btn);
            color: white;
        }

        .admin-tab:hover:not(.active) {
            background: #e2e8f0;
        }

        .admin-tab-content {
            display: none;
        }

        .admin-tab-content.active {
            display: block;
        }

        /* Login Form in Sidebar */
        .login-section {
            padding: 20px;
        }

        .login-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

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

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-medium);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
        }

        /* Quill Rich Text Editor Styles */
        .quill-editor-container {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .quill-editor-container:focus-within {
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
        }

        .quill-editor-container .ql-toolbar {
            border: none;
            border-bottom: 2px solid #e2e8f0;
            border-radius: 10px 10px 0 0;
            background: #f8fafc;
            padding: 10px;
        }

        .quill-editor-container .ql-container {
            border: none;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
        }

        .quill-editor-container .ql-editor {
            min-height: 100px;
            max-height: 300px;
            overflow-y: scroll !important;
            overflow-x: hidden;
            padding: 12px 16px;
        }

        .quill-editor-container .ql-editor.ql-blank::before {
            font-style: normal;
            color: #94a3b8;
        }

        /* Custom scrollbar for better visibility */
        .quill-editor-container .ql-editor::-webkit-scrollbar {
            width: 8px;
        }

        .quill-editor-container .ql-editor::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
        }

        .quill-editor-container .ql-editor::-webkit-scrollbar-thumb {
            background: #94a3b8;
            border-radius: 10px;
        }

        .quill-editor-container .ql-editor::-webkit-scrollbar-thumb:hover {
            background: #64748b;
        }

        /* Small editor for single-line inputs */
        .quill-editor-small .ql-editor {
            min-height: 50px;
            max-height: 150px;
            overflow-y: scroll !important;
        }

        /* Medium editor for moderate text */
        .quill-editor-medium .ql-editor {
            min-height: 150px;
            max-height: 400px;
            overflow-y: scroll !important;
        }

        /* Large editor for long content like T&C */
        .quill-editor-large .ql-editor {
            min-height: 200px;
            max-height: 500px;
            overflow-y: scroll !important;
        }


        .login-btn {
            width: 100%;
            padding: 14px;
            background: var(--gradient-btn);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(8, 145, 178, 0.25);
        }

        .login-error {
            color: var(--accent-red);
            font-size: 13px;
            margin-top: 12px;
            text-align: center;
            display: none;
        }

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

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

        /* Admin Panel Content */
        .admin-panel {
            display: none;
        }

        .admin-panel.active {
            display: block;
        }

        .admin-section {
            margin-bottom: 24px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 16px;
        }

        .admin-section h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .admin-section h3::before {
            content: '';
            width: 4px;
            height: 20px;
            background: var(--gradient-btn);
            border-radius: 2px;
        }

        .settings-grid {
            display: grid;
            gap: 12px;
        }

        .setting-item label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .setting-item input, .setting-item textarea {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
        }

        .setting-item input:focus, .setting-item textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
        }

        /* Car Editor in Sidebar */
        .car-editor-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .car-editor-item {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .car-editor-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0;
            padding: 12px 16px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            cursor: pointer;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .car-expand-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 4px;
            margin-right: 8px;
        }
        
        .car-expand-btn.expanded {
            transform: rotate(180deg);
        }
        
        .car-editor-body {
            padding: 16px;
            display: none;
        }
        
        .car-editor-body.expanded {
            display: block;
        }

        .car-editor-name {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-dark);
        }

        .car-editor-actions {
            display: flex;
            gap: 8px;
        }

        .car-editor-btn {
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .car-editor-btn.save {
            background: #ecfdf5;
            color: #065f46;
            border: 1px solid #10b981;
        }

        .car-editor-btn.save:hover:not(:disabled) {
            background: #d1fae5;
        }

        .car-editor-btn.save:disabled {
            opacity: 0.7;
            cursor: wait;
        }

        .car-editor-btn.delete {
            background: #fef2f2;
            color: var(--accent-red);
        }

        .car-editor-btn.delete:hover {
            background: #fee2e2;
        }

        .car-editor-fields {
            display: grid;
            gap: 10px;
        }

        .car-editor-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .car-editor-row-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }

        .car-field-mini label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .car-field-mini input, .car-field-mini select {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 13px;
            font-family: 'Poppins', sans-serif;
        }

        .car-field-mini input:focus, .car-field-mini select:focus {
            outline: none;
            border-color: var(--accent-blue);
        }

        .car-optionals-block {
            margin-top: 12px;
            padding: 12px;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }
        .car-optionals-block .car-optionals-title {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .car-optional-row {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-bottom: 8px;
        }
        .car-optional-row input[type="text"] {
            flex: 1;
            padding: 6px 10px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 12px;
        }
        .car-optional-row input[type="number"] {
            width: 80px;
            padding: 6px 10px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 12px;
        }
        .car-optional-row .car-editor-btn {
            padding: 6px 10px;
            font-size: 12px;
        }
        .car-optional-disables {
            grid-column: 1 / -1;
            font-size: 11px;
            color: var(--text-light);
            margin-top: 6px;
            padding-left: 2px;
        }
        .car-optional-disables label {
            margin-right: 12px;
            font-weight: normal;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .car-optional-disables input[type="checkbox"] {
            width: 14px;
            height: 14px;
        }
        .car-optional-row .optional-disabled-toggle-wrap {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .car-optional-row.optional-is-disabled {
            opacity: 0.7;
        }

        /* Photo Upload */
        .photo-upload-area {
            border: 2px dashed #cbd5e1;
            border-radius: 10px;
            padding: 16px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .photo-upload-area:hover {
            border-color: var(--accent-blue);
            background: #eff6ff;
        }

        .photo-upload-area.has-photo {
            border-style: solid;
            padding: 8px;
        }

        .photo-upload-area img {
            max-width: 100%;
            max-height: 80px;
            border-radius: 6px;
            object-fit: cover;
        }

        .photo-upload-text {
            font-size: 12px;
            color: var(--text-light);
        }

        .photo-upload-text span {
            color: var(--accent-blue);
            font-weight: 600;
        }

        .local-toggle-mini {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
        }

        .toggle-switch-mini {
            width: 44px;
            height: 24px;
            background: #e2e8f0;
            border-radius: 12px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .toggle-switch-mini.active {
            background: var(--accent-green);
        }

        .toggle-switch-mini::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            background: white;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .toggle-switch-mini.active::after {
            left: 23px;
        }

        .toggle-label-mini {
            font-size: 12px;
            color: var(--text-medium);
        }

        .add-car-btn-sidebar {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .add-car-btn-sidebar:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }

        .logout-btn-sidebar {
            width: 100%;
            padding: 12px;
            background: #fef2f2;
            border: 2px solid #fecaca;
            border-radius: 10px;
            color: var(--accent-red);
            font-size: 14px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 16px;
        }

        .logout-btn-sidebar:hover {
            background: #fee2e2;
        }

        /* Logo Upload Section */
        .logo-upload-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .logo-preview-area {
            width: 100%;
            height: 100px;
            border: 2px dashed #cbd5e1;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8fafc;
            overflow: hidden;
        }

        .logo-preview-area:hover {
            border-color: var(--accent-blue);
            background: #eff6ff;
        }

        .logo-preview-area.has-logo {
            border-style: solid;
            border-color: var(--accent-blue);
            background: white;
        }

        .logo-preview-area img {
            max-width: 90%;
            max-height: 80px;
            object-fit: contain;
        }

        .logo-upload-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-medium);
            font-size: 13px;
            font-weight: 500;
        }

        .remove-logo-btn {
            padding: 10px 16px;
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 8px;
            color: var(--accent-red);
            font-size: 13px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .remove-logo-btn:hover {
            background: #fee2e2;
        }

        /* Admin Notes Field */
        .admin-notes-field {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px dashed #e2e8f0;
        }

        .admin-notes-field label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            font-weight: 600;
            color: #9333ea;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .admin-notes-field textarea {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e9d5ff;
            border-radius: 8px;
            font-size: 12px;
            font-family: 'Poppins', sans-serif;
            min-height: 60px;
            resize: vertical;
            background: #faf5ff;
            color: #581c87;
        }

        .admin-notes-field textarea::placeholder {
            color: #c4b5fd;
        }

        .admin-notes-field textarea:focus {
            outline: none;
            border-color: #9333ea;
            background: white;
        }

        /* Car Active/Inactive Toggle */
        .car-status-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            margin-bottom: 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .car-status-toggle.active {
            background: #ecfdf5;
            border: 2px solid #10b981;
        }

        .car-status-toggle.inactive {
            background: #fef2f2;
            border: 2px solid #ef4444;
        }

        .car-status-label {
            font-size: 13px;
            font-weight: 600;
        }

        .car-status-toggle.active .car-status-label {
            color: #059669;
        }

        .car-status-toggle.inactive .car-status-label {
            color: #dc2626;
        }

        .status-toggle-switch {
            width: 50px;
            height: 26px;
            background: #ef4444;
            border-radius: 13px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .status-toggle-switch.active {
            background: #10b981;
        }

        .status-toggle-switch::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .status-toggle-switch.active::after {
            left: 27px;
        }

        /* Inactive car styling in editor */
        .car-editor-item.inactive {
            opacity: 0.7;
            border-color: #fecaca;
        }

        /* Hero Feature Editor */
        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .hero-feature-item.inactive {
            opacity: 0.5;
            background: #f8f8f8;
        }

        .hero-feature-item input[type="text"] {
            flex: 1;
            padding: 8px 10px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 13px;
            font-family: 'Poppins', sans-serif;
        }

        .hero-feature-toggle {
            width: 40px;
            height: 22px;
            background: #e2e8f0;
            border-radius: 11px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .hero-feature-toggle.active {
            background: var(--accent-green);
        }

        .hero-feature-toggle::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: white;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .hero-feature-toggle.active::after {
            left: 21px;
        }

        .hero-feature-delete {
            width: 28px;
            height: 28px;
            background: #fef2f2;
            border: none;
            border-radius: 6px;
            color: var(--accent-red);
            cursor: pointer;
            font-size: 14px;
            flex-shrink: 0;
        }

        .hero-feature-delete:hover {
            background: #fee2e2;
        }

        /* Terms Editor */
        .terms-editor-item {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
        }

        .terms-editor-item input {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 10px;
        }

        .terms-editor-item textarea {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 13px;
            font-family: 'Poppins', sans-serif;
            min-height: 80px;
            resize: vertical;
        }

        .terms-editor-item input:focus, .terms-editor-item textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
        }

        .terms-editor-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .terms-editor-header span {
            font-size: 12px;
            color: var(--text-light);
            text-transform: uppercase;
            font-weight: 600;
        }

        .add-terms-btn {
            width: 100%;
            padding: 12px;
            background: #f1f5f9;
            border: 2px dashed #cbd5e1;
            border-radius: 10px;
            color: var(--text-medium);
            font-size: 14px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .add-terms-btn:hover {
            background: #e2e8f0;
            border-color: var(--accent-blue);
            color: var(--accent-blue);
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Header with Logo */
        .site-header {
            background: var(--bg-white);
            padding: 16px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            position: relative;
            z-index: 100;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-container img {
            height: 60px;
            width: auto;
        }

        .logo-placeholder {
            height: 60px;
            width: 180px;
            background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
            border: 2px dashed #cbd5e1;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 12px;
            font-weight: 600;
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
        }

        .header-phone-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-btn);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
        }

        /* Sticky WhatsApp Button - Always Visible */
        .sticky-call-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 16px 24px;
            border-radius: 50px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            z-index: 1000;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .sticky-call-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
        }

        .sticky-call-btn .phone-icon {
            font-size: 24px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-hero);
            padding: 60px 40px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            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");
            animation: float 30s linear infinite;
        }

        @keyframes float {
            0% { transform: translate(0, 0); }
            100% { transform: translate(30px, 30px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 900;
            color: white;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
            line-height: 1.1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero h1 .logo-drive {
            font-size: 56px;
            font-weight: 600;
            letter-spacing: 4px;
            font-family: 'Trebuchet MS', Arial, sans-serif;
        }

        .hero h1 .logo-x {
            font-size: 96px;
            font-weight: 800;
            font-family: Georgia, serif;
            color: #4a6eb8;
            text-shadow: -3px -3px 0 #ffffff, 3px -3px 0 #ffffff, -3px 3px 0 #ffffff, 3px 3px 0 #ffffff, -2px 0 0 #ffffff, 2px 0 0 #ffffff, 0 -2px 0 #ffffff, 0 2px 0 #ffffff;
            line-height: 1;
        }

        .hero-tagline {
            font-size: 22px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 32px;
            font-weight: 500;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-feature-icon {
            width: 24px;
            height: 24px;
            background: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* Filter/Sort Button and Panel */
        .filter-sort-wrapper {
            max-width: 1400px;
            margin: -30px auto 0;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        .filter-sort-cta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 36px;
        }

        .cta-buttons-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 36px;
        }

        .cta-link-btn {
            padding: 14px 24px;
            background: var(--gradient-btn);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            box-shadow: var(--shadow-md);
        }

        .cta-link-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: white;
        }

        .cta-link-btn.no-link {
            cursor: default;
        }

        /* Admin CTA buttons section */
        .cta-admin-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .cta-admin-card {
            padding: 20px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .cta-admin-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e2e8f0;
        }
        .cta-admin-card-title {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-dark);
        }
        .cta-admin-card .form-group {
            margin-bottom: 14px;
        }
        .cta-admin-card .form-group:last-child {
            margin-bottom: 0;
        }
        .cta-admin-card label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-medium);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }
        .cta-admin-card input {
            width: 100%;
            padding: 10px 12px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
        }
        .cta-admin-card input:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 2px rgba(8, 145, 178, 0.15);
        }

        .filter-sort-toggle {
            padding: 14px 24px;
            background: var(--gradient-btn);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-md);
        }

        .filter-sort-toggle:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .filter-sort-panel {
            background: var(--bg-white);
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            margin-top: 12px;
            padding: 24px;
            display: none;
        }

        .filter-sort-panel.active {
            display: block;
        }

        .filter-sort-container {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: end;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
        }

        .filter-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-medium);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .filter-group select:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
        }

        .clear-filters-btn {
            padding: 12px 20px;
            background: #64748b;
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .clear-filters-btn:hover {
            background: #475569;
            transform: translateY(-2px);
        }

        /* Cars Grid Section */
        .cars-section {
            padding: 60px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .section-title p {
            font-size: 18px;
            color: var(--text-medium);
        }

        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
        }

        .car-card {
            background: var(--bg-white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            /* Performance: GPU acceleration */
            will-change: transform;
            transform: translateZ(0);
        }

        .car-card:hover {
            transform: translateY(-8px) translateZ(0);
            box-shadow: var(--shadow-lg);
        }

        .car-card.not-local .car-image::after {
            content: 'NOT LOCAL';
            position: absolute;
            top: 16px;
            right: -36px;
            background: var(--accent-orange);
            color: white;
            font-size: 10px;
            font-weight: 800;
            padding: 6px 48px;
            transform: rotate(45deg);
            letter-spacing: 1px;
        }

        .car-image {
            height: 180px;
            background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

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

        .car-image-placeholder {
            font-size: 64px;
            opacity: 0.8;
        }

        .car-age-badge {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: var(--accent-blue);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .car-content {
            padding: 24px;
        }

        .car-name {
            font-size: 22px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 6px;
            line-height: 1.2;
        }

        .car-subtitle {
            font-size: 13px;
            font-weight: 400;
            color: #666666;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-style: normal;
        }

        .info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            background: #999999;
            color: white;
            border-radius: 50%;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            font-family: Georgia, serif;
            font-style: italic;
            position: relative;
        }

        .info-icon:hover {
            background: #666666;
        }

        /* Info Dropdown (appears below icon) */
        .info-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            padding: 20px;
            z-index: 100;
            display: none;
            max-width: 400px;
            max-height: 400px;
            overflow-y: auto;
        }

        .info-dropdown.active {
            display: block;
        }

        /* Custom scrollbar for info dropdown */
        .info-dropdown::-webkit-scrollbar {
            width: 6px;
        }

        .info-dropdown::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
        }

        .info-dropdown::-webkit-scrollbar-thumb {
            background: #94a3b8;
            border-radius: 10px;
        }

        .info-dropdown::-webkit-scrollbar-thumb:hover {
            background: #64748b;
        }

        .info-dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid white;
        }

        .info-dropdown p {
            font-size: 13px;
            line-height: 1.6;
            color: #333333;
            margin-bottom: 12px;
        }

        .info-dropdown p:last-child {
            margin-bottom: 0;
        }

        /* Proper list styling for info dropdown */
        .info-dropdown ul,
        .info-dropdown ol {
            margin: 8px 0;
            padding-left: 24px;
            list-style-position: outside;
        }

        .info-dropdown ul {
            list-style-type: disc;
        }

        .info-dropdown ol {
            list-style-type: decimal;
        }

        .info-dropdown li {
            font-size: 13px;
            line-height: 1.6;
            color: #333333;
            margin-bottom: 6px;
            padding-left: 4px;
        }

        .info-dropdown li:last-child {
            margin-bottom: 0;
        }

        .car-subtitle-container {
            position: relative;
        }

        .car-price-container {
            margin-bottom: 12px;
        }

        .car-price {
            display: flex;
            flex-direction: column;
            gap: 0px;
            padding: 4px 12px 8px 12px;
            background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
            border-radius: 8px;
            border-left: 3px solid var(--accent-green);
        }

        .car-price-label {
            font-size: 9px;
            color: #059669;
            font-weight: 500;
            opacity: 0.7;
            line-height: 1;
            margin-bottom: 1px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .car-price-row {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .car-price-amount {
            font-family: 'Space Mono', monospace;
            font-size: 40px;
            font-weight: 700;
            color: var(--accent-green);
            line-height: 1;
        }

        .car-price-period {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 500;
        }

        .car-fee {
            font-size: 13px;
            color: var(--text-medium);
            margin-bottom: 8px;
        }

        .car-feature-text {
            font-size: 13px;
            color: var(--accent-green);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .car-feature-text .feature-icon {
            font-weight: bold;
        }

        .car-feature-text.feature-text-red {
            color: #dc2626;
        }
        .car-feature-text.feature-text-red .feature-icon-x {
            color: #dc2626;
            font-weight: bold;
        }

        .car-duration-text {
            font-size: 12px;
            color: var(--accent-blue);
            margin-bottom: 12px;
            font-weight: 500;
        }

        /* Duration checkboxes in admin */
        .duration-checkboxes {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 6px;
        }

        .duration-checkbox-label {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: var(--text-medium);
            background: #f1f5f9;
            padding: 6px 10px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .duration-checkbox-label:hover {
            background: #e2e8f0;
        }

        .duration-checkbox-label input[type="checkbox"] {
            width: 14px;
            height: 14px;
            accent-color: var(--accent-blue);
        }

        .car-cta {
            width: 100%;
            padding: 14px;
            background: var(--gradient-btn);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .car-cta:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(8, 145, 178, 0.35);
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #2B2D42 0%, #475569 100%);
            padding: 60px 40px;
            text-align: center;
            color: white;
        }

        .contact-section h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .contact-section p {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
        }

        .contact-cards {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            max-width: 800px;
            margin: 0 auto 32px;
        }

        .contact-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 24px 32px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            min-width: 280px;
        }

        .contact-card-label {
            font-size: 12px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .contact-card-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-cyan);
        }

        .contact-card-value a {
            color: var(--accent-cyan);
            text-decoration: none;
        }

        .contact-card-value a:hover {
            text-decoration: underline;
            opacity: 0.9;
        }

        .disclaimer {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: #1E293B;
            padding: 24px 40px;
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }

        .footer a {
            color: #0891B2;
            text-decoration: none;
            margin: 0 12px;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* ========== BOOKING MODAL ========== */
        .booking-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
        }

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

        .booking-modal-content {
            background: white;
            border-radius: 24px;
            width: 100%;
            max-width: 560px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.4s ease;
        }

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

        .booking-modal-header {
            background: var(--gradient-btn);
            padding: 28px 32px;
            color: white;
            position: relative;
        }

        .booking-modal-header h2 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .booking-modal-header p {
            font-size: 14px;
            opacity: 0.9;
        }

        .close-booking-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-booking-modal:hover {
            background: rgba(255,255,255,0.3);
        }

        .booking-selected-car {
            background: rgba(255,255,255,0.15);
            padding: 12px 16px;
            border-radius: 10px;
            margin-top: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .booking-selected-car-icon {
            font-size: 28px;
        }

        .booking-selected-car-info h4 {
            font-size: 16px;
            font-weight: 700;
        }

        .booking-selected-car-info span {
            font-size: 13px;
            opacity: 0.8;
        }

        .booking-form {
            padding: 32px;
        }

        .booking-form .form-group {
            margin-bottom: 20px;
        }

        .booking-form .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .booking-form .form-group label .required {
            color: var(--accent-red);
        }

        .booking-form input, .booking-form select, .booking-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
        }

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

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

        .form-row-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
        }

        /* Terms Checkbox */
        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 16px 0;
            padding: 16px;
            background: #f8fafc;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
        }

        .terms-checkbox input[type="checkbox"] {
            width: 22px;
            height: 22px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: var(--accent-blue);
        }

        .terms-checkbox label {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.5;
            cursor: pointer;
        }

        .terms-checkbox label a {
            color: var(--accent-blue);
            font-weight: 600;
            text-decoration: none;
        }

        .terms-checkbox label a:hover {
            text-decoration: underline;
        }

        .terms-checkbox.error {
            border-color: var(--accent-red);
            background: #fef2f2;
        }

        .sms-consent-wrap {
            margin: 16px 0;
            padding: 16px;
            background: #f0f9ff;
            border-radius: 12px;
            border: 1px solid #bae6fd;
        }

        .sms-consent-wrap .terms-checkbox {
            margin: 0 0 14px 0;
            padding: 0;
            background: transparent;
            border: none;
        }

        .sms-consent-wrap .terms-checkbox:last-child {
            margin-bottom: 0;
        }

        .privacy-policy-modal-body h3 {
            font-size: 1rem;
            margin: 1.25em 0 0.5em;
            color: var(--text-dark);
        }

        .privacy-policy-modal-body p,
        .privacy-policy-modal-body li {
            font-size: 13px;
            line-height: 1.55;
            color: var(--text-medium);
        }

        .privacy-policy-modal-body ul {
            margin: 0.35em 0 0.75em 1.25em;
        }

        .booking-optionals-section {
            margin: 16px 0;
            padding: 16px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }
        .booking-optionals-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .booking-optionals-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            align-items: center;
        }
        .booking-optional-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex: 0 0 auto;
        }
        .booking-optional-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--accent-blue);
        }
        .booking-optional-item label {
            font-size: 14px;
            color: var(--text-medium);
            cursor: pointer;
            white-space: nowrap;
        }
        .booking-optional-price {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-green);
            white-space: nowrap;
        }
        .booking-optional-price.negative {
            color: #059669;
        }
        .booking-optional-item:has(.booking-optional-cb:disabled) {
            opacity: 0.6;
            pointer-events: none;
        }

        .submit-booking-btn {
            width: 100%;
            padding: 18px;
            background: var(--gradient-btn);
            border: none;
            border-radius: 14px;
            color: white;
            font-size: 16px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-booking-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(8, 145, 178, 0.3);
        }

        .submit-booking-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Success Message */
        .booking-success {
            display: none;
            text-align: center;
            padding: 48px 32px;
        }

        .booking-success.active {
            display: block;
        }

        .booking-success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin: 0 auto 24px;
            animation: successPop 0.5s ease;
        }

        @keyframes successPop {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .booking-success h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .booking-success p {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .booking-success-btn {
            padding: 14px 32px;
            background: var(--accent-green);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
        }

        /* ========== TERMS & CONDITIONS MODAL ========== */
        .terms-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 4000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

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

        .terms-modal-content {
            background: white;
            border-radius: 24px;
            width: 100%;
            max-width: 700px;
            max-height: 85vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            animation: modalSlideIn 0.4s ease;
        }

        .terms-modal-header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 28px 32px;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .terms-modal-header h2 {
            font-size: 22px;
            font-weight: 800;
        }

        .close-terms-modal {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .terms-modal-body {
            padding: 32px;
            overflow-y: auto;
            flex: 1;
        }

        /* Custom scrollbar for terms modal */
        .terms-modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .terms-modal-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
        }

        .terms-modal-body::-webkit-scrollbar-thumb {
            background: #94a3b8;
            border-radius: 10px;
        }

        .terms-modal-body::-webkit-scrollbar-thumb:hover {
            background: #64748b;
        }

        /* Quill content display (for customer-facing content) */
        .quill-content {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-medium);
        }

        .quill-content p {
            margin-bottom: 12px;
        }

        .quill-content p:last-child {
            margin-bottom: 0;
        }

        .quill-content h1, .quill-content h2, .quill-content h3 {
            margin-top: 16px;
            margin-bottom: 12px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .quill-content ul, .quill-content ol {
            margin: 12px 0;
            padding-left: 24px;
        }

        .quill-content li {
            margin-bottom: 6px;
        }

        .quill-content a {
            color: var(--accent-blue);
            text-decoration: underline;
        }

        .quill-content strong {
            font-weight: 700;
        }

        .terms-company {
            text-align: center;
            padding-bottom: 24px;
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 24px;
        }

        .terms-company h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .terms-company p {
            font-size: 14px;
            color: var(--text-medium);
        }

        .terms-section {
            margin-bottom: 24px;
        }

        .terms-section h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .terms-section h4::before {
            content: '';
            width: 4px;
            height: 18px;
            background: var(--gradient-btn);
            border-radius: 2px;
        }

        .terms-section p, .terms-section li {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.7;
        }

        .terms-section ul {
            list-style: none;
            padding: 0;
        }

        .terms-section li {
            padding-left: 24px;
            position: relative;
            margin-bottom: 8px;
        }

        .terms-section li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: var(--accent-blue);
            font-weight: bold;
        }

        .terms-modal-footer {
            padding: 20px 32px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }

        .terms-accept-btn {
            width: 100%;
            padding: 16px;
            background: var(--gradient-btn);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
        }

        /* Similar Cars Info Modal */
        .info-modal {
            display: none !important; /* Using dropdown instead */
        }

        /* Email Status */
        .email-status {
            padding: 12px 16px;
            border-radius: 8px;
            margin-top: 12px;
            font-size: 13px;
            display: none;
        }

        .email-status.success {
            display: block;
            background: #ecfdf5;
            color: #059669;
            border: 1px solid #a7f3d0;
        }

        .email-status.error {
            display: block;
            background: #fef2f2;
            color: #dc2626;
            border: 1px solid #fecaca;
        }

        /* Section Toggle Controls */
        .section-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            background: #f8fafc;
            border-radius: 10px;
            margin-bottom: 12px;
        }

        .section-toggle label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
            background: #cbd5e1;
            border-radius: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-switch.active {
            background: var(--accent-green);
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
        }

        .toggle-switch.active::after {
            left: 27px;
        }

        /* Partner Logos Section */
        .partner-logos-section {
            padding: 60px 20px;
            background: white;
            text-align: center;
            display: none;
        }

        .partner-logos-section.active {
            display: block;
        }

        .partner-logos-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .partner-logos-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
        }

        .partner-logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            align-items: center;
            justify-items: center;
        }

        .partner-logo {
            height: 60px;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.6);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Logo Upload in Admin */
        .logo-upload-grid {
            display: grid;
            gap: 16px;
            margin-top: 16px;
        }

        .logo-upload-item {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 12px;
            background: #f8fafc;
            border-radius: 8px;
        }

        .logo-preview {
            width: 80px;
            height: 50px;
            object-fit: contain;
            background: white;
            border-radius: 6px;
            border: 2px solid #e2e8f0;
        }

        .logo-upload-controls {
            flex: 1;
        }

        .upload-btn {
            padding: 8px 16px;
            background: var(--gradient-btn);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .upload-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
        }

        .delete-logo-btn {
            padding: 8px 12px;
            background: #fee2e2;
            color: var(--accent-red);
            border: none;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 20px;
            background: var(--bg-main);
            display: none;
        }

        .benefits-section.active {
            display: block;
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .benefits-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .benefits-subtitle {
            font-size: 18px;
            color: var(--text-medium);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .benefit-card {
            background: white;
            padding: 32px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

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

        .benefit-icon {
            font-size: 40px;
            margin-bottom: 16px;
            display: block;
        }

        .benefit-card-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .benefit-card-text {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.7;
        }

        .benefits-cta {
            background: white;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .benefits-cta-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .benefits-cta-text {
            font-size: 16px;
            color: var(--text-medium);
            margin-bottom: 24px;
        }

        .benefits-cta-btn {
            padding: 16px 40px;
            background: var(--gradient-btn);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .benefits-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(8, 145, 178, 0.35);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: white;
            display: none;
        }

        .faq-section.active {
            display: block;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .faq-subtitle {
            font-size: 18px;
            color: var(--text-medium);
        }

        .faq-list {
            display: grid;
            gap: 16px;
        }

        .faq-item {
            background: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            width: 100%;
            padding: 24px;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-blue);
        }

        .faq-question::after {
            content: '+';
            font-size: 24px;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 2000px;
            overflow-y: auto;
        }

        .faq-answer-content {
            padding: 0 24px 24px 24px;
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.7;
            max-height: 600px;
            overflow-y: auto;
        }

        /* Custom scrollbar for FAQ answers */
        .faq-answer-content::-webkit-scrollbar {
            width: 6px;
        }

        .faq-answer-content::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
            margin: 10px 0;
        }

        .faq-answer-content::-webkit-scrollbar-thumb {
            background: #94a3b8;
            border-radius: 10px;
        }

        .faq-answer-content::-webkit-scrollbar-thumb:hover {
            background: #64748b;
        }

        /* FAQ Admin Editor */
        .faq-editor-list {
            display: grid;
            gap: 12px;
            margin-top: 16px;
        }

        .faq-editor-item {
            background: #f8fafc;
            padding: 16px;
            border-radius: 8px;
        }

        .faq-editor-item.inactive {
            opacity: 0.5;
        }

        .faq-editor-header {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 12px;
        }

        .faq-toggle {
            width: 40px;
            height: 22px;
            background: #cbd5e1;
            border-radius: 11px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-toggle.active {
            background: var(--accent-green);
        }

        .faq-toggle::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: white;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
        }

        .faq-toggle.active::after {
            left: 21px;
        }

        .faq-delete-btn {
            padding: 6px 12px;
            background: #fee2e2;
            color: var(--accent-red);
            border: none;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            margin-left: auto;
        }

        .add-faq-btn {
            width: 100%;
            padding: 12px;
            background: var(--gradient-btn);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 12px;
        }

        /* Reorder Buttons */
        .reorder-buttons {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-right: 8px;
        }

        .reorder-btn {
            width: 32px;
            height: 32px;
            background: #f1f5f9;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            color: var(--text-dark);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
        }

        .reorder-btn:hover:not(:disabled) {
            background: var(--accent-blue);
            color: white;
            border-color: var(--accent-blue);
            transform: scale(1.1);
        }

        .reorder-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .reorder-btn:active:not(:disabled) {
            transform: scale(0.95);
        }

        /* Reservations Management Styles */
        .reservations-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .reservations-header-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .reservations-stats {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .stat-badge {
            padding: 10px 18px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-medium);
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 100px;
        }

        .stat-badge strong {
            font-size: 24px;
            color: var(--text-dark);
            font-weight: 800;
        }

        .stat-badge.pending {
            border-color: #fbbf24;
            background: #fffbeb;
        }

        .stat-badge.pending strong {
            color: #d97706;
        }

        .stat-badge.confirmed {
            border-color: #10b981;
            background: #ecfdf5;
        }

        .stat-badge.confirmed strong {
            color: #059669;
        }

        .export-excel-btn {
            padding: 12px 24px;
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .export-excel-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
        }

        .reservation-search-container {
            position: relative;
            margin: 16px 0;
        }

        .reservation-search-input {
            width: 100%;
            padding: 12px 40px 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            background: white;
            transition: all 0.3s ease;
        }

        .reservation-search-input:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

        .clear-search-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: #94a3b8;
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .clear-search-btn:hover {
            background: #64748b;
        }

        .no-search-results {
            text-align: center;
            padding: 40px;
            color: var(--text-medium);
        }

        .no-search-results-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .reservations-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .reservation-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            margin-bottom: 12px;
        }

        .reservation-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            border-color: var(--accent-blue);
        }

        .reservation-card-header {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e2e8f0;
            flex-wrap: wrap;
            gap: 8px;
            cursor: pointer;
        }

        .reservation-card-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            flex: 1;
        }
        
        .reservation-quick-info {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            flex: 1;
        }
        
        .reservation-expand-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 4px;
        }
        
        .reservation-expand-btn.expanded {
            transform: rotate(180deg);
        }

        .reservation-id {
            font-size: 11px;
            color: var(--text-light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .reservation-date {
            font-size: 13px;
            color: var(--text-medium);
            font-weight: 500;
        }

        .reservation-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .reservation-status.pending {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #92400e;
            border: 2px solid #fbbf24;
        }

        .reservation-status.confirmed {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            color: #065f46;
            border: 2px solid #10b981;
        }

        .reservation-status.completed {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            border: 2px solid #3b82f6;
        }

        .reservation-status.cancelled {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            color: #991b1b;
            border: 2px solid #ef4444;
        }

        .reservation-status-dropdown {
            padding: 6px 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .reservation-status-dropdown:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

        .reservation-actions {
            display: flex;
            gap: 8px;
        }

        .reservation-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .reservation-btn.edit {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            border: 2px solid #3b82f6;
        }

        .reservation-btn.edit:hover {
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
            transform: translateY(-2px);
        }

        .reservation-btn.delete {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            color: #991b1b;
            border: 2px solid #ef4444;
        }

        .reservation-btn.delete:hover {
            background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
            transform: translateY(-2px);
        }

        .reservation-btn.save {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            color: #065f46;
            border: 2px solid #10b981;
        }

        .reservation-btn.save:hover {
            background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
            transform: translateY(-2px);
        }

        .reservation-card-body {
            padding: 16px;
            display: none;
            border-top: 1px solid #f1f5f9;
        }
        
        .reservation-card-body.expanded {
            display: block;
        }
        
        .reservation-sections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
        }

        .reservation-section {
            display: flex;
            flex-direction: column;
            gap: 8px;
            background: #f8fafc;
            padding: 12px;
            border-radius: 8px;
        }

        .reservation-section-title {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .reservation-info-row {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 8px;
            align-items: center;
            padding: 4px 0;
        }

        .reservation-info-label {
            font-size: 11px;
            color: var(--text-light);
            font-weight: 600;
        }

        .reservation-info-value {
            font-size: 13px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .reservation-info-value strong {
            font-weight: 700;
        }

        .reservation-field-inline {
            padding: 8px 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 13px;
            background: white;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            width: 100%;
        }

        .reservation-field-inline:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

        .reservation-field-inline::placeholder {
            color: #cbd5e1;
        }

        .reservation-select-inline {
            padding: 8px 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 13px;
            background: white;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
        }

        .reservation-select-inline:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

        .reservation-addon-chip {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-right: 8px;
            margin-bottom: 4px;
            background: #e0f2fe;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .reservation-addon-remove-btn {
            background: #dc2626;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 2px 6px;
            cursor: pointer;
            font-size: 11px;
        }
        .reservation-addon-remove-btn:hover:not(:disabled) {
            background: #b91c1c;
        }
        .reservation-addon-remove-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        .reservation-addon-select {
            padding: 4px 8px;
            font-size: 12px;
            margin-left: 4px;
        }
        .reservation-addon-select:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        .reservation-addons-none {
            color: var(--text-light);
        }

        .car-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid #0ea5e9;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            color: #075985;
        }

        .no-reservations {
            text-align: center;
            padding: 80px 20px;
            color: var(--text-light);
            background: white;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .no-reservations-icon {
            font-size: 80px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .no-reservations h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--text-medium);
        }

        .no-reservations p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Reservation Details Modal */
        .reservation-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

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

        .reservation-modal-content {
            background: white;
            border-radius: 16px;
            width: 100%;
            max-width: 800px;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-lg);
        }

        .reservation-modal-header {
            padding: 24px;
            border-bottom: 2px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .reservation-modal-header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .reservation-modal-body {
            padding: 24px;
            flex: 1 1 auto;
            min-height: 0;
            overflow-y: auto;
        }

        .reservation-modal-footer {
            padding: 20px 24px;
            border-top: 2px solid #e2e8f0;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            flex-shrink: 0;
            background: #fafafa;
        }

        .reservation-form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
        }

        .reservation-form-full {
            grid-column: 1 / -1;
        }
        .edit-addon-row {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-bottom: 8px;
        }
        .edit-addon-row input[type="text"] {
            flex: 1;
            padding: 6px 10px;
        }
        .edit-addon-row input[type="number"] {
            width: 90px;
            padding: 6px 10px;
        }
        .edit-addon-row .remove-addon-btn {
            padding: 6px 10px;
            background: #fee2e2;
            color: #991b1b;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
        }

        /* Email Configuration Styles */
        .email-type-item {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
        }

        .email-type-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .email-type-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .email-type-actions {
            display: flex;
            gap: 8px;
        }

        .btn-small {
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-delete {
            background: #fee2e2;
            color: #dc2626;
        }

        .btn-delete:hover {
            background: #fecaca;
        }

        .email-config-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 12px;
        }

        .config-item {
            font-size: 12px;
        }

        .config-label {
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .config-value {
            color: var(--text-dark);
            font-weight: 500;
            word-break: break-all;
        }

        /* Email Actions in Reservation Modal */
        .email-actions-section {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
        }

        .email-actions-header {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .email-buttons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            margin-bottom: 16px;
        }

        .btn-email {
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .btn-email-confirmation {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            color: white;
        }

        .btn-email-confirmation:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .btn-email-cancellation {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            color: white;
        }

        .btn-email-cancellation:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        .btn-email-details {
            background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
            color: white;
        }

        .btn-email-details:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
        }

        .btn-email-receipt {
            background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
            color: white;
        }

        .btn-email-receipt:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
        }

        .schedule-email-section {
            border-top: 1px solid #e2e8f0;
            padding-top: 16px;
            margin-top: 16px;
        }

        .schedule-email-header {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .schedule-controls {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 10px;
            align-items: end;
        }

        .btn-schedule {
            background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
            color: white;
        }

        .btn-schedule:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        /* Scheduled Emails List */
        .scheduled-emails-list {
            margin-top: 16px;
        }

        .scheduled-email-item {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 3px;
            padding: 3px 6px;
            margin-bottom: 2px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 10px;
            line-height: 1.2;
        }

        .scheduled-email-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .scheduled-email-type {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .scheduled-email-time {
            font-size: 9px;
            color: var(--text-light);
        }

        .btn-cancel-schedule {
            padding: 2px 6px;
            background: #fee2e2;
            color: #dc2626;
            border: none;
            border-radius: 3px;
            font-size: 9px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-cancel-schedule:hover {
            background: #fecaca;
        }

        /* Confirmation Number Display */
        .confirmation-number {
            background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
            border: 2px solid #5eead4;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 20px;
            text-align: center;
        }

        .confirmation-number-label {
            font-size: 12px;
            font-weight: 600;
            color: #14b8a6;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .confirmation-number-value {
            font-size: 24px;
            font-weight: 800;
            color: #0f766e;
            font-family: 'Space Mono', monospace;
            letter-spacing: 2px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .reservation-card-body {
                grid-template-columns: 1fr;
            }

            .reservation-card-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .reservation-actions {
                width: 100%;
            }

            .reservation-btn {
                flex: 1;
                justify-content: center;
            }

            .stat-badge {
                min-width: 90px;
            }

            .reservations-header {
                flex-direction: column;
                align-items: stretch;
            }

            .reservations-header-actions {
                width: 100%;
            }

            .reservations-header-actions .export-excel-btn {
                width: 100%;
                justify-content: center;
            }

            .site-header {
                padding: 12px 20px;
                flex-direction: column;
                gap: 12px;
            }

            .logo-container img, .logo-placeholder {
                height: 50px;
                width: 150px;
            }

            .header-contact {
                gap: 16px;
            }

            .header-phone {
                font-size: 14px;
            }

            .hero {
                padding: 40px 20px 60px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero h1 .logo-drive {
                font-size: 36px;
            }

            .hero h1 .logo-x {
                font-size: 62px;
            }

            .hero-tagline {
                font-size: 18px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 6px 14px;
            }

            .hero-features {
                gap: 12px;
            }

            .hero-feature {
                padding: 8px 14px;
                font-size: 12px;
            }

            .cars-section {
                padding: 40px 20px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .section-title p {
                font-size: 15px;
            }

            /* Sticky WhatsApp Button - Mobile */
            .sticky-call-btn {
                bottom: 16px;
                right: 16px;
                padding: 14px 20px;
                font-size: 14px;
            }

            .sticky-call-btn .phone-icon {
                font-size: 20px;
            }

            .admin-sidebar {
                width: 100%;
                right: -100%;
            }

            .admin-toggle {
                padding: 12px 8px;
                font-size: 11px;
            }

            .cars-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .car-card {
                border-radius: 20px;
            }

            .car-cta {
                padding: 14px 24px;
                font-size: 15px;
            }

            .form-row, .form-row-3 {
                grid-template-columns: 1fr;
            }

            .booking-modal-content, .terms-modal-content {
                max-height: 95vh;
                border-radius: 16px;
            }

            .admin-tabs {
                /* Keep horizontal scroll on mobile */
                flex-wrap: nowrap;
            }

            .contact-section {
                padding: 40px 20px;
            }

            .contact-section h2 {
                font-size: 26px;
            }

            .contact-cards {
                flex-direction: column;
                gap: 16px;
            }

            .contact-card {
                min-width: unset;
                width: 100%;
            }

            .footer {
                padding: 20px;
            }

            .benefits-title, .faq-title {
                font-size: 32px;
            }

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

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

        /* Small phones */
        @media (max-width: 480px) {
            .site-header {
                padding: 10px 16px;
            }

            .logo-container img, .logo-placeholder {
                height: 45px;
                width: 135px;
            }

            .header-phone-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .hero {
                padding: 32px 16px 48px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero h1 .logo-drive {
                font-size: 28px;
            }

            .hero h1 .logo-x {
                font-size: 48px;
            }

            .hero-tagline {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .hero-features {
                flex-direction: column;
                align-items: center;
            }

            .hero-feature {
                width: 100%;
                justify-content: center;
            }

            .cars-section {
                padding: 32px 16px;
            }

            .section-title h2 {
                font-size: 24px;
            }

            .car-content {
                padding: 20px;
            }

            .car-name {
                font-size: 18px;
            }

            .car-subtitle {
                font-size: 12px;
            }

            .info-dropdown {
                max-width: calc(100vw - 60px);
                left: -10px;
                right: -10px;
            }

            .car-price-amount {
                font-size: 30px;
            }

            .booking-modal {
                padding: 12px;
            }

            .booking-modal-header {
                padding: 20px;
            }

            .booking-modal-header h2 {
                font-size: 20px;
            }

            .booking-form {
                padding: 20px;
            }

            .terms-modal-header {
                padding: 20px;
            }

            .terms-modal-body {
                padding: 20px;
            }
        }

        /* Touch-friendly tap targets */
        @media (hover: none) and (pointer: coarse) {
            .car-cta, .login-btn, .submit-booking-btn, .terms-accept-btn {
                min-height: 48px;
            }

            .form-group input, .form-group select, .form-group textarea {
                min-height: 48px;
                font-size: 16px; /* Prevents zoom on iOS */
            }

            .terms-checkbox label {
                padding: 12px 0;
            }

            .header-phone {
                padding: 8px 12px;
                background: rgba(45, 127, 249, 0.1);
                border-radius: 8px;
            }
        }

        /* Hidden file input */
        .hidden-input {
            display: none;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 5%;
            background: white;
        }

        .reviews-section.hidden {
            display: none;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .reviews-header h2 {
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .review-card {
            background: var(--gradient-card);
            padding: 32px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

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

        .review-header {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            align-items: center;
        }

        .review-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-blue);
        }

        .review-author h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .review-stars {
            color: #fbbf24;
            font-size: 14px;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
            font-style: italic;
        }

        /* Admin Notes Field */
        .admin-notes-section {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #f1f5f9;
        }

        .admin-notes-section h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .admin-notes-section textarea {
            width: 100%;
            min-height: 100px;
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 13px;
            font-family: 'Poppins', sans-serif;
            resize: vertical;
        }

        .admin-notes-section textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
        }

        /* Promo Code Section */
        .promo-code-section {
            background: #f0f9ff;
            border: 2px solid #0ea5e9;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 16px;
        }

        .promo-code-header {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .promo-code-input-group {
            display: flex;
            gap: 8px;
        }

        .promo-code-input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
        }

        .promo-code-input:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

        .apply-promo-btn {
            padding: 12px 24px;
            background: var(--gradient-btn);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .apply-promo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
        }

        .promo-message {
            margin-top: 12px;
            padding: 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            display: none;
        }

        .promo-message.success {
            display: block;
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #10b981;
        }

        .promo-message.error {
            display: block;
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #ef4444;
        }

        .discount-summary {
            margin-top: 12px;
            padding: 12px;
            background: white;
            border-radius: 8px;
            border: 2px solid #10b981;
        }

        .discount-summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 13px;
        }

        .discount-summary-row:last-child {
            margin-bottom: 0;
            padding-top: 8px;
            border-top: 2px solid #e2e8f0;
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-green);
        }

        .discount-amount {
            color: var(--accent-green);
            font-weight: 700;
        }

        /* Referral Link Styles */
        .referral-link-box {
            background: #f0f9ff;
            border: 2px solid #0ea5e9;
            border-radius: 12px;
            padding: 16px;
            margin-top: 12px;
        }

        .referral-link-header {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .referral-link-display {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .referral-link-input {
            flex: 1;
            padding: 10px 12px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 13px;
            font-family: 'Space Mono', monospace;
            color: var(--accent-blue);
            font-weight: 600;
        }

        .copy-link-btn {
            padding: 10px 20px;
            background: var(--gradient-btn);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .copy-link-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
        }

        .copy-link-btn.copied {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .referral-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #92400e;
            border: 2px solid #fbbf24;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }