/* 
 * Redesign 2026 - Nano Banana Theme
 * Premium Automotive Dark Mode
 */

:root {
    --primary-yellow: #FFD700;
    --primary-red: #D32F2F;
    --dark-bg: #111111;
    --card-bg: #1E1E1E;
    --text-light: #F5F5F5;
    --text-gray: #B0B0B0;
    --border-color: #333333;
}

/* Global Overrides */
body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar Overrides */
.navbar-light .navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-yellow) !important;
}

.bg-warning {
    background-color: #000000 !important;
    border-bottom: none;
}

/* Main header nav — dark gradient with yellow accent lines only */
.main-header {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 50%, #111 100%) !important;
    border-top: 2px solid var(--primary-yellow) !important;
    border-bottom: 2px solid var(--primary-yellow) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.main-header .navbar {
    background: transparent !important;
    background-color: transparent !important;
}

/* Service Cards - Modern */
.service-card-modern {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    /* reduced padding */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* thinner Accent bar */
    background: var(--primary-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    background-color: var(--primary-yellow);
    color: #000;
    transform: rotate(15deg);
}

.service-title {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Trust Strip */
.trust-strip {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 100%);
    border-bottom: 1px solid #333;
    padding: 1.5rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Modern Hero */
.hero-modern {
    position: relative;
    height: 80vh;
    /* Taller hero */
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.4;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #fff;
}

.hero-title-highlight {
    color: var(--primary-yellow);
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: #fff;
    /* Increased constraint */
    margin-bottom: 2rem;
    font-weight: 300;
    border-left: 4px solid var(--primary-red);
    padding-left: 1rem;
}

/* Booking Widget */
.booking-widget-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: var(--primary-yellow);
    color: #000;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.booking-widget-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    background-color: #fff;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.booking-widget-icon {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }

    .booking-widget-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .trust-strip {
        text-align: center;
    }

    .trust-item {
        justify-content: center;
        margin-bottom: 8px;
    }

    /* Hero image visible on mobile - show below text */
    .hero-modern .row {
        flex-direction: column;
    }

    .hero-modern .col-lg-6:first-child {
        order: 1;
    }

    .hero-image-col {
        order: 2;
        margin-top: 2rem;
    }

    .hero-image-col .d-inline-block {
        max-width: 70% !important;
        border-radius: 12px !important;
    }

    .hero-modern {
        height: auto;
        min-height: auto;
        padding: 3rem 0;
    }

    /* Footer two-column mobile adjustments */
    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem !important;
    }

    .footer .footer-links a,
    .footer .footer-contact li {
        font-size: 0.85rem;
    }

    .footer .footer-links li {
        margin-bottom: 0.4rem;
    }

    .footer img {
        height: 50px !important;
    }

    .footer p.text-light {
        font-size: 0.85rem;
    }

    .footer .social-links {
        margin-top: 0.5rem !important;
    }

    .footer .business-hours-footer p {
        font-size: 0.8rem !important;
    }
}