:root {
    --honda-red: #cc0000;
    --honda-dark: #000000;
    --honda-light: #d2d2d2;
    --honda-gray: #333;
    --honda-white: #ffffff;
    --honda-black: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--honda-dark);
    font-family: Montserrat, sans-serif;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: var(--honda-black);
    color: var(--honda-white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--honda-white);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--honda-red);
}

/* Navbar */
.navbar {
    background: var(--honda-black);
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    /* background: var(--honda-red); */
    transition: width 0.3s;
}

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

.dropdown-menu {
    background: var(--honda-gray);
    border: 1px solid var(--honda-black);
}

.dropdown-item {
    color: #ffffff;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--honda-red);
    color: #ffffff;
}

.nav-link:hover {
    color: var(--honda-red) !important;
}

/* Hero Slider */
.hero-slider {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(204, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--honda-white);
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 1.5rem;
    margin: 20px 0;
    animation: fadeInUp 1.5s;
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin: 60px 0 40px;
    color: var(--honda-white);
}

.section-heading h2 {
    font-size: 3rem;
    font-weight: bold;
    /* color: var(--honda-dark); */

    position: relative;
    display: inline-block;
}

.section-heading h3 {
    font-size: 2rem;
    font-weight: bold;
    /* color: var(--honda-dark); */

    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--honda-red);
}

.section-heading h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--honda-red);
}


/* Motorcycle Cards */
.motorcycle-card {
    background: var(--honda-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    cursor: pointer;
}

.motorcycle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.motorcycle-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 20px;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    transition: transform 0.3s;
}

.motorcycle-card:hover img {
    transform: scale(1.1);
}

.motorcycle-info {
    padding: 20px;
    text-align: center;
}

.motorcycle-info h3 {
    color: var(--honda-dark);
    font-weight: bold;
    margin-bottom: 10px;
}

.motorcycle-info .price {
    color: var(--honda-red);
    font-size: 1.3rem;
    font-weight: bold;
}

/* CTA Buttons */
.cta-section {
    background: linear-gradient(135deg, var(--honda-dark), var(--honda-red));
    padding: 80px 0;
    color: var(--honda-white);
    margin: 60px 0;
}

.cta-button {
    background: var(--honda-white);
    color: var(--honda-red);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    margin: 10px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--honda-red);
    color: var(--honda-white);
    transform: scale(1.05);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(204, 0, 0, 0.8); */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ========== FOOTER ========== */
footer {
    background: var(--honda-black);
    color: #ccc;
    padding: 70px 0 30px;
    font-size: 14px;
}

footer h5 {
    color: #fff;
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
}

footer h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #d40000;
    position: absolute;
    bottom: -8px;
    left: 0;
}

footer p {
    color: #aaa;
    line-height: 1.7;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 25px;
}

.footer-social a:hover {
    background: #d40000;
    transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #777;
}

/* SCROLL TO TOP */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #d40000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    background: #ff2a2a;
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:768px) {
    footer {
        text-align: center;
    }

    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--honda-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--honda-white);
}

.loader-logo {
    font-size: 4rem;
    color: var(--honda-red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
}

/* Navbar Toggler */
.navbar-toggler {
    border-color: var(--honda-red);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-danger {
    background: var(--honda-red);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 30px;
}

.btn-danger:hover {
    background: #ff0000;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.5);
}


/* Model Details Section */
/* .model-details-section {
    background: var(--honda-dark);
    min-height: 80vh;
    padding: 80px 0;
}

.model-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(204, 0, 0, 0.3);
    transition: transform 0.3s;
}

.model-image:hover {
    transform: scale(1.02);
}

.model-details-card {
    background: var(--honda-gray);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.2);
    border: 1px solid #333;
}

.model-details-card h2 {
    color: var(--honda-red);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.model-details-card p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.model-details-card h4 {
    color: #ffffff;
    font-weight: bold;
    margin: 30px 0 20px;
    font-size: 2rem;
}

.model-details-card ul {
    list-style: none;
    padding: 0;
}

.model-details-card ul li {
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.model-details-card ul li:hover {
    color: var(--honda-red);
    padding-left: 10px;
}

.model-details-card ul li::before {
    content: '→';
    color: var(--honda-red);
    font-weight: bold;
    margin-right: 10px;
} */

.btn-danger {
    background: var(--honda-red);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 30px;
}

.btn-danger:hover {
    background: #ff0000;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.5);
}

.cb-section {
    padding: 80px 0;
}

.cb-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--honda-white);
}

.cb-subtitle {
    color: #d40000;
    font-weight: 600;
    margin-bottom: 20px;
}

.cb-text {
    color: #bbb;
    font-size: 15px;
    line-height: 1.7;
}

.btn-red {
    color: #fff;
    /* border: 1px solid #d40000; */
    padding: 10px 25px;
    color: #c2d400;
    transition: 0.3s;
}

.btn-red:hover {
    /* background: #d40000; */
    color: #d40000;
}

.cb-img {
    width: 100%;
    border-radius: 6px;
}

.big-text {
    font-size: 64px;
    font-weight: 800;
    color: var(--honda-light);
    line-height: 1;
}

.muted-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

hr {
    border-color: #333;
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d40000, #ff2a2a);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 0, 0, 0.4);
}

/* SHOW BUTTON */
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* HOVER */
#scrollTopBtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(212, 0, 0, 0.6);
}

/* MOBILE */
@media (max-width: 768px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 576px) {
    .map-responsive {
        padding-bottom: 70%;
    }
}

.map-responsive {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
