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

:root {
    --yamaha-red: #0052CC;
    --yamaha-red-dark: #003d99;
    --primary-blue: #0052CC;
    --dark-blue: #0a1428;
    --white: #ffffff;
    --light-gray: #f7f8fa;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-color: #e5e7eb;

    /* Consistent section rhythm — change these two values to retune spacing everywhere */
    --section-padding-y: 60px;
    --section-padding-y-mobile: 36px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
}

img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
}

section {
    padding: var(--section-padding-y) 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-blue);
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--yamaha-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--yamaha-red-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-blue);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: var(--white);
    color: var(--text-dark);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 56px;
    margin-left: 0;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Products Dropdown & Mega Menu */
.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.dropdown-arrow {
    font-size: 9px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}
.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 600px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}
.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Toggle Tabs style */
.mega-menu-toggle {
    display: flex;
    background: var(--light-gray);
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}
.toggle-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.25s ease;
}
.toggle-tab.active {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.2);
}

/* Content List styling */
.mega-menu-list {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mega-menu-list.active {
    display: grid;
}

.mega-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}
.mega-menu-item:hover {
    background: var(--light-gray);
    border-color: var(--border-color);
    transform: translateY(-2px);
}
.mega-menu-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
    mix-blend-mode: multiply;
}
.mega-menu-item span {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    height: 100%;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease;
    height: 100%;
}

.nav-link svg {
    transition: transform 0.25s ease;
}

.nav-link:hover svg {
    transform: translateY(2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link-active {
    color: var(--primary-blue) !important;
}

.nav-link-active::after {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-number {
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease;
}

.phone-number:hover {
    color: var(--primary-blue);
}

.call-btn {
    background: #111;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    font-size: 11.5px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.call-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION - BANNER IMAGE ==================== */
.hero {
    margin-top: 72px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--dark-blue);
    padding: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,20,40,0.55) 0%, rgba(10,20,40,0.2) 35%, rgba(10,20,40,0.65) 100%);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
    color: var(--white);
}

.hero h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.15;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #f0f0f0;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== SELECT YOUR BIKE SECTION ==================== */
.bikes-section {
    background: var(--white);
}

.bikes-carousel-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 480px;
}

.carousel-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
    margin: 0 12px;
    align-self: center;
}

.carousel-btn:hover {
    background: #003d99;
}

.carousel-btn:disabled {
    background: #d0d0d0;
    cursor: not-allowed;
}

.mobile-bike-nav {
    display: none;
    gap: 10px;
    margin-top: 14px;
}

.bikes-content {
    flex: 1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
    align-items: center;
    background: var(--light-gray);
    padding: 36px 30px;
    border-radius: 12px;
}

.bike-image-container {
    background: var(--white);
    border-radius: 8px;
    padding: 15px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bike-image {
    max-height: 360px;
    object-fit: contain;
}

.bike-specs-section {
    display: flex;
    flex-direction: column;
}

.bike-header {
    margin-bottom: 26px;
}

.bike-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.bike-price {
    font-size: 24px;
    color: var(--yamaha-red);
    font-weight: 600;
    margin-bottom: 16px;
}

.bike-brief {
    color: var(--text-gray);
    font-size: 14px;
    padding: 12px;
    background: var(--white);
    border-left: 4px solid var(--primary-blue);
    border-radius: 4px;
}

.specs-list {
    margin: 26px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.spec-label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 13px;
    text-transform: uppercase;
}

.spec-value {
    font-size: 16px;
    color: var(--dark-blue);
    font-weight: 600;
}

.bike-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.btn-small {
    flex: 1;
    min-width: 140px;
    padding: 11px 20px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-small-primary {
    background: var(--yamaha-red);
    color: var(--white);
}

.btn-small-primary:hover {
    background: var(--yamaha-red-dark);
}

.btn-small-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-blue);
}

.btn-small-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ==================== ABOUT US SECTION ==================== */
.about-section {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    background: var(--white);
    border-radius: 8px;
    padding: 30px 20px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-image img {
    max-height: 330px;
    object-fit: contain;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 26px;
}

.feature-item {
    background: var(--white);
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* ==================== EVENTS SECTION ==================== */
.events-section {
    background: var(--light-gray);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background: var(--yamaha-red);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.event-date .day {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

.event-info {
    padding: 24px;
    flex: 1;
}

.event-info h3 {
    color: var(--dark-blue);
    font-size: 18px;
    margin-bottom: 10px;
}

.event-info p {
    color: #666;
    margin-bottom: 10px;
}

/* ==================== ABOUT US PAGE ==================== */
.about-page-hero {
    margin-top: 72px;
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 8%;
    gap: 60px;
}

.about-hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.about-hero-content h1 {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
}

.about-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.about-hero-img-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-showroom-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.legacy-section {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.legacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.legacy-container h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 24px;
}

.legacy-container p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.mission-vision-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-blue);
}

.mv-card h3 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.core-values-section {
    padding: 80px 20px;
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.cv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.cv-item {
    padding: 20px;
}

.cv-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-blue);
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.why-card {
    background: var(--light-gray);
    padding: 26px;
    border-radius: 8px;
    border-top: 4px solid var(--yamaha-red);
    text-align: center;
}

.why-icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 600;
}

.why-card p {
    color: var(--text-gray);
    font-size: 13px;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--dark-blue);
    color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 26px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 22px;
}

.contact-label {
    font-size: 12px;
    color: #b0b0b0;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-value {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 11px 22px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
}

.contact-call {
    background: var(--yamaha-red);
    color: var(--white);
}

.contact-call:hover {
    background: var(--yamaha-red-dark);
}

.contact-whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-whatsapp:hover {
    background: #1ea753;
}

.map-container {
    width: 100%;
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-map {
    width: 100%;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #333;
    margin-top: 4px;
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(30%) brightness(0.85);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--white);
    color: var(--text-gray);
    padding: 70px 40px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

/* 4-column grid: logo | useful pages | services | contact+social */
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.3fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 60px;
    align-items: start;
}

/* ----- Col 1: Brand ----- */
.footer-brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.footer-brand-logo svg text {
    filter: none;
}
.footer-brand-logo img {
    mix-blend-mode: multiply;
}

.footer-brand-tagline {
    font-size: 12.5px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 200px;
}

/* ----- Col 2 & 3: Link lists ----- */
.footer-col h4 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 22px;
}

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

.footer-col ul li {
    margin-bottom: 13px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

/* Highlight (like Saini's "Solutions" in blue) */
.footer-col ul li a.ft-highlight {
    color: var(--primary-blue);
}

/* ----- Col 4: Phone + Social + Join ----- */
.footer-phone-block {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-phone-icon {
    width: 42px;
    height: 42px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.footer-phone-icon svg {
    stroke: var(--primary-blue) !important;
}

.footer-phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-phone-text span {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-phone-text strong {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: 0.3px;
}

/* Social row */
.footer-social-row {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.social-link-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.25s;
}

.social-link-icon:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* "Join Us" / tagline link */
.footer-future-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.footer-future-link:hover {
    color: var(--primary-blue);
}

.footer-future-link .arrow-icon {
    font-size: 14px;
}

.footer-showroom-block {
    margin-top: 14px;
}

.footer-showroom-address {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: #666;
    max-width: 240px;
}

/* ----- Bottom bar ----- */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-bottom-left strong {
    color: var(--text-dark);
    font-weight: 700;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-right a {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-right a:hover {
    color: var(--primary-blue);
}

/* Watermark graphic (bottom-right corner) */
.footer-watermark {
    position: absolute;
    bottom: 40px;
    right: 30px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* ==================== STICKY WHATSAPP CHAT WIDGET ==================== */
.footer-whatsapp-chat {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 2000;
    transition: transform 0.2s ease;
}

.footer-whatsapp-chat:hover {
    transform: scale(1.03);
}

.footer-whatsapp-chat .chat-badge {
    background: #fff;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
    border: 1px solid #e5e7eb;
    transition: border-color 0.2s;
}

.footer-whatsapp-chat:hover .chat-badge {
    border-color: #25D366;
}

.footer-whatsapp-chat .chat-icon-circle {
    width: 46px;
    height: 46px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    flex-shrink: 0;
    position: relative;
}

.footer-whatsapp-chat .chat-icon-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1.5px solid #25D366;
    border-radius: 50%;
    opacity: 0;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0%   { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.3);  opacity: 0; }
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 769px) and (max-width: 1050px) {
    .navbar {
        padding: 0 16px;
    }
    .logo-img {
        max-width: 130px;
    }
    .nav-links {
        gap: 16px;
    }
    .nav-link {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    .nav-right {
        gap: 12px;
    }
    .phone-number {
        display: none; /* Hide phone number to save space */
    }
    .call-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .bikes-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-y-mobile) 16px;
    }

    section.hp-hero {
        padding: 0;
    }

    .navbar {
        padding: 0 20px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .nav-right {
        display: contents;
    }

    .logo-link {
        height: 34px;
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
    }

    .logo-img {
        max-width: 130px;
    }

    .hamburger {
        display: flex;
        order: 1;
        margin-right: auto;
        z-index: 10;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: auto;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 15px;
        align-items: flex-start;
        border-top: 1px solid var(--border-color);
        order: 4;
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
        height: auto;
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-links.nav-active {
        left: 0;
    }

    .phone-number {
        display: none;
    }

    .call-btn {
        display: block;
        order: 3;
        margin-left: auto;
        padding: 7px 10px;
        font-size: 9px;
        letter-spacing: 0.4px;
        line-height: 1.15;
        max-width: 88px;
        white-space: normal;
        text-align: center;
        z-index: 10;
    }

    .hero {
        margin-top: 64px;
    }

    .hero-banner-img {
        aspect-ratio: 4 / 5;
    }

    .hero-content {
        padding: 15px;
    }

    .hero h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .bikes-carousel-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .carousel-btn {
        display: none;
    }

    .bikes-content {
        padding: 20px;
        border-radius: 8px;
        gap: 16px;
    }

    .bike-image-container {
        min-height: 220px;
        padding: 12px;
    }

    .bike-image {
        max-height: 200px;
    }

    .bike-header {
        margin-bottom: 16px;
    }

    .bike-name {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .bike-price {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .bike-brief {
        display: none;
    }

    .specs-list {
        margin: 14px 0;
        gap: 10px;
    }

    .spec-item {
        padding-bottom: 8px;
    }

    .bike-actions {
        order: -1;
        margin-top: 0;
        margin-bottom: 16px;
    }

    .mobile-bike-nav {
        display: flex;
    }

    .mobile-bike-nav-btn {
        flex: 1;
        padding: 10px;
        background: var(--white);
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
        border-radius: 4px;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
    }

    .mobile-bike-nav-btn:disabled {
        border-color: #d0d0d0;
        color: #aaa;
        cursor: not-allowed;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-image {
        padding: 22px;
        min-height: 280px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-page-hero {
        flex-direction: column;
        padding: 40px 20px;
        gap: 35px;
    }
    
    .about-hero-content {
        padding: 0;
        text-align: left;
    }

    .about-hero-content p {
        margin: 0;
    }
    
    .about-hero-img-wrap {
        width: 100%;
        max-width: 480px;
    }

    .contact-info h2 {
        font-size: 22px;
    }

    .map-container {
        height: 280px;
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-width: 108px;
    }

    .call-btn {
        padding: 6px 8px;
        font-size: 8px;
        max-width: 76px;
    }

    .footer-whatsapp-chat .chat-badge {
        display: none;
    }

    .hero h1 {
        font-size: 21px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-banner-img {
        aspect-ratio: 3 / 4;
    }

    .hero-content {
        padding: 12px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .section-title {
        font-size: 21px;
        margin-bottom: 22px;
    }

    .bike-name {
        font-size: 20px;
    }

    .bike-price {
        font-size: 18px;
    }

    .bike-image-container {
        min-height: 180px;
        padding: 10px;
    }

    .bike-image {
        max-height: 160px;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-bottom: 10px;
    }

    .bike-actions {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .about-image {
        padding: 18px;
        min-height: 240px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 18px;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
    }

    .map-container {
        height: 230px;
    }

    .footer-whatsapp-chat {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: left;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left;
    }
    .footer-phone-block {
        justify-content: flex-start;
    }
    .footer-social-row {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: left;
    }
    .footer-bottom-left {
        text-align: left;
    }
    .footer-bottom-right {
        justify-content: flex-start;
    }
}

/* ========================================================
   EVENT IMAGE SLIDER / CAROUSEL STYLES
   ======================================================== */
.event-image-slider-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e5e7eb;
}

.event-image-slider {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.event-image-slider::-webkit-scrollbar {
    display: none;
}
.event-image-slider {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.event-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
}

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

/* Navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 20, 40, 0.6);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(0, 82, 204, 0.9);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Dots indicator */
.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Adjust homepage news image wrap */
.hp-news-img-wrap {
    width: 100%;
    height: 460px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.hp-news-img-wrap iframe {
    position: absolute;
    width: 100%;
    height: calc(100% + 115px);
    top: -55px;
    left: 0;
    border: none;
}

/* Adjust past event image wrap */
.past-event-image-wrap {
    width: 100%;
    height: 460px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.past-event-image-wrap iframe {
    position: absolute;
    width: 100%;
    height: calc(100% + 115px);
    top: -55px;
    left: 0;
    border: none;
}

/* Mobile Dropdown styles */
@media (max-width: 768px) {
    .nav-item-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-item-dropdown .nav-link {
        width: 100%;
    }
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
        display: block;
        background: transparent;
    }
    .mega-menu-toggle {
        margin-bottom: 12px;
    }
    .mega-menu-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .mega-menu-item {
        padding: 6px;
        background: var(--light-gray);
        border: 1px solid var(--border-color);
    }
    .mega-menu-item img {
        height: 60px;
    }
}


