/* assets/css/style.css */
/* Premium Self Drive Car Rental Stylesheet */

/* Custom Variables */
:root {
    --gold-primary: #d4a34b;
    --gold-hover: #b8863b;
    --gold-dark: #94662d;
    --luxury-black: #0b0b0c;
    --luxury-dark: #151518;
    --luxury-medium: #222227;
    --luxury-light: #2a2a30;
    --luxury-border: #33333b;
    --text-muted: #a1a1aa;
    --text-light: #f4f4f5;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--luxury-black);
}
::-webkit-scrollbar-thumb {
    background: var(--luxury-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Luxury Typography & Gradients */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
}

.text-gold-gradient {
    background: linear-gradient(135deg, #f7d070 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-luxury-black{
    background-color: rgb(18 19 22) !important;
}
.bg-gold-gradient {
    background: linear-gradient(135deg, #f7d070 0%, var(--gold-primary) 50%, var(--gold-hover) 100%);
}

.bg-gold-gradient-hover:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-hover) 50%, var(--gold-dark) 100%);
}

/* Glassmorphism Classes */
.glass-navbar {
    background-color: rgb(18 19 21);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-navbar.scrolled {
    background-color: rgba(11, 11, 12, 0.95);
    border-bottom: 1px solid rgba(212, 163, 75, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glass-card-dark {
    background-color: rgba(21, 21, 24, 0.65);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card-dark:hover {
    border-color: rgba(212, 163, 75, 0.25);
    box-shadow: 0 12px 40px 0 rgba(212, 163, 75, 0.08);
    transform: translateY(-5px);
}

.glass-card-light {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glass-card-light:hover {
    border-color: rgba(212, 163, 75, 0.3);
    box-shadow: 0 12px 40px 0 rgba(212, 163, 75, 0.1);
    transform: translateY(-5px);
}

/* Premium Hover Transitions */
.hover-gold-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-gold-glow:hover {
    box-shadow: 0 0 20px rgba(212, 163, 75, 0.45);
    transform: scale(1.02);
}

.hover-card-zoom {
    overflow: hidden;
}
.hover-card-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-card-zoom:hover img {
    transform: scale(1.08);
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg, #1f2025 25%, #2a2b30 50%, #1f2025 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

.skeleton-light {
    background: linear-gradient(90deg, #e4e4e7 25%, #f4f4f5 50%, #e4e4e7 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

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

/* Custom Swiper Controls */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold-primary) !important;
    background: rgba(11, 11, 12, 0.8);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    border: 1px solid rgba(212, 163, 75, 0.3);
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--gold-primary);
    color: var(--luxury-black) !important;
    box-shadow: 0 0 15px rgba(212, 163, 75, 0.4);
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary) !important;
    width: 24px !important;
    border-radius: 4px !important;
    transition: width 0.3s ease;
}

/* Floating Utility Buttons */
.floating-btn-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
}

.floating-whatsapp {
    background-color: #25d366;
}
.floating-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-call {
    background-color: var(--gold-primary);
}
.floating-call:hover {
    box-shadow: 0 6px 20px rgba(212, 163, 75, 0.4);
}

.floating-totop {
    background-color: var(--luxury-black);
    border: 1px solid var(--luxury-border);
    opacity: 0;
    visibility: hidden;
}

.floating-totop.show {
    opacity: 1;
    visibility: visible;
}

/* Custom Banner and Overlay */
.hero-overlay {
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.4) 0%, rgba(11, 11, 12, 0.95) 90%, rgba(11, 11, 12, 1) 100%);
}

.card-luxury {
    border-radius: 20px;
    overflow: hidden;
}

/* Premium Badges */
.badge-gold {
    background-color: rgba(212, 163, 75, 0.1);
    color: var(--gold-primary);
    border: 1px solid rgba(212, 163, 75, 0.25);
    font-weight: 600;
}

/* Custom inputs for search widget */
.search-widget-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.search-widget-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 163, 75, 0.2);
    outline: none;
}
.btn:hover{
        color: gold;
}