* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}
.auth-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.auth-box {
    background: #fff;
    width: 360px;
    padding: 25px;
    border-radius: 12px;
    position: relative;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
}

.tabs {
    display: flex;
    margin-bottom: 15px;
}

.tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: #eee;
    cursor: pointer;
}

.tab.active {
    background: #00bcd4;
    color: #fff;
}

.form {
    display: none;
}

.form.active {
    display: block;
}

.form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.form button {
    width: 100%;
    padding: 10px;
    background: #00bcd4;
    border: none;
    color: #fff;
    cursor: pointer;
}

#authMsg {
    margin-top: 10px;
    font-size: 14px;
    color: green;
}
.user-name {
    font-weight: 500;
    color: #00b3b3; /* ferozi */
    margin-right: 15px;
}

/* Profile Box */
.profile-box {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;

    pointer-events: auto !important;
    position: relative;
    z-index: 100002;
}


.profile-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

/* Sidebar */
.profile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 15px rgba(0,0,0,0.15);
    transition: 0.3s;

    z-index: 100001; /* 🔥 ABOVE HEADER */
}

.profile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}

.sidebar-header button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.sidebar-body {
    padding: 20px;
}

.logout-btn {
    display: block;
    margin-top: 20px;
    padding: 12px;
    background: #e53935;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
}
@media (max-width: 768px) {
    .profile-name {
        display: none; /* icon only on mobile */
    }

    .profile-box {
        padding: 6px;
    }
    .profile-box {
    cursor: pointer;
    pointer-events: auto;
}
}
@media (max-width: 768px) {
    .header {
        padding: 0 15px;
    }

    .profile-name {
        display: none;
    }
}
 

/* HEADER */
/* ================= TOP BAR ================= */
.topbar{
    background: linear-gradient(90deg, #d3fcff, #6de8cc);
    color:#070707;
    font-size:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 60px;   /* ↑ height increased */
    letter-spacing:.4px;
    min-height:48px;     /* ensures consistent height */
}

/* ================= HEADER ================= */
/* ================= HEADER DEFAULT ================= */
.header{
    position:sticky;
    top:0;
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 60px;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.85);
    border-bottom:1px solid rgba(0,0,0,0.05);
    transition:background .35s ease, box-shadow .35s ease;
}

/* ================= WHEN SCROLL ================= */
.header.scrolled{
    background:transparent;      /* fully transparent */
    backdrop-filter:none;        /* remove glass blur */
    border-bottom:none;
    box-shadow:none;
}

/* LOGO */
.logo{
    height:48px;
    transition:.3s;
}
.logo:hover{
    transform:scale(1.08) rotate(-2deg);
}

/* NAV LINKS */
.header-center{
    display:flex;
    gap:40px;
}

.header-center a{
    position:relative;
    text-decoration:none;
    color:#1f2937;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

.header-center a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#2563eb;
    transition:.35s;
}

.header-center a:hover{
    color:#2563eb;
}
.header-center a:hover::after{
    width:100%;
}
/* ================= MOBILE HEADER ================= */
.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}

/* Tablet */
@media (max-width: 1024px){
    .header{
        padding:10px 20px;
        gap:10px;
    }

    .header-center a{
        margin:0 10px;
        font-size:14px;
    }

    .location-box{
        font-size:13px;
    }
}
@media (max-width:768px){

    .header-center{
        position:fixed;              /* important */
        top:0;
        left:-100%;                  /* hidden by default */
        width:75%;
        height:100vh;                /* full screen height */
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:80px 20px 30px;     /* top space for header */
        display:flex;
        overflow-y:auto;             /* scroll inside menu */
        transition:0.35s ease;
        box-shadow:5px 0 25px rgba(0,0,0,0.15);
        z-index:9999;
    }

    /* open state */
    .header-center.active{
        left:0;
    }

    /* menu links */
    .header-center a{
        display:block;
        width:100%;
        padding:14px 0;
        border-bottom:1px solid #eee;
        font-size:16px;
    }
}

/* Mobile */
@media (max-width: 768px){

    .header{
        display:flex;
        flex-wrap:wrap;
        align-items:center;
        justify-content:space-between;
        padding:10px 15px;
    }

    /* show hamburger */
    .menu-toggle{
        display:block;
    }

    /* hide desktop menu */
    .header-center{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:15px 20px;
        display:none;
        box-shadow:0 10px 25px rgba(0,0,0,0.08);
        z-index:999;
    }

    /* menu links */
    .header-center a{
        display:block;
        width:100%;
        padding:12px 0;
        border-bottom:1px solid #eee;
        font-size:16px;
    }

    /* show when active */
    .header-center.active{
        display:flex;
    }

    /* move location below */
    .location-box{
        width:100%;
        order:3;
        text-align:left;
        margin-top:5px;
        font-size:13px;
    }

    /* profile compact */
    .profile-name{
        display:none;
    }

    .profile-icon{
        width:32px;
        height:32px;
    }
}


/* Small Phones */
@media (max-width:480px){
    .logo{
        height:35px;
    }

    .header{
        padding:8px 12px;
    }

    .location-box{
        font-size:12px;
    }
}
/* LOCATION BADGE */
.location-box{
    font-weight:600;
    color:#374151;
}
#userCity{
    background:#eff6ff;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#1d4ed8;
    margin-left:8px;
}

/* LOGIN BUTTON */
#openAuth{
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}
#openAuth:hover{
    background:#1e40af;
    box-shadow:0 6px 18px rgba(37,99,235,.35);
}

/* PROFILE */
.profile-box{
    display:flex;
    align-items:center;
    gap:10px;
    padding:6px 14px;
    border-radius:40px;
    background:#f3f4f6;
    cursor:pointer;
    transition:.3s;
}
.profile-box:hover{
    background:#e5e7eb;
    transform:translateY(-2px);
}

.profile-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    border:2px solid #2563eb;
}

.profile-name{
    font-weight:600;
    color:#111827;
}
.hero,
.hero-overlay {
    pointer-events: none;
}

.hero-content {
    pointer-events: auto;
}
/* HERO */
.hero {
    position: relative;
    height: calc(144vh - 2px);
    background: url("assets/img/2151531322.jpg") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    height: 76%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 90px;
}

.hero-content h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* SEARCH CARD */
.search-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px 26px;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* TABS */
.search-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 18px;
}

.search-tabs label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.search-tabs input {
    accent-color: #6de8ce;
}

/* FORM */
.search-form {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    align-items: end;
}

.form-group label {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
}

.search-btn {
    display: flex;
    align-items: flex-end;
}

.search-btn button {
    width: 100%;
    height: 46px;
    background: #2d2f4a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        padding-left: 40px;
    }

    .search-form {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .header-center {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 30px;
        padding-top: 220px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-card {
        width: 100%;
    }
}
/* FEATURED BIKES */
.featured-bikes {
  padding: 50px 60px;
  background: #f4f8ff;
}

.featured-title {
  font-size: 46px;
  font-weight: 500;
  color:#1d1d1d;
  margin-bottom: 30px;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bike-card {
  background: #f7fbff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.bike-image {
  background: #ffffff;
  border-radius: 16px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.bike-image img {
  max-width: 100%;
  max-height: 118%;
  object-fit: contain;
}

.bike-footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bike-name {
  font-size: 16px;
  font-weight: 500;
  color: #1e2a3a;
}

.bike-year {
  font-size: 13px;
  color: #3b82f6;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1.5px dashed #6de8ce;
  background: #eef5ff;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .featured-bikes {
    padding: 30px 20px;
  }

  .featured-title {
    font-size: 22px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bike-image {
    height: 190px;
  }
}
/* STEPS SECTION */
.steps-section {
  padding: 60px;
  background: #f4f8ff;
}

.steps-title {
  font-size: 46px;
  font-weight: 500;
  color: #1f2a44;
  margin-bottom: 40px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

/* ICON COLORS */
.step-icon.pink { background: #ffe3ee; color: #ff4d8d; }
.step-icon.blue { background: #e6f2ff; color: #ff3b30; }
.step-icon.green { background: #e6f7ef; color: #2ecc71; }
.step-icon.purple { background: #efe6ff; color: #7c5cff; }

.step-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1e2a3a;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #4a5a70;
  line-height: 1.6;
}

.step-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: #ff3b30;
  text-decoration: none;
  font-weight: 500;
}
/* Base Card */
.step-card{
    background:#fff;
    border-radius:16px;
    padding:30px 25px;
    text-align:center;
    transition:all .35s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.06);
    cursor:pointer;
}

.step-card:hover{
    transform:translateY(-10px) scale(1.02);
}

/* ICON */
.step-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 18px;
    transition:.35s;
}

/* ================= RED ================= */
.hover-red:hover{
    background:#fff5f6;
    box-shadow:0 20px 40px rgba(255, 0, 60, 0.212);
}
.hover-red:hover .step-icon{
    background:#ff012f;
    color:#fff;
}

/* ================= BLUE ================= */
.hover-blue:hover{
    background:#f0f7ff;
    box-shadow:0 20px 40px rgba(0, 140, 255, 0.25);
}
.hover-blue:hover .step-icon{
    background:#008cff;
    color:#fff;
}

/* ================= GREEN ================= */
.hover-green:hover{
    background:#f1fff5;
    box-shadow:0 20px 40px rgba(0, 200, 83, 0.25);
}
.hover-green:hover .step-icon{
    background:#00c853;
    color:#fff;
}

/* ================= YELLOW ================= */
.hover-yellow:hover{
    background:#fff9e8;
    box-shadow:0 20px 40px rgba(255, 170, 0, 0.28);
}
.hover-yellow:hover .step-icon{
    background:#ffaa00;
    color:#fff;
}

/* Link effect */
.step-link{
    transition:.3s;
}
.step-card:hover .step-link{
    letter-spacing:1px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .steps-section {
    padding: 40px 20px;
  }

  .steps-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
/* WHY SECTION */
.why-section {
  padding: 60px;
  background: #f4f8ff;
}

.why-title {
  font-size: 46px;
  font-weight: 500;
  color: #1f2a44;
  margin-bottom: 40px;
  text-align: center;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* FLIP CARD */
.flip-card {
  perspective: 1000px;
  height: 150px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-inner,
.flip-card:active .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  backface-visibility: hidden;
}

/* FRONT */
.flip-front {
  background: #ffffff;
  color: #1f2a44;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* BACK (FEROZI COLOR) */
.flip-back {
  background: rgb(241, 255, 251); /* Ferozi */
  color: #000000;
  transform: rotateY(180deg);
  box-shadow: 0 15px 30px #2a2c2c;
}

/* TOUCH BRIGHT EFFECT */
.flip-card:active .flip-back {
  filter: brightness(1.15);
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .why-section {
    padding: 40px 20px;
  }

  .why-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .flip-card {
    height: 130px;
  }

  .flip-front,
  .flip-back {
    font-size: 16px;
  }
}
/* FOOTER */
.footer {
  background: rgb(202, 255, 240);
  padding: 50px 60px 30px;
  color: #080808;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
    width: 128px;
    /* background: #e1e1e1; */
    /* border-radius: 50%; */
    /* padding: 14px; */
    padding-left: 5px;
    margin-left: 131px;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #0c0b0b;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  opacity: 0.95;
}

/* BOTTOM */
.footer-bottom {
  background: #f4f8ff;
  color: #000000;;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 14px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    margin-left: -133px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
/* body{
    margin:0;
    font-family:Segoe UI, sans-serif;
    background:#f5f7fb;
} */

/* HERO */
.contact-hero{
    text-align:center;
    padding:70px 20px;
    background:linear-gradient(120deg,rgb(246, 255, 253),#d1f4f8);
    color:#131212;
}
.contact-hero h1{
    font-size:42px;
    margin-bottom:10px;
}

/* MAIN LAYOUT */
.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:60px 80px;
}

/* INFO CARDS */
.info-card{
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:.3s;
}
.info-card:hover{
    transform:translateY(-5px);
}

/* FORM */
.contact-form{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.input-group{
    margin-bottom:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:15px;
}

.contact-form textarea{
    height:120px;
    resize:none;
}

.contact-form button{
    width:100%;
    padding:14px;
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:30px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}
.contact-form button:hover{
    background:#1e40af;
}

/* MAP */
.map-section iframe{
    width:100%;
    height:420px;
    border:none;
    margin-top:40px;
}
/* SECTION CONTAINER */
.about-video-section{
    position:relative;
    height:90vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-align:center;
}

/* BACKGROUND VIDEO */
.bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

/* DARK OVERLAY */
.video-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:-1;
}

/* CONTENT */
.about-content{
    max-width:850px;
    padding:20px;
}

.about-content h2{
    font-size:44px;
    margin-bottom:15px;
    font-weight:700;
}

.about-content p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:25px;
    opacity:.95;
}

/* FEATURES */
.about-features{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-bottom:30px;
    font-weight:600;
}

.about-features span{
    background:rgba(255,255,255,0.12);
    padding:10px 18px;
    border-radius:30px;
    backdrop-filter:blur(6px);
}

/* BUTTON */
.about-btn{
    display:inline-block;
    padding:14px 30px;
    background:#2563eb;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#1e40af;
    transform:translateY(-2px);
}
/* ================= TABLET ================= */
@media(max-width:1024px){

.about-content h2{
    font-size:34px;
}

.about-content p{
    font-size:16px;
}

.about-video-section{
    height:80vh;
}

.about-features{
    gap:12px;
}

}

/* ================= MOBILE ================= */
@media(max-width:768px){

/* Hide heavy video on mobile */
.bg-video{
    display:none;
}

/* Replace with image */
.about-video-section{
    background:url('../video/bike-poster.jpg') center/cover no-repeat;
    height:70vh;
}

/* Dark overlay stronger */
.video-overlay{
    background:rgba(0,0,0,0.65);
}

.about-content{
    padding:0 20px;
}

.about-content h2{
    font-size:26px;
    line-height:1.3;
}

.about-content p{
    font-size:14px;
    line-height:1.6;
}

/* Features stack */
.about-features{
    flex-direction:column;
    align-items:center;
}

.about-features span{
    width:80%;
    text-align:center;
}

.about-btn{
    padding:12px 24px;
    font-size:14px;
}

}

/* ================= SMALL MOBILE ================= */
@media(max-width:480px){

.about-video-section{
    height:65vh;
}

.about-content h2{
    font-size:22px;
}

.about-content p{
    font-size:13px;
}

}

.testimonials {
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
    background: #fff;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: slide 18s linear infinite;
}

.testimonial {
    width: 350px;
    text-align: center;
    margin: 0 60px;
    opacity: 0.85;
    transition: 0.4s;
}

.testimonial:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.testimonial img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-size: 14px;
    color: #111;
    font-weight: 600;
}

/* Auto sliding animation */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile */
@media(max-width:768px){
    .testimonial {
        width: 260px;
        margin: 0 25px;
    }

    .testimonial p {
        font-size: 14px;
    }
}
/* CATEGORY BAR */
.category-bar{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:30px 0 40px;
}

.category-bar a{
    text-decoration:none;
    color:#444;
    padding:8px 18px;
    border-radius:20px;
    background:#f1f1f1;
    transition:0.3s;
}

.category-bar a:hover{
    background:#000;
    color:#fff;
}

/* BIKES GRID */
.bikes-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    padding:0 8%;
}

.bike img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:12px;
}

.bike h3{
    font-size:18px;
    margin-bottom:5px;
}

.bike span{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

/* PAGINATION */
.pagination{
    margin-top:60px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.pagination a{
    padding:8px 14px;
    background:#eee;
    border-radius:8px;
    text-decoration:none;
    color:#333;
}

.pagination a.active{
    background:#000;
    color:#fff;
}

/* MOBILE */
@media(max-width:900px){
    .bikes-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .bikes-container{
        grid-template-columns:1fr;
    }
}
@media (max-width:768px){

    /* HERO */
    .contact-hero{
        padding:50px 20px 35px;
        text-align:center;
    }

    .contact-hero h1{
        font-size:26px;
        margin-bottom:8px;
    }

    .contact-hero p{
        font-size:14px;
        opacity:.85;
    }

    /* MAIN CONTAINER STACK */
    .contact-container{
        display:flex;
        flex-direction:column;
        padding:20px 16px 30px;
        gap:22px;
    }

    /* INFO CARDS */
    .contact-info{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .info-card{
        background:#fff;
        padding:18px 18px;
        border-radius:14px;
        box-shadow:0 8px 22px rgba(0,0,0,0.06);
        transition:.25s;
    }

    .info-card h3{
        font-size:15px;
        margin-bottom:6px;
    }

    .info-card p{
        font-size:14px;
        line-height:1.5;
        color:#555;
    }

    /* FORM CARD */
    .contact-form{
        background:#fff;
        padding:22px 18px;
        border-radius:18px;
        box-shadow:0 10px 28px rgba(0,0,0,0.08);
    }

    .contact-form form{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .input-group input,
    .input-group textarea{
        width:100%;
        padding:14px 14px;
        border-radius:10px;
        border:1px solid #e4e4e4;
        font-size:14px;
        outline:none;
        transition:.2s;
    }

    .input-group textarea{
        min-height:120px;
        resize:none;
    }

    .input-group input:focus,
    .input-group textarea:focus{
        border-color:#000;
        box-shadow:0 0 0 3px rgba(0,0,0,0.05);
    }

    .contact-form button{
        margin-top:6px;
        padding:14px;
        border:none;
        border-radius:12px;
        background:#111;
        color:#fff;
        font-weight:500;
        font-size:15px;
        letter-spacing:.3px;
        transition:.25s;
    }

    .contact-form button:active{
        transform:scale(.97);
    }

    /* MAP */
    .map-section{
        margin-top:25px;
    }

    .map-section iframe{
        width:100%;
        height:260px;
        border:none;
        border-radius:0;
    }
}
