/* ==========================================
   HERO ENHANCEMENT - Badge & Special Effects
   ========================================== */

/* Book Now badge removed - styles deleted per design change */

/* Hero Section Enhancements */
.hero-section {
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

/* CTA Buttons Enhancement */
.btn-primary-cta,
.btn-secondary-cta {
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary-cta::before,
.btn-secondary-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-cta:active::before,
.btn-secondary-cta:active::before {
    width: 300px;
    height: 300px;
}

/* Form Input Enhancements */
.form-group input:focus {
    background-color: rgba(255, 193, 7, 0.05);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group input::placeholder {
    color: rgba(26, 58, 82, 0.5);
}

/* Glow Effect for Special Elements */
.hero-section .hero-title {
    position: relative;
}

.hero-section .hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 193, 7, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Stats Counter Enhancement */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    animation: shimmerStat 2s infinite;
}

@keyframes shimmerStat {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Image Zoom Effect on Hover */
.hero-image-wrapper {
    overflow: hidden;
}

.hero-image-wrapper img,
.hero-car-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover .hero-image-wrapper img,
.hero-image:hover .hero-car-image {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1280px) {
    /* hero-badge removed */
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image-wrapper {
        min-height: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero-badge-arrow,
    .btn-primary-cta::before,
    .btn-secondary-cta::before,
    .hero-section .hero-title::after,
    .stat-item::before {
        animation: none;
    }
}

/* ===== Hero Slider Styles ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 300%; /* 3 slides */
}

.hero-slide {
    flex: 0 0 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
    pointer-events: none;
}

/* Overlay color variants per slide */
.hero-slide.overlay-gold::before { background: linear-gradient(180deg, rgba(95,58,6,0.72), rgba(95,58,6,0.28)); }
.hero-slide.overlay-blue::before { background: linear-gradient(180deg, rgba(6,30,60,0.6), rgba(6,30,60,0.22)); }
.hero-slide.overlay-green::before { background: linear-gradient(180deg, rgba(6,40,20,0.6), rgba(6,40,20,0.22)); }

.hero-slide .hero-slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
    transition: transform 0.7s cubic-bezier(.2,.9,.3,1), opacity 0.7s ease;
    transform: translateY(8px);
    opacity: 0.92;
}

.hero-copy { color: white; }

/* Typographic styling intentionally deferred to Tailwind utility classes in Blade markup */
.hero-line-1, .hero-line-2 { font-size: inherit; }

.hero-cta-buttons { display: flex; gap: 14px; align-items: center; }

.hero-visual { min-height: 320px; }

/* Active slide entrance */
.hero-slide.active .hero-slide-inner { transform: translateY(0); opacity: 1; }

/* Decorative outlined word behind heading */
.hero-outline {
    display: block;
    font-size: 3.2rem;
    letter-spacing: 8px;
    color: transparent;
    -webkit-text-stroke: 1.6px rgba(255,255,255,0.12);
    opacity: 0.9;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* Play button near CTAs */
.hero-play {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b5f8c;
    border: none;
    box-shadow: 0 8px 24px rgba(11,95,140,0.25);
    cursor: pointer;
}
.hero-play svg { transform: translateX(2px); }

/* Stack controls on right with distinct styles matching design */
.slider-control {
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-control.next { top: 40%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); }
.slider-control.prev { top: 52%; background: #0b5f8c; box-shadow: 0 8px 20px rgba(11,95,140,0.3); }
.slider-control:hover { transform: translateY(-50%) scale(1.02); }

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 4;
    font-size: 26px;
}

.slider-control.prev { left: 18px; }
.slider-control.next { right: 18px; }

.slider-control:hover { transform: translateY(-50%) scale(1.02); background: rgba(0,0,0,0.6); }

.slider-indicators {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-indicators .indicator {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 999px;
    border: none;
    cursor: pointer;
}

.slider-indicators .indicator[aria-selected="true"] { background: #FFC107; transform: scale(1.15); }

/* Responsive */
@media (max-width: 992px) {
    .hero-slide .hero-slide-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-line-1 { font-size: 2.25rem; }
}

@media (max-width: 640px) {
    .hero-slider { min-height: 420px; }
    .hero-line-1 { font-size: 1.9rem; }
    .hero-line-2 { font-size: 1rem; }
    .slider-control { width: 44px; height: 44px; font-size: 20px; }
}

/* Utility — ensure background images set from data-bg via JS fallback to gradient */
.hero-slide.has-bg { background-color: transparent; }
