:root {
    --primary-gold: #C5A059;
    --primary-blue: #1e3c72;
    --secondary-blue: #2a5298;
    --dark-text: #1A1A1A;
    --light-text: #F8F9FA;
    --surface-color: #FFFFFF;
    --bg-light: #F8F9FA;
    --footer-bg: #000000;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; }
.font-serif { font-family: 'Playfair Display', serif; }

/* --- Colors & Backgrounds --- */
.text-gold { color: var(--primary-gold) !important; }
.text-blue { color: var(--primary-blue) !important; }

.bg-blue { background-color: var(--primary-blue) !important; }
.bg-gold { background-color: var(--primary-gold) !important; }
.bg-light-grey { background-color: var(--bg-light) !important; }
.bg-surface { background-color: var(--surface-color) !important; }
.bg-green { background-color: #28a745 !important; }

/* --- Buttons --- */
.btn-gold, .btn-blue {
    color: white;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-gold:hover, .btn-blue:hover {
    transform: translateY(-2px);
}

.btn-gold:hover {
    background-color: #b08d45;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.btn-blue:hover {
    background-color: var(--secondary-blue);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
}

.btn-outline-blue, .btn-outline-gold {
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-blue {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline-gold {
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

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

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

/* --- Components --- */
.shadow-gold { box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3); }

/* Navbar */
.navbar { transition: all 0.3s ease; }
.navbar-brand img { height: 50px; }
.nav-link { position: relative; transition: color 0.3s ease; }
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0;
    background-color: var(--primary-gold); transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Hero Section */
.hero-header {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    color: white; overflow: hidden;
}
.hero-video, .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-video { object-fit: cover; z-index: -2; }
.overlay { background: rgba(0, 0, 0, 0.5); z-index: -1; }
.hero-header h1, .hero-header p {
    color: white !important; text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Cards & Stats */
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-box {
    background-color: rgba(197, 160, 89, 0.1); color: var(--primary-gold);
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
}

.icon-box-lg {
    width: 80px;
    height: 80px;
}

.stat-card {
    background-color: white; padding: 1.5rem; border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px); box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.stat-card.primary { background-color: var(--primary-blue); color: white; }
.stat-card.primary p { color: rgba(255, 255, 255, 0.8) !important; }
.stat-card.primary h3 { color: white !important; }

/* Footer */
footer { background-color: var(--footer-bg); color: white; }
.hover-white:hover { color: white !important; }

/* Booking Stepper */
.step-circle { width: 3rem; height: 3rem; font-weight: bold; transition: all 0.3s ease; }
.progress-container-overlay { top: 1.5rem !important; z-index: 0; }
.progress-bar-animated { transition: width 0.5s ease; }
.progress-thin { height: 3px; }
.progress-width-0 { width: 0%; }

.map-container {
    height: 350px;
    width: 100%;
    z-index: 1;
}

.vehicle-card-label { cursor: pointer; }
.vehicle-card-image {
    height: 200px;
    object-fit: cover;
}

.textarea-md { height: 100px; }

/* Admin Layout */
.admin-sidebar {
    width: 280px; height: 100vh; position: fixed; top: 0; left: 0;
    z-index: 1000; overflow-y: auto;
}
.main-content { margin-left: 280px; min-height: 100vh; background-color: var(--bg-light); }

@media (max-width: 768px) {
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .admin-sidebar.show { transform: translateX(0); }
    .main-content { margin-left: 0; }
}

/* Utilities */
.letter-spacing-2 { letter-spacing: 2px; }
.letter-spacing-1 { letter-spacing: 1px; }
.text-xs { font-size: 0.75rem !important; }
.pt-navbar { padding-top: 80px; }
.opacity-10 { opacity: 0.1; }
.hover-scale:hover { transform: scale(1.05); }
.trip-meta-text { font-size: 0.9rem; }
.dot-separator { font-size: 0.5rem; }
.search-max-400 { max-width: 400px; }
.avatar-25, .avatar-35, .avatar-40, .avatar-80 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-25 {
    width: 25px;
    height: 25px;
}
.avatar-35 {
    width: 35px;
    height: 35px;
}
.avatar-40 {
    width: 40px;
    height: 40px;
}
.avatar-80 {
    width: 80px;
    height: 80px;
}
.text-08rem { font-size: 0.8rem; }
.auth-main {
    min-height: calc(100vh - 76px);
}

/* Animations */
.animate-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transform: translateY(20px); }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
