/**
 * FUTURE MOTORS - Premium Luxury Style
 * High-end Car Rental Experience
 */

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

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;

    --primary: #0a0a0a;
    --accent: #3b82f6;

    --font-sans: 'Inter', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

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

    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   Reset & Base
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

/* =====================================================
   Layout
   ===================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

/* =====================================================
   Navigation - Premium Style
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    background: transparent;
    transition: var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 28px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-logo-text {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1;
}

.navbar-logo-text strong {
    font-weight: 800;
}

.navbar-logo-accent {
    display: block;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
    margin-top: 6px;
    border-radius: 2px;
}

.navbar.scrolled .navbar-brand img {
    filter: invert(1);
}

.navbar.scrolled .navbar-logo-text {
    color: var(--gray-900);
}

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

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.nav-link:hover,
.navbar.scrolled .nav-link:hover {
    color: var(--gray-900);
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.navbar-toggler span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .navbar-toggler span {
    background: var(--gray-900);
}

/* Site Header - Premium Fixed Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: var(--black);
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    position: relative;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1;
}

.logo-text strong {
    font-weight: 800;
}

.logo-accent {
    display: block;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
    margin-top: 6px;
    border-radius: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--white);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav .btn-login {
    background: var(--white);
    color: var(--black);
    padding: 0.5rem 1.25rem;
    font-weight: 600;
}

.header-nav .btn-login:hover {
    background: var(--gray-100);
}

.header-nav .btn-login::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Page Navbar (for inner pages) */
.page-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}

.page-navbar .logo img {
    height: 24px;
}

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

.page-navbar .nav-menu a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: var(--transition);
}

.page-navbar .nav-menu a:hover,
.page-navbar .nav-menu a.active {
    color: var(--white);
}

/* =====================================================
   Hero Section - Cinematic Style
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 85%,
        rgba(248, 246, 243, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title strong {
    font-weight: 600;
}

.hero-description {
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* =====================================================
   Buttons - Refined Style
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-dark {
    background: var(--gray-900);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--black);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

/* btn-outline-primary for detail pages */
.btn-outline-primary {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-900);
    font-weight: 600;
}

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

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
}

/* Main Content - for pages using header.php */
.main-content {
    padding-top: 72px;
    min-height: calc(100vh - 72px);
}

/* =====================================================
   Section Headers
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
}

/* =====================================================
   Services Section
   ===================================================== */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f6f3 0%, #f5f3f0 100%);
}

.services-section .section-header {
    margin-bottom: 3rem;
}

.services-section .section-label {
    color: #b8860b;
}

.services-section .section-title {
    color: var(--gray-900);
}

.services-section .section-subtitle {
    color: var(--gray-500);
}

/* Premium Service Cards */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card-premium {
    position: relative;
    display: block;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-premium:hover .service-card-bg img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 2rem;
    color: var(--white);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.service-card-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-card-features span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-card-features i {
    color: #d4af37;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #d4af37;
    transition: var(--transition);
}

.service-card-premium:hover .service-card-link {
    gap: 0.75rem;
}

/* Old service card styles (kept for compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-slow);
}

.service-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-900);
    background: var(--gray-50);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-900);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.service-link i {
    transition: var(--transition);
}

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

.service-link:hover i {
    transform: translateX(4px);
}

/* =====================================================
   Vehicles Section Premium
   ===================================================== */
.vehicles-section-premium {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f5f3f0 0%, #fafafa 40%, var(--white) 70%, #f8f8f8 100%);
    position: relative;
}

.vehicles-section-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.03));
    pointer-events: none;
}

.vehicles-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.vehicles-header-left {

}

.section-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.vehicles-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.vehicles-filter-premium {
    display: flex;
    gap: 0.75rem;
}

.filter-select-premium {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    min-width: 140px;
    transition: var(--transition);
}

.filter-select-premium:hover {
    border-color: var(--gray-300);
}

.filter-select-premium:focus {
    outline: none;
    border-color: var(--gray-900);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gray-900);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--black);
}

.btn-view-all i {
    transition: var(--transition);
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* Premium Vehicle Grid */
.vehicles-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Premium Vehicle Card */
.vehicle-card-premium {
    display: block;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-slow);
}

.vehicle-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vehicle-card-image {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: var(--gray-100);
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transition: transform 0.6s ease;
}

.vehicle-card-premium:hover .vehicle-card-image img {
    transform: scale(1.08);
}

.vehicle-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.vehicle-card-badge {
    padding: 0.5rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border-radius: 6px;
}

.vehicle-card-badge.badge-gold {
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 100%);
    color: var(--black);
}

.vehicle-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.vehicle-card-premium:hover .vehicle-card-hover {
    opacity: 1;
}

.vehicle-card-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    border-radius: 8px;
    transform: translateY(10px);
    transition: var(--transition);
}

.vehicle-card-premium:hover .vehicle-card-view {
    transform: translateY(0);
}

.vehicle-card-body {
    padding: 1.5rem;
}

.vehicle-card-brand {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.vehicle-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.vehicle-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.vehicle-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.vehicle-card-meta i {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.vehicle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.vehicle-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-period {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.vehicle-card-monthly {
    font-size: 0.75rem;
    color: var(--gray-500);
    background: var(--gray-50);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
}

/* Old Vehicles Section (kept for compatibility) */
.vehicles-section {
    padding: 6rem 0;
}

.vehicles-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.vehicles-filter {
    display: flex;
    gap: 0.75rem;
}

.filter-select {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: 0;
    background: var(--white);
    cursor: pointer;
    min-width: 140px;
    transition: var(--transition);
}

.filter-select:hover {
    border-color: var(--gray-300);
}

.filter-select:focus {
    outline: none;
    border-color: var(--gray-900);
}

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

/* =====================================================
   Vehicle Card - Premium Style
   ===================================================== */
.vehicle-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition-slow);
}

.vehicle-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-xl);
}

.vehicle-image,
.vehicle-card-image {
    position: relative;
    aspect-ratio: 16/11;
    background: var(--gray-100);
    overflow: hidden;
}

.vehicle-image img,
.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-image img,
.vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.05);
}

.vehicle-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-300);
}

.vehicle-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.vehicle-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gray-900);
    color: var(--white);
}

.vehicle-content,
.vehicle-card-body {
    padding: 1.5rem;
}

.vehicle-brand,
.vehicle-card-brand {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.vehicle-name,
.vehicle-card-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.vehicle-specs,
.vehicle-card-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vehicle-price,
.vehicle-card-price {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.vehicle-price-unit,
.vehicle-card-price small {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray-400);
}

/* =====================================================
   CTA Section Premium
   ===================================================== */
.cta-section-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe4 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.3), transparent);
}

.cta-section-premium::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-text {
    flex: 1;
}

.cta-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b8860b;
    margin-bottom: 1rem;
}

.cta-title-premium {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-description-premium {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-phone-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cta-phone-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--white);
}

.cta-phone-info {
    display: flex;
    flex-direction: column;
}

.cta-phone-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.cta-phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: 0.02em;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gray-900);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

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

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    border-color: var(--gray-900);
    color: var(--gray-900);
}

/* Old CTA Section (kept for compatibility) */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.cta-phone {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    padding: 5rem 0 2.5rem;
    background: var(--black);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 24px;
    margin-bottom: 1.25rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1;
}

.footer-logo-text strong {
    font-weight: 800;
}

.footer-logo-accent {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
    margin-top: 8px;
    border-radius: 1px;
}

.footer-description {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer-title {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item i {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-800);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.footer-social a:hover {
    color: var(--white);
}

/* =====================================================
   Forms
   ===================================================== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    border-radius: 0;
    transition: var(--transition);
    background: var(--white);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--gray-300);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gray-900);
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-select-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
}

/* =====================================================
   Cards & Tables
   ===================================================== */
.card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.card-body {
    padding: 1.5rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.table th {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    background: var(--gray-50);
}

.table td {
    font-size: 0.875rem;
    color: var(--gray-700);
}

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

/* =====================================================
   Badges & Status
   ===================================================== */
.badge {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-success { background: #ecfdf5; color: #059669; }
.badge-warning { background: #fffbeb; color: #d97706; }
.badge-danger { background: #fef2f2; color: #dc2626; }
.badge-info { background: #eff6ff; color: #2563eb; }

/* =====================================================
   Alerts
   ===================================================== */
.alert {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    border: 1px solid;
}

.alert-success { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }
.alert-danger { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
.alert-warning { background: #fffbeb; color: #d97706; border-color: #fde68a; }
.alert-info { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }

/* =====================================================
   Admin Styles
   ===================================================== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--gray-900);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

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

.admin-sidebar-brand img {
    height: 24px;
}

.admin-sidebar-nav {
    padding: 0 0.75rem;
}

.admin-nav-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: 0.75rem;
    margin-top: 0.75rem;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    border-radius: 0.375rem;
    transition: var(--transition);
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: var(--gray-800);
    color: var(--white);
}

.admin-nav-link i {
    font-size: 1.125rem;
}

.admin-nav-divider {
    height: 1px;
    background: var(--gray-800);
    margin: 0.75rem 0;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 2rem;
    background: var(--gray-50);
    min-height: 100vh;
}

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

.admin-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* =====================================================
   Page Content
   ===================================================== */
.page-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

/* =====================================================
   Vehicle Detail Page Styles
   ===================================================== */
/* Detail Hero */
.detail-hero {
    background: var(--gray-900);
    padding: 90px 0 30px;
}

.detail-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumb-hero {
    font-size: 0.8125rem;
}

.breadcrumb-hero a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-hero a:hover {
    color: var(--white);
}

.breadcrumb-hero span {
    color: var(--gray-600);
    margin: 0 10px;
}

.breadcrumb-hero span:last-child {
    color: var(--white);
    margin: 0;
    margin-left: 10px;
}

.detail-section {
    padding: 40px 0 80px;
}

/* Detail Image */
.detail-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--gray-100);
}

.detail-main-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.detail-image-placeholder {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
}

.detail-image-placeholder i {
    font-size: 80px;
    color: var(--gray-300);
}

.detail-image-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.detail-image-badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--black);
    color: var(--white);
}

.detail-thumbnails {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.detail-thumbnail {
    flex: 1;
    max-width: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.detail-thumbnail:hover {
    border-color: var(--gray-900);
}

.detail-thumbnail img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Detail Features */
.detail-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 8px;
}

.detail-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    font-size: 1.125rem;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.detail-feature-text {
    display: flex;
    flex-direction: column;
}

.detail-feature-text strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.detail-feature-text span {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.8125rem;
}

.breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gray-900);
}

.breadcrumb .sep {
    color: var(--gray-300);
    margin: 0 12px;
}

.breadcrumb .current {
    color: var(--gray-900);
    font-weight: 500;
}

.vehicle-brand-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.vehicle-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.vehicle-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.vehicle-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-meta i {
    color: var(--gray-400);
}

/* Price Card */
.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

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

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

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

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 20px 0;
}

.price-details {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail-value {
    color: var(--gray-700);
    font-weight: 500;
}

.price-actions {
    display: grid;
    gap: 12px;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-900);
    font-weight: 600;
}

.btn-outline-dark:hover {
    background: var(--gray-900);
    color: var(--white);
}

/* Service Tags */
.service-tags {
    margin-bottom: 24px;
}

.service-tags-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    display: inline-block;
    padding: 10px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--gray-900);
    color: var(--white);
    letter-spacing: 0.01em;
}

/* Specs Card */
.specs-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.specs-card-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.specs-card-header h6 {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.specs-card-body {
    padding: 8px 24px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--gray-100);
}

.specs-table td {
    padding: 14px 0;
    font-size: 0.875rem;
}

.spec-label {
    color: var(--gray-500);
    width: 40%;
}

.spec-value {
    color: var(--gray-900);
    font-weight: 500;
}

/* Description Section */
.description-section {
    margin-top: 60px;
}

.description-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.description-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 28px;
    line-height: 1.8;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* Similar Section */
.similar-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.similar-header {
    margin-bottom: 40px;
}

/* =====================================================
   Vehicles List Page Styles
   ===================================================== */

/* Page Hero */
.page-hero {
    background: var(--gray-900);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 16px;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-hero-desc {
    font-size: 1rem;
    color: var(--gray-400);
    margin: 0;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.filter-tab {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    transition: var(--transition);
}

.filter-tab:hover {
    color: var(--gray-900);
    border-color: var(--gray-300);
}

.filter-tab.active {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

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

.vehicles-list-section {
    padding: 0 0 80px;
}

.vehicles-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.vehicles-list-info {

}

.vehicles-list-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.vehicles-list-count {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: 0;
}

.vehicles-list-filter {
    display: flex;
    gap: 12px;
}

.vehicle-card-link {
    text-decoration: none;
    display: block;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-300);
    display: block;
    margin-bottom: 20px;
}

.empty-state p {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Row and Col improvements */
.row.g-5 {
    margin: -1.25rem;
}

.row.g-5 > * {
    padding: 1.25rem;
}

.col-lg-7 {
    width: 58.333%;
    padding: 0.75rem;
}

.col-lg-5 {
    width: 41.667%;
    padding: 0.75rem;
}

.col-3 {
    width: 25%;
    padding: 4px;
}

.row.g-2 {
    margin: -4px;
    display: flex;
    flex-wrap: wrap;
}

/* =====================================================
   Utilities
   ===================================================== */
.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-3 { margin-top: 0.75rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.text-decoration-none { text-decoration: none; }
.h3 { font-size: 1.25rem; font-weight: 600; }

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.75rem;
}

.col-md-6, .col-lg-4 {
    padding: 0.75rem;
}

.col-md-6 { width: 50%; }
.col-lg-4 { width: 33.333%; }

.g-4 { margin: -0.75rem; }
.g-4 > * { padding: 0.75rem; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
    .services-grid,
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .col-lg-4 { width: 50%; }
    .col-lg-7 { width: 100%; }
    .col-lg-5 { width: 100%; }
}

@media (max-width: 768px) {
    .navbar,
    .page-navbar {
        padding: 0 1.5rem;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-nav li {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link {
        color: var(--gray-700);
        padding: 1rem 0;
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .page-navbar .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .section {
        padding: 3rem 0;
    }

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

    .service-card-premium {
        height: 320px;
    }

    .vehicles-header,
    .vehicles-header-premium {
        flex-direction: column;
        align-items: flex-start;
    }

    .vehicles-header-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .vehicles-filter-premium {
        width: 100%;
    }

    .filter-select-premium {
        flex: 1;
    }

    .btn-view-all {
        justify-content: center;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 90px 20px 40px;
    }

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

    /* Filter Tabs Mobile */
    .filter-tabs {
        overflow-x: auto;
        padding-bottom: 16px;
    }

    .filter-tab {
        white-space: nowrap;
    }

    /* Detail Features Mobile */
    .detail-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .col-md-6, .col-lg-4 { width: 100%; }

    /* Site Header Mobile */
    .header-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-800);
    }

    .header-nav .btn-login {
        margin-top: 1rem;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Vehicle Detail Mobile */
    .vehicle-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .vehicle-title {
        font-size: 1.5rem;
    }

    /* CTA Section Mobile */
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-contact {
        width: 100%;
    }

    .cta-phone-box {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }

    .admin-sidebar {
        transform: translateX(-100%);
    }

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

/* =====================================================
   Auth Pages (Login/Register)
   ===================================================== */
.auth-page {
    min-height: 100vh;
    background: var(--gray-50);
}

.auth-container {
    display: flex;
    min-height: 100vh;
}

.auth-image {
    flex: 1;
    position: relative;
    display: none;
}

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

.auth-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.auth-image-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    color: var(--white);
}

.auth-logo {
    text-decoration: none;
}

.auth-logo-text {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1;
}

.auth-logo-text strong {
    font-weight: 800;
}

.auth-logo-accent {
    display: block;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
    margin-top: 8px;
    border-radius: 2px;
}

.auth-image-text {
    max-width: 400px;
}

.auth-image-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.auth-image-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.auth-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--white);
}

.auth-form-wrapper {
    width: 100%;
    max-width: 400px;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-form-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.auth-form-header p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.auth-alert i {
    font-size: 1.125rem;
}

.auth-alert-danger {
    background: #fef2f2;
    color: #dc2626;
}

.auth-alert-info {
    background: #eff6ff;
    color: #2563eb;
}

.auth-alert-success {
    background: #ecfdf5;
    color: #059669;
}

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

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

.auth-form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.auth-form-group label .required {
    color: #dc2626;
    margin-left: 2px;
}

.auth-input-wrapper {
    position: relative;
}

.auth-input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.125rem;
    color: var(--gray-400);
}

.auth-input-wrapper input,
.auth-input-wrapper select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
}

.auth-input-wrapper input:hover,
.auth-input-wrapper select:hover {
    border-color: var(--gray-300);
}

.auth-input-wrapper input:focus,
.auth-input-wrapper select:focus {
    outline: none;
    border-color: var(--gray-900);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.auth-input-wrapper input::placeholder {
    color: var(--gray-400);
}

.auth-form-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.auth-btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gray-900);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

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

.auth-btn-primary i {
    transition: var(--transition);
}

.auth-btn-primary:hover i {
    transform: translateX(4px);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

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

.auth-divider span {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.auth-btn-secondary:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.auth-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.auth-footer p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.auth-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
}

.auth-phone:hover {
    color: #b8860b;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
}

.auth-links a:hover {
    color: var(--gray-900);
}

.auth-optional {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.75rem;
}

.auth-form-group label .required {
    color: #dc2626;
}

.auth-terms {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.auth-terms a {
    color: var(--gray-700);
    text-decoration: underline;
}

.auth-terms a:hover {
    color: var(--gray-900);
}

/* Auth Page Desktop */
@media (min-width: 1024px) {
    .auth-image {
        display: block;
    }

    .auth-form-section {
        flex: 0 0 50%;
        max-width: 600px;
    }
}

@media (min-width: 1280px) {
    .auth-form-section {
        flex: 0 0 45%;
    }
}

/* =====================================================
   Legal Pages Premium (Terms, Privacy, FAQ)
   ===================================================== */
.legal-page {
    min-height: 100vh;
    background: #fafafa;
}

/* Legal Header */
.legal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: var(--black);
}

.legal-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.legal-logo-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
}

.legal-logo-text strong {
    font-weight: 800;
}

.legal-logo-accent {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    margin-top: 6px;
}

.legal-header-nav {
    display: flex;
    gap: 2rem;
}

.legal-header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.legal-header-nav a:hover {
    color: var(--white);
}

/* Legal Hero Premium */
.legal-hero-premium {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.legal-hero-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
}

.legal-hero-premium h1 {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.legal-hero-premium p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

/* Legal Tabs */
.legal-tabs-wrapper {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 72px;
    z-index: 100;
}

.legal-tabs {
    display: flex;
    gap: 0;
}

.legal-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.legal-tab i {
    font-size: 1.125rem;
}

.legal-tab:hover {
    color: var(--gray-700);
    background: var(--gray-50);
}

.legal-tab.active {
    color: var(--gray-900);
    border-bottom-color: #b8860b;
    background: var(--white);
}

/* Legal Content Premium */
.legal-content-premium {
    padding: 3rem 0 5rem;
}

.legal-content-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
}

/* Legal Sidebar */
.legal-sidebar {
    position: relative;
}

.legal-sidebar-sticky {
    position: sticky;
    top: 140px;
}

.legal-sidebar h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.legal-toc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal-toc a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    border-left: 2px solid transparent;
}

.legal-toc a:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}

.legal-toc a.active {
    color: var(--gray-900);
    background: var(--white);
    border-left-color: #b8860b;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.legal-sidebar-info {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.legal-sidebar-info p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
}

.legal-sidebar-info p strong {
    color: var(--gray-700);
}

/* Legal Main Content */
.legal-main {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.legal-article {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.legal-article:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-article h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.article-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.375rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #b8860b;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(212,175,55,0.1));
    border-radius: 4px;
}

.legal-article > p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Legal List */
.legal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-list-item {
    display: flex;
    gap: 1rem;
}

.legal-list-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-100);
    border-radius: 50%;
}

.legal-list-item p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.legal-list-item p strong {
    color: var(--gray-800);
}

.legal-sub-list {
    margin: 0.75rem 0 0 0;
    padding-left: 1.25rem;
    list-style: none;
}

.legal-sub-list li {
    position: relative;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.legal-sub-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 50%;
}

/* Legal Service Box */
.legal-service-box {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.legal-service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.legal-service-header i {
    font-size: 1.25rem;
    color: #b8860b;
}

.legal-service-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.legal-service-box .legal-sub-list {
    margin: 0;
}

/* Legal Fee Table */
.legal-fee-table {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.legal-fee-row {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.legal-fee-row:last-child {
    border-bottom: none;
}

.legal-fee-period {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.legal-fee-rate {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.legal-fee-rate.free {
    color: #059669;
}

.legal-fee-rate.warning {
    color: #dc2626;
}

/* Legal Footer Notice */
.legal-footer-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 10px;
}

.legal-footer-notice p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.legal-footer-notice p strong {
    color: var(--gray-800);
}

/* Legal Page Footer */
.legal-footer {
    background: var(--gray-900);
    padding: 3rem 0;
}

.legal-footer-inner {
    text-align: center;
}

.legal-footer-brand {
    margin-bottom: 1.5rem;
}

.legal-footer-brand .legal-logo-text {
    font-size: 1.125rem;
}

.legal-footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.legal-footer-links a {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.legal-footer-links a:hover {
    color: var(--white);
}

.legal-footer-copyright {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0;
}

/* FAQ Premium Styles */
.faq-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.faq-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.faq-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.faq-search-box {
    max-width: 500px;
    margin: 2rem auto 0;
    position: relative;
}

.faq-search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 0.9375rem;
    border: none;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.faq-search-box input::placeholder {
    color: rgba(255,255,255,0.5);
}

.faq-search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.faq-category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(212,175,55,0.1));
    border-radius: 12px;
    font-size: 1.25rem;
    color: #b8860b;
}

.faq-category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item-premium {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.faq-item-premium:hover {
    border-color: var(--gray-200);
}

.faq-item-premium.open {
    border-color: #b8860b;
    box-shadow: 0 4px 12px rgba(184,134,11,0.1);
}

.faq-question-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-800);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.faq-question-premium:hover {
    background: var(--gray-50);
}

.faq-question-premium i {
    font-size: 1rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.faq-item-premium.open .faq-question-premium {
    background: rgba(184,134,11,0.05);
    color: #8b6914;
}

.faq-item-premium.open .faq-question-premium i {
    transform: rotate(180deg);
    color: #b8860b;
}

.faq-answer-premium {
    display: none;
    padding: 1rem 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
    background: var(--gray-50);
}

.faq-item-premium.open .faq-answer-premium {
    display: block;
}

.faq-answer-premium p {
    margin: 0 0 0.75rem;
}

.faq-answer-premium p:last-child {
    margin-bottom: 0;
}

.faq-answer-premium ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.faq-answer-premium li {
    margin-bottom: 0.375rem;
}

/* Company Info Card */
.faq-company-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 2rem;
    color: var(--white);
}

.faq-company-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-company-card h3 i {
    color: #d4af37;
}

.faq-company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.faq-company-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.faq-company-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.faq-company-value {
    font-size: 0.9375rem;
    color: var(--white);
}

/* =====================================================
   Legal Pages - Core Styles
   ===================================================== */

/* Legal Page Body */
.legal-page {
    background: #fff;
}

/* Legal Header */
.legal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e8e4dc;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.legal-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.legal-logo-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: #111;
    letter-spacing: 0.05em;
}

.legal-logo-text strong {
    font-weight: 800;
}

.legal-logo-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #b8860b 0%, #d4af37 100%);
    margin-top: 4px;
    border-radius: 2px;
}

.legal-header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.legal-header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-header-nav a:hover {
    color: #b8860b;
}

/* Legal Hero */
.legal-hero-premium {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: 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.3'%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");
}

.legal-hero-content {
    position: relative;
    text-align: center;
}

.legal-hero-label {
    display: inline-block;
    background: rgba(184, 134, 11, 0.2);
    color: #d4af37;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.legal-hero-premium h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.legal-hero-premium p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Legal Tabs */
.legal-tabs-wrapper {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e8e4dc;
}

.legal-tabs {
    display: flex;
    gap: 0;
}

.legal-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.legal-tab i {
    font-size: 1rem;
}

.legal-tab:hover {
    color: #b8860b;
    background: rgba(184, 134, 11, 0.03);
}

.legal-tab.active {
    color: #b8860b;
    border-bottom-color: #b8860b;
}

/* Legal Content */
.legal-content-premium {
    padding: 3rem 0 5rem;
    background: #f8f7f4;
}

.legal-content-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
}

/* Legal Sidebar */
.legal-sidebar {
    position: relative;
}

.legal-sidebar-sticky {
    position: sticky;
    top: 140px;
}

.legal-sidebar h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.legal-toc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal-toc a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.legal-toc a:hover {
    color: #1a1a1a;
    background: rgba(0,0,0,0.03);
}

.legal-toc a.active {
    color: #b8860b;
    background: rgba(184, 134, 11, 0.08);
    border-left-color: #b8860b;
    font-weight: 500;
}

.legal-sidebar-info {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e4dc;
}

.legal-sidebar-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.legal-sidebar-info p strong {
    color: #1a1a1a;
}

/* Legal Main */
.legal-main {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Legal Article */
.legal-article {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #f0f0f0;
}

.legal-article:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-article h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.article-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.3rem 0.75rem;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
}

.legal-article h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
}

.legal-article h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4a4a;
    margin: 1.25rem 0 0.5rem;
}

.legal-article p {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-article p:last-child {
    margin-bottom: 0;
}

/* Legal List */
.legal-list {
    margin: 1rem 0;
}

.legal-list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.legal-list-item:last-child {
    margin-bottom: 0;
}

.legal-list-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50%;
}

.legal-list-item p {
    margin: 0;
    padding-top: 0.2rem;
}

.legal-list-item > div {
    flex: 1;
}

.legal-list-item > div > p:first-child {
    margin-bottom: 0.75rem;
}

/* Legal Footer */
.legal-footer {
    background: #1a1a1a;
    padding: 3rem 0;
}

.legal-footer-inner {
    text-align: center;
}

.legal-footer-brand {
    margin-bottom: 1.5rem;
}

.legal-footer .legal-logo-text {
    color: #fff;
}

.legal-footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.legal-footer-links a {
    font-size: 0.875rem;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-footer-links a:hover {
    color: #d4af37;
}

.legal-footer-copyright {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Legal Footer Notice */
.legal-footer-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f7f4;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
}

.legal-footer-notice p {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 0.5rem;
}

.legal-footer-notice p:last-child {
    margin-bottom: 0;
}

.legal-footer-notice p strong {
    color: #1a1a1a;
}

/* Legal Pages Responsive */
@media (max-width: 1024px) {
    .legal-content-grid {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .legal-header-nav {
        display: none;
    }

    .legal-hero-premium {
        padding: 110px 0 50px;
    }

    .legal-hero-premium h1 {
        font-size: 1.75rem;
    }

    .legal-tabs {
        flex-direction: column;
    }

    .legal-tab {
        justify-content: flex-start;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .legal-tab.active {
        border-bottom: none;
        border-left-color: #b8860b;
    }

    .legal-main {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .legal-article h2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .faq-categories {
        grid-template-columns: 1fr;
    }

    .faq-company-grid {
        grid-template-columns: 1fr;
    }

    .faq-hero-stats {
        gap: 1.5rem;
    }

    .faq-stat-num {
        font-size: 1.5rem;
    }
}

/* =====================================================
   Privacy Policy Premium Styles
   ===================================================== */

/* Intro Box */
.legal-intro-box {
    background: linear-gradient(135deg, #f8f7f4 0%, #fff 100%);
    border: 1px solid #e8e4dc;
    border-left: 4px solid #b8860b;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
}

.legal-intro-box p {
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
}

/* Premium Tables */
.legal-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.legal-table-premium {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-table-premium thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.legal-table-premium th {
    padding: 1rem 1.25rem;
    text-align: left;
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.legal-table-premium td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    color: #4a4a4a;
    vertical-align: top;
}

.legal-table-premium tbody tr:last-child td {
    border-bottom: none;
}

.legal-table-premium tbody tr:hover {
    background: #faf9f7;
}

.table-label {
    display: inline-block;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.period-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.period-badge.short {
    background: #6b7280;
}

.provider-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.provider-badge.kakao {
    background: linear-gradient(135deg, #fee500 0%, #f9d800 100%);
    color: #3c1e1e;
}

.phone-badge {
    display: inline-block;
    background: #e8f4e8;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.legal-table-premium a {
    color: #b8860b;
    font-weight: 500;
}

.legal-table-premium a:hover {
    color: #8b6914;
    text-decoration: underline;
}

/* Highlight Box */
.legal-highlight-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem 0 1.5rem;
}

.legal-highlight-box p {
    color: #0369a1;
    margin: 0;
    font-weight: 500;
}

/* Bullet List */
.legal-bullet-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.legal-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: #b8860b;
    border-radius: 50%;
}

/* Purpose Grid */
.legal-purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.legal-purpose-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.legal-purpose-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #b8860b;
}

.purpose-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.purpose-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.legal-purpose-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-consent {
    display: inline-block;
    background: #f0fdf4;
    color: #15803d;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.legal-purpose-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-purpose-card li {
    color: #666;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.legal-purpose-card li::before {
    content: '??;
    color: #b8860b;
    position: absolute;
    left: 0;
}

/* Destruction Methods */
.legal-destruction-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.destruction-method {
    background: #f8f7f4;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
}

.destruction-method i {
    font-size: 2rem;
    color: #b8860b;
    margin-bottom: 0.75rem;
}

.destruction-method h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.destruction-method p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Rights Grid */
.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.legal-right-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f7f4;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e8e4dc;
}

.legal-right-item i {
    font-size: 1.1rem;
    color: #b8860b;
}

.legal-right-item span {
    font-size: 0.875rem;
    color: #4a4a4a;
    font-weight: 500;
}

/* Security Grid */
.legal-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.security-card {
    background: linear-gradient(180deg, #fff 0%, #f8f7f4 100%);
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.security-icon i {
    font-size: 1.5rem;
    color: #d4af37;
}

.security-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.security-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Contact Card */
.legal-contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-card-header i {
    font-size: 1.25rem;
    color: #d4af37;
}

.contact-card-header h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.contact-card-body {
    padding: 1.5rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.contact-label {
    color: #999;
    font-size: 0.875rem;
}

.contact-value {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* =====================================================
   FAQ Premium Styles
   ===================================================== */

.faq-content-premium {
    padding: 3rem 0 5rem;
    background: #f8f7f4;
}

/* Category Navigation */
.faq-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn i {
    font-size: 1rem;
}

.faq-category-btn:hover {
    border-color: #b8860b;
    color: #b8860b;
}

.faq-category-btn.active {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    border-color: transparent;
    color: #fff;
}

/* FAQ List */
.faq-list-premium {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-premium {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.faq-question-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    position: relative;
}

.faq-q-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-category-tag {
    display: none;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
}

.faq-toggle-icon {
    font-size: 1.25rem;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item-premium.open .faq-toggle-icon {
    transform: rotate(180deg);
    color: #b8860b;
}

.faq-answer-premium {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item-premium.open .faq-answer-premium {
    display: flex;
    gap: 1rem;
}

.faq-a-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    color: #666;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-a-content {
    flex: 1;
    padding-top: 0.25rem;
}

.faq-a-content p {
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Cancel Table */
.faq-cancel-table {
    background: #f8f7f4;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.cancel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #e8e4dc;
}

.cancel-row:last-child {
    border-bottom: none;
}

.cancel-period {
    color: #4a4a4a;
    font-size: 0.9rem;
}

.cancel-fee {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.cancel-fee.free {
    color: #15803d;
}

.cancel-fee.warning {
    color: #dc2626;
}

/* FAQ Service Cards */
.faq-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.faq-service-card {
    background: #f8f7f4;
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    padding: 1.25rem;
}

.faq-service-card h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.faq-service-card h5 i {
    color: #b8860b;
}

.faq-service-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Steps */
.faq-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.faq-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f7f4;
    padding: 1rem;
    border-radius: 10px;
}

.step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-step p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
    padding-top: 0.2rem;
}

/* FAQ Notice Box */
.faq-notice-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
}

.faq-notice-box i {
    color: #0284c7;
    font-size: 1.1rem;
}

.faq-notice-box span {
    color: #0369a1;
    font-size: 0.875rem;
}

/* FAQ Warning Box */
.faq-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 1.25rem;
}

.faq-warning-box i {
    color: #dc2626;
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.faq-warning-box strong {
    display: block;
    color: #b91c1c;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.faq-warning-box p {
    color: #991b1b;
    font-size: 0.85rem;
    margin: 0;
}

/* FAQ Link Button */
.faq-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.faq-link-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

/* FAQ Contact Grid */
.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.faq-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f7f4;
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid #e8e4dc;
}

.faq-contact-item > i {
    font-size: 1.5rem;
    color: #b8860b;
}

.faq-contact-item .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.faq-contact-item .value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

.faq-contact-item small {
    color: #888;
    font-weight: 400;
}

/* FAQ Company Card */
.faq-company-card {
    max-width: 900px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    overflow: hidden;
}

.company-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.company-card-header i {
    font-size: 1.25rem;
    color: #d4af37;
}

.company-card-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.company-card-body {
    padding: 1.5rem;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.company-info-item {
    padding: 0.5rem 0;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.info-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.info-value.highlight {
    color: #d4af37;
    font-size: 1.25rem;
    font-weight: 700;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-category-nav {
        justify-content: flex-start;
        padding-bottom: 1rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .faq-category-btn {
        white-space: nowrap;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .faq-category-btn span {
        display: none;
    }

    .faq-category-btn i {
        font-size: 1.1rem;
    }

    .faq-question-premium {
        padding: 1rem 1.25rem;
    }

    .faq-q-text {
        font-size: 0.9rem;
    }

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

    .faq-contact-grid {
        grid-template-columns: 1fr;
    }

    .company-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .legal-destruction-methods,
    .legal-rights-grid {
        grid-template-columns: 1fr;
    }

    .legal-security-grid {
        grid-template-columns: 1fr;
    }

    .legal-purpose-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   ADMIN PANEL - Premium Dashboard Styles
   ===================================================== */

/* Admin Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f5f6fa;
}

/* Sidebar */
.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.admin-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-sidebar-brand img {
    height: 28px;
    filter: brightness(0) invert(1);
}

.admin-sidebar-nav {
    padding: 1rem 0;
}

.admin-nav-label {
    display: block;
    padding: 0.75rem 1.5rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.admin-nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.admin-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.admin-nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-left-color: #d4af37;
}

.admin-nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.75rem 1.5rem;
}

/* Main Content Area */
.admin-content {
    flex: 1;
    margin-left: 260px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Top Header */
.admin-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* Main Area */
.admin-main {
    flex: 1;
    padding: 2rem;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.025em;
}

.page-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0.25rem 0 0;
}

/* Content Header (Alt style) */
.content-header {
    margin-bottom: 1.5rem;
}

.content-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.25rem;
}

/* Stat Cards */
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.stat-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.stat-card-value.text-warning {
    color: #f59e0b !important;
}

.stat-card-change {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.stat-card-change a {
    color: #6b7280;
}

.stat-card-change a:hover {
    color: #b8860b;
}

/* Card Styles Override */
.admin-main .card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
}

.admin-main .card-header {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem 1.5rem;
}

.admin-main .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.admin-main .card-body {
    padding: 1.5rem;
}

/* Table Styles */
.admin-main .table {
    margin: 0;
}

.admin-main .table thead {
    background: #f9fafb;
}

.admin-main .table th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.admin-main .table td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
    color: #374151;
}

.admin-main .table tbody tr:hover {
    background: #f9fafb;
}

.admin-main .table tbody tr:last-child td {
    border-bottom: none;
}

/* List Group */
.admin-main .list-group-item {
    border: none;
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem 0;
}

.admin-main .list-group-item:last-child {
    border-bottom: none;
}

.admin-main .list-group-item-action:hover {
    background: #f9fafb;
}

/* Badge Overrides */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

.badge.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #fff !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%) !important;
}

.badge.bg-secondary {
    background: #6b7280 !important;
}

.badge.bg-dark {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
}

/* Button Styles */
.admin-main .btn-primary {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    border: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-main .btn-primary:hover {
    background: linear-gradient(135deg, #a67a09 0%, #c9a430 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.25);
}

.admin-main .btn-secondary {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.admin-main .btn-secondary:hover {
    background: #e5e7eb;
    color: #111827;
}

.admin-main .btn-outline-secondary {
    border-color: #d1d5db;
    color: #6b7280;
}

.admin-main .btn-outline-secondary:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.admin-main .btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
}

.admin-main .btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
}

/* Form Controls */
.admin-main .form-control,
.admin-main .form-select {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.admin-main .form-control:focus,
.admin-main .form-select:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.admin-main .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Pagination */
.admin-main .pagination {
    gap: 0.25rem;
}

.admin-main .page-link {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    color: #374151;
    font-weight: 500;
}

.admin-main .page-link:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

.admin-main .page-item.active .page-link {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    border-color: transparent;
    color: #fff;
}

/* Flash Messages */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
}

.alert-warning {
    background: #fffbeb;
    color: #92400e;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
}

/* Responsive Admin */
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
    }

    .admin-main {
        padding: 1.5rem 1rem;
    }

    .stat-card-value {
        font-size: 1.5rem;
    }
}

/* Admin Login Page */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 2rem;
}

.admin-login-card {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.admin-login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-login-logo img {
    height: 40px;
}

.admin-login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 0.5rem;
}

.admin-login-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

/* Admin code tag styling */
.admin-main code {
    background: #f3f4f6;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #e11d48;
}

/* Empty State */
.admin-main .text-center.py-4 {
    padding: 3rem !important;
    color: #9ca3af;
}

/* Row override for admin */
.admin-main .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Admin Login Form */
.admin-login-page .login-logo-text {
    display: block;
    font-size: 1.75rem;
    font-weight: 300;
    color: #111827;
    letter-spacing: 0.05em;
    text-align: center;
}

.admin-login-page .login-logo-text strong {
    font-weight: 800;
}

.admin-login-page .login-logo-accent {
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b8860b 0%, #d4af37 50%, #b8860b 100%);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.admin-login-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
}

.admin-login-form .input-group-text {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-right: none;
    color: #6b7280;
}

.admin-login-form .form-control {
    border: 1px solid #e5e7eb;
    border-left: none;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.admin-login-form .form-control:focus {
    border-color: #b8860b;
    box-shadow: none;
}

.admin-login-form .form-control:focus + .input-group-text,
.admin-login-form .input-group:focus-within .input-group-text {
    border-color: #b8860b;
}

.btn-login {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg, #a67a09 0%, #c9a430 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
    color: #fff;
}

.admin-login-footer {
    margin-top: 2rem;
    text-align: center;
}

.admin-login-footer .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.admin-login-footer .back-link:hover {
    color: #b8860b;
}

/* Admin Login Alert */
.admin-login-page .alert {
    border-radius: 10px;
    font-size: 0.9rem;
}

/* ============================================
   Vehicle Gallery Slider
   ============================================ */
.vehicle-gallery {
    position: relative;
    margin-bottom: 2rem;
}

/* Main Gallery */
.gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    background: #1a1a1a;
    aspect-ratio: 16/10;
}

.gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
    border-radius: 16px;
    z-index: 1;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(1.02);
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    gap: 1rem;
}

.gallery-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.gallery-placeholder span {
    font-size: 1rem;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 1;
}

.gallery-main:hover .gallery-nav {
    opacity: 1;
    background: rgba(0,0,0,0.8);
}

.gallery-nav:hover {
    background: rgba(184, 134, 11, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Gallery Counter */
.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* Gallery Badge */
.gallery-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.gallery-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Fullscreen Button */
.gallery-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 0;
}

.gallery-main:hover .gallery-fullscreen {
    opacity: 1;
}

.gallery-fullscreen:hover {
    background: rgba(184, 134, 11, 0.9);
    transform: scale(1.1);
}

/* Gallery Thumbnails */
.gallery-thumbs {
    position: relative;
    margin-top: 1rem;
    padding: 0 3rem;
}

.gallery-thumbs-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-thumbs-track::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 65px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}

.gallery-thumb.active::after,
.gallery-thumb:hover::after {
    opacity: 0;
}

.gallery-thumb.active {
    border-color: #b8860b;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail Navigation */
.thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thumb-nav:hover {
    background: #b8860b;
    border-color: #b8860b;
    color: #fff;
}

.thumb-prev {
    left: 0;
}

.thumb-next {
    right: 0;
}

/* ============================================
   Fullscreen Gallery Modal
   ============================================ */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 80px 100px;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-close:hover {
    background: #b8860b;
    transform: rotate(90deg);
}

/* Modal Slider */
.gallery-modal-slider {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-slide {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    max-width: 100%;
    max-height: 100%;
}

.gallery-modal-slide.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-slide img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Modal Navigation */
.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-nav:hover {
    background: #b8860b;
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
    left: 30px;
}

.gallery-modal-next {
    right: 30px;
}

/* Modal Counter */
.gallery-modal-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
    z-index: 10;
}

/* Modal Thumbnails */
.gallery-modal-thumbs {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
    max-width: 80%;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-modal-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-modal-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.gallery-modal-thumb:hover {
    opacity: 0.8;
}

.gallery-modal-thumb.active {
    border-color: #b8860b;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.gallery-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Responsive */
@media (max-width: 991.98px) {
    .gallery-main {
        border-radius: 12px;
        aspect-ratio: 16/11;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        opacity: 1;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-fullscreen {
        opacity: 1;
        width: 38px;
        height: 38px;
    }

    .gallery-thumbs {
        padding: 0;
    }

    .gallery-thumb {
        width: 70px;
        height: 50px;
    }

    .thumb-nav {
        display: none;
    }

    .gallery-modal-content {
        padding: 50px 20px 80px;
    }

    .gallery-modal-nav {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-slide img {
        max-height: 50vh;
    }

    .gallery-modal-thumb {
        width: 60px;
        height: 42px;
    }
}

@media (max-width: 575.98px) {
    .gallery-main {
        aspect-ratio: 4/3;
    }

    .gallery-badge span {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }

    .gallery-counter {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .gallery-thumb {
        width: 60px;
        height: 45px;
        border-radius: 6px;
    }
}
