/*====================================
  GOOGLE FONTS
====================================*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

/*====================================
  RESET
====================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #090909;
    color: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

h2, h3{
    font-family: 'Bebas Neue',
        sans-serif;
        letter-spacing: 1px;
}

p{
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

/*====================================
  VARIABLES
====================================*/
:root {

    --primary: #e61d24;
    --yellow: #ffb400;
    --dark: #0d0d0d;
    --dark-light: #161616;
    --border: #2a2a2a;
    --white: #ffffff;
    --text: #c8c8c8;

}

/*====================================
  CONTAINER
====================================*/

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

/*====================================
  TYPOGRAPHY
====================================*/

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title h2 {

    font-family: 'Bebas Neue', sans-serif;
    font-size: 54px;
    margin-top: 10px;
    letter-spacing: 2px;

}

/*====================================
 BUTTONS
====================================*/

.btn-red {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 34px;

    background: var(--primary);
    color: #fff;

    border-radius: 6px;
    font-weight: 600;

    transition: .3s;

}

.btn-red:hover {

    background: #ff3137;
    transform: translateY(-3px);

}

.btn-outline {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 34px;

    border: 2px solid var(--yellow);

    color: #fff;

    border-radius: 6px;

    transition: .3s;

}

.btn-outline:hover {

    background: var(--yellow);
    color: #111;

}

/*====================================
 HEADER
====================================*/

header {

    position:relative;

    width: 100%;

    top: 0;
    left: 0;

    z-index: 999;

    background: #000;

    border-bottom: 1px solid var(--primary);

}

header .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 95px;
    padding-left: 380px;

}

.logo {
    width: 180px;
    position: absolute;
        left: 90px;
        top: -20px;
    /* Always reserve this space */
    flex-shrink: 0;
    background-color: #000;
    border-radius: 50%;
    border-bottom: solid 1px var(--primary);
}

#header.scrolled .logo img {
    height: 68px;
    object-fit: cover;
    width: 100%;
    padding-top: 0;
    
}

#header.scrolled {
    border-bottom: solid 1px var(--primary);
}

#header.scrolled #navbar{
    margin-left: 20px;
}

.logo img {
    padding-top: 25px;
    width: 100%;
    height: auto;
    
    z-index: 1000;

}

nav ul {

    display: flex;

    gap: 35px;

}

nav a {
font-family: 'Manrope' sans-serif;
    color: #fff;

    text-transform: uppercase;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 1px;

    position: relative;

    transition: .3s;

}

nav a:hover,
nav a.active {

    color: var(--yellow);

}

nav a.active::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -18px;

    width: 100%;
    height: 3px;

    background: var(--yellow);

}

.header-right {

    display: flex;

    align-items: center;

    gap: 35px;

}

.phone {

    display: flex;

    align-items: center;

    gap: 15px;

}

.phone i {

    font-size: 22px;

    color: #fff;

}

.phone h4 {

    font-size: 18px;

}

.phone span {

    color: #aaa;

    font-size: 13px;

}

/*====================================
 HERO
====================================*/

.hero {

    min-height: 720px;

    position: relative;

    display: flex;

    align-items: center;

    background:

       linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.65),
                    rgba(0, 0, 0, 0.55),
                    rgba(0, 0, 0, 0.25)),

        url("../images/bikehero.webp") center center/cover no-repeat;
        

}

.hero-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 70px;

}

.hero-left {

    max-width: 640px;

}

.hero h1 {

    font-family: 'Bebas Neue';

    font-size: 86px;

    line-height: 0.95;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.hero h1 span {

    display: block;

}

.hero .yellow {

    color: var(--yellow);

}

.hero p {

    margin: 35px 0;

    color: #ddd;

    max-width: 560px;

    font-size: 18px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

}

/*====================================
 FEATURE CARDS
====================================*/

.hero-right {

    width: 320px;

}

.feature-box {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 28px;

    background: #111;

    border: 1px solid #2c2c2c;

    border-radius: 10px;

    margin-bottom: 22px;

    transition: .35s;

}

.feature-box:hover {

    transform: translateX(-10px);

    border-color: var(--primary);

}

.feature-box i {

    width: 65px;
    height: 65px;

    border-radius: 50%;

    border: 2px solid var(--yellow);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--yellow);

    font-size: 26px;

}

.feature-box h4 {

    font-size: 24px;

    font-family: 'Bebas Neue';
    font-weight: 500;

    letter-spacing: 1px;

}

.feature-box span {

    color: var(--yellow);

    font-weight: 600;

}

/*====================================
 STATS
====================================*/

.stats {

    margin-top: -70px;

    position: relative;

    z-index: 10;

}

.stats-wrapper {

    background: #111;

    border: 1px solid var(--border);

    border-radius: 12px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}

.stat {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding: 38px 20px;

    border-right: 1px solid #2d2d2d;

}

.stat:last-child {

    border: none;

}

.stat i {

    font-size: 42px;

    color: var(--yellow);

}

.stat h2 {

    font-size: 48px;

    font-family: 'Bebas Neue';

    line-height: 1;

}

.stat p {

    color: #bfbfbf;

    text-transform: uppercase;

    font-size: 14px;

}

/*====================================
 SERVICES
====================================*/

.services {

    padding: 110px 0;

}

.service-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}

.service-card {

    background: #111;

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 35px;

    display: flex;

    gap: 22px;

    transition: .35s;

}

.service-card:hover {

    border-color: var(--primary);

    transform: translateY(-8px);

}

.service-card img {

    width: 72px;
    height: 72px;
    object-fit: contain;

}

.service-card h3 {

    font-family: 'Bebas Neue';

    font-size: 34px;

    margin-bottom: 8px;

    letter-spacing: 1px;

}

.service-card p {

    color: #c5c5c5;

    margin-bottom: 16px;

}

.service-card a {

    color: var(--yellow);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.service-card a:hover {

    color: #fff;

}

/*====================================
WHY CHOOSE US
====================================*/

.why-us {
    padding: 80px 0;
}

.why-wrapper {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
}

.why-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content h2,
.process-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.why-content h2 span,
.process-content h2 span {
    color: var(--yellow);
}

.why-list {
    margin: 30px 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: #d8d8d8;
}

.why-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--yellow);
    font-size: 12px;
}

/*====================================
SERVICE PROCESS
====================================*/

.our-process{
    padding: 90px 0;
}

.process-content {
    padding-left: 40px;
    border-left: 1px solid #2d2d2d;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 50px;
    right: 50px;
    top: 38px;
    height: 2px;
    background: #3a3a3a;
    z-index: 0;
}

.step {
    width: 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 76px;
    height: 76px;
    margin: auto;
    border-radius: 50%;
    border: 3px solid var(--yellow);
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    transition: .3s;
}

.step:hover .step-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    margin: -14px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.step h4 {
    font-family: 'Bebas Neue';
    font-size: 26px;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

.step p {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.5;
}

/*====================================
BRANDS
====================================*/

.brands {
    padding: 70px 0;
    background-color: #0C0C0B;
}

.brands-wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.brand-item {
    padding: 35px;
    background: #101010;
    border-right: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.brand-item:last-child {
    border-right: none;
}

.brand-item:hover {
    background: #171717;
}

.brand-item img {
    max-height: 45px;
    opacity: .7;
    filter: grayscale(100%);
    transition: .35s;
}

.brand-item:hover img {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

/*====================================
BEFORE AFTER
====================================*/

.before-after {
    padding: 90px 0;
}

.ba-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
}

.before-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.before-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.before-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.before-card:hover img {
    transform: scale(1.08);
}

.tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

/*====================================
PRICING
====================================*/

.pricing {
    display: grid;
    gap: 25px;
}

.price-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    transition: .35s;
}

.price-card.featured {
    background: linear-gradient(180deg, #c3151c, #7b090d);
    border: none;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card h4 {
    font-family: 'Bebas Neue';
    font-size: 34px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.price {
    font-size: 54px;
    font-family: 'Bebas Neue';
    margin-bottom: 25px;
}

.price-card ul {
    margin-bottom: 35px;
}

.price-card li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    color: #ddd;
}

.price-card li i {
    color: var(--yellow);
}

.price-card .btn-red,
.price-card .btn-outline {
    width: 100%;
    justify-content: center;
}

/*====================================
FOOTER
====================================*/

footer {
    background: url(../images/footerback.webp) center center/cover no-repeat;

    padding: 80px 0 30px;
    border-top: 1px solid #202020;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 2.5fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-logo h3{
    color: var(--primary);
    font-size: 24px;
    letter-spacing: 1.5px;
}

.footer-logo p {
    color: #a8a8a8;
    max-width: 300px;
}

.footer-title {
    position: relative;
    display: inline-block;
    font-family: 'Bebas Neue';
    font-size: 28px;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 3px;

    background: #e31b23;
    border-radius: 10px;
    display: block;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bcbcbc;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 6px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bdbdbd;
}

.contact-info i {
    color: #d9232d;
    font-size: 18px;
    width: 22px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-info span {
    display: block;
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #222;
    text-align: center;
    color: #8b8b8b;
    font-size: 14px;
}

/*====================================
COMMON HOVER EFFECTS
====================================*/

.service-card,
.feature-box,
.price-card,
.before-card,
.brand-item {
    transition: all .35s ease;
}

.btn-red,
.btn-outline {
    transition: all .3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.price-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
}

.before-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.brand-item:hover {
    box-shadow: inset 0 0 0 1px var(--primary);
}

/*====================================================
LARGE DEVICES (1200px)
====================================================*/

@media (max-width:1200px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero-content {
        gap: 50px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .why-wrapper {
        grid-template-columns: 350px 1fr;
    }

    .process-content {
        grid-column: 1/-1;
        padding-left: 0;
        border: none;
        margin-top: 40px;
    }

    .brands-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

    .ba-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing {
        grid-template-columns: repeat(3, 1fr);
    }

}

/*====================================================
LAPTOP (992px)
====================================================*/

/*============================
MENU TOGGLE
=============================*/

.menu-toggle {
    display: none;
    width: 35px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 22px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: .4s;
    border-radius: 5px;
}

/* Animate Hamburger */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

/*============================
TABLET & MOBILE
=============================*/

@media(max-width:992px) {

    header .container {
        height: 100px;
        gap: 5px;
        padding-left: 0;
    }

    .logo{
        position: static;
        left: 0;
        width: 100px;
    }


    .logo img {
       height: 90px;
      
        padding-top: 0;
    }

    .menu-toggle {
        display: flex;
    }

    

    nav {

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: #000;

        max-height: 0;

        overflow: hidden;

        transition: .4s ease;

        display: block;

        visibility: hidden;

    z-index: 9999;

    }
       

    nav.active {
        display: block;
        max-height: 500px !important;
        visibility: visible;
    }

    nav ul {

        flex-direction: column;

        gap: 0;

    }

    nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    nav ul li a {

        display: block;

        padding: 18px 25px;

    }

    nav a.active::after {
        display: none;
    }

}

/*============================
SMALL MOBILE
=============================*/

@media(max-width:576px) {

    header .container {
        height: 100px;
        gap: 5px;
    }

    nav {
        top: 70px;
    }

}

@media (max-width:992px) {

    header .container {
        height: 85px;
    }

    .header-right .phone {
        display: none;
    }

    .hero {
        padding: 100px 0 70px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .feature-box {
        margin: 0;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-wrapper {
        grid-template-columns: 1fr;
    }

    .why-image {
        max-width: 500px;
        margin: auto;
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }

    .process-steps::before {
        display: none;
    }

    .brands-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .before-gallery {
        grid-template-columns: 1fr;
    }

    .pricing {
        grid-template-columns: 1fr;
    }

    .price-card {
        max-width: 450px;
        margin: auto;
    }

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }

}

/*====================================================
TABLET
====================================================*/

@media (max-width:768px) {

    .section-title h2 {
        font-size: 42px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 260px;
    }

    .hero-right {
        grid-template-columns: 1fr;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stats{
        padding-top: 50px;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid #2d2d2d;
       
    }

    .stat:last-child {
        border-bottom: none;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card img {
        margin: auto;
    }
    .why-wrapper{
        flex-direction: column;
    }

    .why-content h2,
    .process-content h2 {
        font-size: 42px;
    }

    .step {
        width: 100%;
    }

    .brands-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-item {
        padding: 30px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-title {
        margin-top: 20px;
    }

}

/*====================================================
MOBILE
====================================================*/

@media (max-width:576px) {

    .container {
        width: 92%;
    }

    header {
        padding: 5px 0;
        justify-content: center;
        align-items: center;
    }

    header .btn-red{
        padding: 10px;
        font-size: 14px;
       width: 100%;
       justify-content: end;
    }


    .btn-red,
    .btn-outline {
        width: 100%;
    }

    .hero {
        padding: 110px 0;
    }

    .hero h1 {
        font-size: 46px;
        line-height: 1;
    }

    .hero p {
        font-size: 15px;
        padding-bottom: 30px;
    }

    .feature-box {
        padding: 22px;
    }

    .feature-box h4 {
        font-size: 22px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .stat {
        flex-direction: column;
        text-align: center;
    }

    .stat h2 {
        font-size: 38px;
    }

    .service-card {
        padding: 28px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .why-us,
    .services,
    .before-after,
    .brands {
        padding: 70px 0;
    }

    .process-content h2,
    .why-content h2 {
        font-size: 36px;
    }

    .step-icon {
        width: 65px;
        height: 65px;
    }

    .step h4 {
        font-size: 22px;
    }

    .brand-item {
        padding: 25px;
    }

    .brand-item img {
        max-height: 35px;
    }

    .price-card {
        padding: 30px;
    }

    .price {
        font-size: 46px;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-bottom {
        font-size: 13px;
    }

}

/*====================================================
SMALL MOBILE
====================================================*/

@media (max-width:420px) {

    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .feature-box {
        gap: 15px;
    }

    .feature-box i {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .why-content h2,
    .process-content h2 {
        font-size: 32px;
    }

    .price {
        font-size: 40px;
    }

    .footer-title {
        font-size: 24px;
    }

}

/*====================================================
UTILITY
====================================================*/

.hide {
    display: none;
}

.show {
    display: block;
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

/*================
About Section
=============*/

/*=========================================
        ABOUT HERO SECTION
=========================================*/

.about {
    position: relative;
    overflow: hidden;
    padding: 170px 0 120px;
    background: url("../images/about-herooo.webp") center center/cover no-repeat;
}

/*=========================================
        OVERLAY
=========================================*/

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, .92) 0%,
            rgba(0, 0, 0, .78) 45%,
            rgba(0, 0, 0, .50) 100%);

    z-index: 1;
}

/*=========================================
        CONTAINER
=========================================*/

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 700px;
}

/*=========================================
        TAG
=========================================*/

.section-tag {

    display: inline-block;

    color: #f4b400;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;

}

/*=========================================
        HEADING
=========================================*/

.about-content h1 {

    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(60px, 8vw, 90px);

    line-height: .95;

    color: #ffffff;

    letter-spacing: 2px;

    margin-bottom: 25px;

}

.about-content h1 span {

    color: #d62828;

}

/*=========================================
        PARAGRAPH
=========================================*/

.about-content p {

    max-width: 620px;

    color: #d2d2d2;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 45px;

}

/*=========================================
        BUTTONS
=========================================*/

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

/* Primary Button */

.btn-red {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 36px;

    background: #d62828;

    color: #ffffff;

    border-radius: 8px;

    font-weight: 600;

    transition: .35s;

}

.btn-red:hover {

    background: #b91c1c;

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(214, 40, 40, .35);

}

/* Secondary Button */

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 36px;

    border: 2px solid #f4b400;

    color: #f4b400;

    border-radius: 8px;

    font-weight: 600;

    transition: .35s;

}

.btn-outline:hover {

    background: #f4b400;

    color: #111111;

    transform: translateY(-5px);

}

/*=========================================
        DECORATIVE GLOW
=========================================*/

.about::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    background: rgba(214, 40, 40, .12);

    filter: blur(120px);

    top: -100px;

    right: -100px;

}

.about::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    background: rgba(244, 180, 0, .08);

    filter: blur(100px);

    bottom: -100px;

    left: -100px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px) {

    .about {

        padding: 140px 0 100px;

        background-position: center;

    }

    .about-content {

        max-width: 100%;

    }

    .about-content h1 {

        font-size: 65px;

    }

}

@media(max-width:768px) {

    .about {

        padding: 120px 0 80px;

    }

    .about-content {

        text-align: center;

    }

    .about-content p {

        margin-left: auto;

        margin-right: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

    .about-content h1 {

        font-size: 52px;

    }

}

@media(max-width:576px) {

    .about {

        padding: 100px 0 70px;

    }

    .about-content h1 {

        font-size: 42px;

    }

    .about-content p {

        font-size: 15px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn-red,
    .btn-outline {

        width: 100%;

    }

}

/*=====================================
    STORY SECTION
=====================================*/

.about-story {

    padding: 120px 0;
    background: linear-gradient(to bottom, #111, #0a0a0a);

}

.about-story .container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

}

.story-image {

    overflow: hidden;
    border-radius: 22px;

}

.story-image img {

    transition: .6s;

}

.story-image:hover img {

    transform: scale(1.08);

}

.story-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 84px;
    font-weight: 600;
    letter-spacing: 1.5;
    line-height: 1;
    margin-bottom: 25px;

}

.story-content h2 span{
    color: var(--primary);
}

.story-content p {

    margin-bottom: 20px;

}

/*=====================================
    FEATURES
=====================================*/

.story-features {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 45px;

}

.feature {

    display: flex;
    align-items: center;
    gap: 15px;

    background: #161616;

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 14px;

    padding: 18px;

    transition: var(--transition);

}

.feature:hover {

    border-color: var(--yellow);

    transform: translateY(-6px);

}

.icon {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(246, 180, 0, .15);

    color: var(--yellow);

    font-weight: 700;

    flex-shrink: 0;

}

/*=====================================
    IMAGE DECORATION
=====================================*/

.hero-image::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    background: rgba(246, 180, 0, .08);

    filter: blur(120px);

    top: -60px;
    right: -80px;

    z-index: -1;

}

.story-image::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(225, 29, 46, .12);

    filter: blur(90px);

    bottom: -40px;
    left: -40px;

}

/*=====================================
    RESPONSIVE
=====================================*/

@media(max-width:1100px) {

    .about-hero .container,
    .about-story .container {

        grid-template-columns: 1fr;

    }

    .hero-image {

        order: -1;

    }

    .hero-content {

        text-align: center;

    }

    .hero-content p {

        margin: auto;
        margin-top: 25px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .story-content {

        text-align: center;

    }

    .story-features {

        margin-top: 35px;

    }

}

@media(max-width:768px) {

    .about-hero {

        padding: 120px 0 80px;

    }

    .about-story {

        padding: 80px 0;

    }

    .story-features {

        grid-template-columns: 1fr;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn-primary,
    .btn-outline {

        width: 100%;
        text-align: center;

    }

}

@media(max-width:500px) {

    h1 {

        font-size: 58px;

    }

    h2 {

        font-size: 42px;

    }

    .section-tag {

        font-size: 12px;

    }

    .hero-content p,
    .story-content p {

        font-size: 15px;

    }

}

/*=========================================
        WHY CHOOSE US
=========================================*/

.why-us {

    padding: 120px 0;
    background: #0b0b0b;
    position: relative;
    overflow: hidden;

}

/* Background Glow */

.why-us::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(246, 180, 0, .05);

    filter: blur(150px);

    top: -180px;
    right: -150px;

}

.why-us::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(225, 29, 46, .06);

    filter: blur(120px);

    bottom: -120px;
    left: -120px;

}

/*=========================================
        HEADING
=========================================*/

.section-heading {

    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;

}

.section-heading h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 104px;
    letter-spacing: 1;
    line-height: 56px;
}

.section-heading h1 span{
   color: var(--primary);
}

.section-heading h2 {

    margin: 15px 0 20px;

}

.section-heading p {

    max-width: 650px;
    margin: auto;

}

/* Yellow Accent */

.section-heading h2::after {

    content: "";

    width: 80px;
    height: 4px;

    background: var(--yellow);

    display: block;

    margin: 22px auto 0;

    border-radius: 20px;

}

/*=========================================
        GRID
=========================================*/

.why-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;

}

/*=========================================
        CARD
=========================================*/

.why-card {

    background: linear-gradient(180deg, #181818, #111111);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 20px;

    padding: 45px 35px;

    text-align: center;

    transition: .4s ease;

    position: relative;

    overflow: hidden;

}

/* Top Accent */

.why-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--yellow);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.why-card:hover::before {

    transform: scaleX(1);

}

.why-card:hover {

    transform: translateY(-12px);

    border-color: rgba(246, 180, 0, .35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .45);

}

/*=========================================
        ICON
=========================================*/

.why-icon {

    width: 90px;
    height: 90px;

    margin: auto auto 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    color: var(--yellow);

    background: rgba(246, 180, 0, .08);

    border: 1px solid rgba(246, 180, 0, .18);

    transition: .35s;

}

.why-card:hover .why-icon {

    background: var(--yellow);

    color: #000;

    transform: rotate(-10deg) scale(1.08);

}

/*=========================================
        TEXT
=========================================*/

.why-card h3 {

    color: #fff;

    font-size: 24px;

    margin-bottom: 15px;

    font-weight: 500;

}

.section-heading h1{
    font-size: 58px;
    letter-spacing: 2px;
}

.why-card p {
    font-family: 'Inter', sans-serif;

    color: #bdbdbd;

    line-height: 1.8;

    font-size: 15px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .why-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .why-us {

        padding: 90px 0;

    }

    .section-heading {

        margin-bottom: 50px;

    }

    .why-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .why-card {

        padding: 35px 25px;

    }

    .why-icon {

        width: 75px;
        height: 75px;

        font-size: 28px;

    }

    .why-card h3 {

        font-size: 22px;

    }

}

@media(max-width:480px) {

    .section-heading h2 {

        font-size: 42px;

    }

    .section-heading p {

        font-size: 15px;

    }

    .why-card {

        padding: 30px 20px;

    }

}

/*======================================
        OUR SERVICE PROCESS
======================================*/

.service-process {

    padding: 120px 0;
    background: linear-gradient(180deg, #111111, #090909);
    position: relative;
    overflow: hidden;

}

/* Background Glow */

.service-process::before {

    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(246, 180, 0, .04);

    filter: blur(150px);

    top: -220px;
    left: -180px;

}

.service-process::after {

    content: "";
    position: absolute;

    width: 400px;
    height: 400px;

    background: rgba(225, 29, 46, .05);

    filter: blur(140px);

    bottom: -180px;
    right: -150px;

}

/*======================================
        PROCESS WRAPPER
======================================*/

.process-wrapper {

    margin-top: 70px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    position: relative;
    z-index: 2;

}

/* Connecting Line */

.process-line {

    flex: 1;
    height: 3px;

    background: linear-gradient(to right,
            var(--yellow),
            rgba(255, 255, 255, .08));

    margin-top: 80px;

}

.service-process h1{
    font-size: 56px;
    line-height: 56px;
    margin-bottom: 10px;
}



/*======================================
        CARD
======================================*/

.process-card {

    width: 250px;

    background: linear-gradient(180deg, #181818, #121212);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    padding: 35px 25px;

    text-align: center;

    position: relative;

    transition: .4s ease;

}

.process-card:hover {

    transform: translateY(-12px);

    border-color: rgba(246, 180, 0, .4);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .45);

}

/*======================================
        NUMBER
======================================*/

.process-number {

    position: absolute;

    top: -18px;
    left: 50%;

    transform: translateX(-50%);

    background: var(--primary);

    color: #fff;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    font-size: 15px;

    border: 4px solid #111;

}

/*======================================
        ICON
======================================*/

.process-icon {

    width: 90px;
    height: 90px;

    margin: 25px auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    color: var(--yellow);

    background: rgba(246, 180, 0, .08);

    border: 1px solid rgba(246, 180, 0, .2);

    transition: .35s;

}

.process-card:hover .process-icon {

    background: var(--yellow);

    color: #111;

    transform: rotate(-8deg) scale(1.08);

}

/*======================================
        TEXT
======================================*/

.process-card h3 {

    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;

    margin-bottom: 15px;

    font-weight: 500;

}
.section-heading h2{
   font-size: 42px;
}
.process-card p {

    color: #bdbdbd;

    line-height: 1.8;
    font-size: 15px;

}

/*======================================
        HOVER BAR
======================================*/

.process-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: var(--yellow);

    transform: scaleX(0);

    transition: .35s;

    transform-origin: left;

}

.process-card:hover::before {

    transform: scaleX(1);

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:1200px) {

    .process-wrapper {

        flex-wrap: wrap;
        gap: 35px;

    }

    .process-line {

        display: none;

    }

    .process-card {

        width: calc(50% - 20px);

    }

}

@media(max-width:768px) {

    .service-process {

        padding: 90px 0;

    }

    .process-wrapper {

        margin-top: 50px;

    }

    .process-card {

        width: 100%;

    }

    .process-icon {

        width: 75px;
        height: 75px;

        font-size: 28px;

    }

    .process-card h3 {

        font-size: 22px;

    }

}

@media(max-width:480px) {

    .process-card {

        padding: 30px 20px;

    }

    .process-number {

        width: 40px;
        height: 40px;

        font-size: 13px;

    }

}

/*======================================
        CTA SECTION
======================================*/

.cta-section {
    margin: 50px 0;
    position: relative;
    overflow: hidden;

    padding: 40px 0;

    background: url("../images/bike-cta.png") center center/cover no-repeat;

}

/* Overlay */

.cta-overlay {

    position: absolute;
    inset: 0;

}

/* Container */

.cta-section .container {

    position: relative;
    z-index: 2;

}

/* Content */

.cta-content {

    max-width: 750px;
    margin-left: 40%;


}

/* Heading */

.cta-content h2 {

    font-size: clamp(48px, 6vw, 80px);

    line-height: 1.1;

    margin: 20px 0;

}

.cta-content h2 span{
    color: var(--yellow);
}

/* Paragraph */

.cta-content p {

    font-size: 17px;

    color: #d1d1d1;

    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 45px;

}

/*======================================
        BUTTONS
======================================*/

.cta-buttons {

    display: flex;
    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 45px;

}

.cta-buttons a {

    display: flex;
    align-items: center;
    gap: 12px;

}

.cta-buttons i {

    font-size: 18px;

}

/*======================================
        FEATURES
======================================*/

.cta-features {

    display: flex;

    gap: 40px;

    flex-wrap: wrap;

}

.cta-feature {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    font-weight: 500;

}

.cta-feature i {

    color: var(--yellow);

    font-size: 20px;

}

/*======================================
        DECORATIVE GLOW
======================================*/

.cta-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(246, 180, 0, .06);

    filter: blur(150px);

    top: -200px;
    right: -150px;

}

.cta-section::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(225, 29, 46, .06);

    filter: blur(130px);

    bottom: -150px;
    left: -100px;

}

/*======================================
        HOVER EFFECTS
======================================*/

.btn-primary {

    transition: .35s ease;

}

.btn-primary:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(225, 29, 46, .35);

}

.btn-outline {

    transition: .35s ease;

}

.btn-outline:hover {

    transform: translateY(-5px);

    border-color: var(--yellow);

    color: var(--yellow);

    background: rgba(246, 180, 0, .08);

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px) {

    .cta-section {

        padding: 100px 0;

        text-align: center;

    }

    .cta-content {

        margin: auto;

    }

    .cta-content p {

        margin-left: auto;
        margin-right: auto;

    }

    .cta-buttons {

        justify-content: center;

    }

    .cta-features {

        justify-content: center;

        gap: 25px;

    }

}

@media(max-width:768px) {

    .cta-content h2 {

        font-size: 48px;

    }

    .cta-buttons {

        flex-direction: column;

    }

    .cta-buttons a {

        justify-content: center;

        width: 100%;

    }

    .cta-features {

        flex-direction: column;

        align-items: center;

    }

}

@media(max-width:480px) {

    .cta-section {

        padding: 80px 0;

    }

    .cta-content h2 {

        font-size: 38px;

    }

    .cta-content p {

        font-size: 15px;

    }

}

/*=========================================
        SERVICES HERO SECTION
=========================================*/

.service-page-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0;
    background: #090909;
}

/* Background Image */

.service-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/service-head.webp") center center/cover no-repeat;
    z-index: 0;
}

/* Dark Overlay */

.service-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .92) 15%,
            rgba(35, 35, 35, 0.75) 55%,
            rgba(255, 255, 255, 0) 0%);
    z-index: 1;
}

.service-page-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/*=========================================
        LEFT CONTENT
=========================================*/

.service-tag {
    display: inline-block;
    color: #e11d2e;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 58px;
    line-height: .95;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 30px;
}

.service-title span {
    color: #f6b400;
}

.service-description {
    color: #c9c9c9;
    font-size: 17px;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 40px;
}

/*=========================================
        BUTTONS
=========================================*/

.service-action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-btn-primary,
.service-btn-secondary {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 35px;

    font-weight: 600;

    border-radius: 8px;

    transition: .35s;

}

.service-btn-primary {

    background: #e11d2e;
    color: #fff;

}

.service-btn-primary:hover {

    background: #c91828;
    transform: translateY(-5px);

    box-shadow: 0 20px 35px rgba(225, 29, 46, .35);

}

.service-btn-secondary {

    color: #fff;
    border: 2px solid rgba(255, 255, 255, .15);

}

.service-btn-secondary:hover {

    border-color: #f6b400;
    color: #f6b400;
    background: rgba(246, 180, 0, .08);
    transform: translateY(-5px);

}

/*=========================================
        TRUST ITEMS
=========================================*/

.service-trust-list {

    display: flex;
    gap: 35px;
    flex-wrap: wrap;

}

.service-trust-item {

    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;

    font-size: 15px;

}

.service-trust-item i {

    color: #f6b400;
    font-size: 18px;

}

/*=========================================
        RIGHT IMAGE
=========================================*/

.service-page-image {

    position: relative;

}

.service-image-wrapper {

    position: relative;

}

.service-image-wrapper img {

    width: 100%;
    border-radius: 25px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);

    transition: .5s;

}

.service-image-wrapper:hover img {

    transform: scale(1.03);

}

/*=========================================
        FLOATING CARD
=========================================*/

.service-floating-card {

    position: absolute;

    bottom: 35px;
    left: -40px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: rgba(18, 18, 18, .95);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);

    padding: 20px 25px;

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);

}

.service-floating-icon {

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(246, 180, 0, .12);

    color: #f6b400;

    border-radius: 50%;

    font-size: 26px;

}

.service-floating-content h4 {

    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;

}

.service-floating-content p {

    color: #bdbdbd;
    font-size: 14px;

}

/*=========================================
        GLOW EFFECTS
=========================================*/

.service-page-image::before {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    background: rgba(246, 180, 0, .08);

    filter: blur(130px);

    top: -80px;
    right: -60px;

    z-index: -1;

}

.service-page-image::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background: rgba(225, 29, 46, .08);

    filter: blur(100px);

    bottom: -60px;
    left: -80px;

    z-index: -1;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .service-page-hero .container {

        grid-template-columns: 1fr;
        text-align: center;

    }

    .service-page-image {

        order: -1;

    }

    .service-description {

        margin: auto;
        margin-bottom: 40px;

    }

    .service-action-buttons {

        justify-content: center;

    }

    .service-trust-list {

        justify-content: center;

    }

    .service-floating-card {

        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;

    }

}

@media(max-width:768px) {

    .service-page-hero {

        padding: 120px 0 80px;

    }

    .service-title {

        font-size: 60px;

    }

    .service-action-buttons {

        flex-direction: column;

    }

    .service-btn-primary,
    .service-btn-secondary {

        width: 100%;
        justify-content: center;

    }

    .service-floating-card {

        position: relative;

        left: auto;
        bottom: auto;
        transform: none;

        margin: 25px auto 0;
        width: fit-content;

    }

}

@media(max-width:480px) {

    .service-title {

        font-size: 48px;

    }

    .service-description {

        font-size: 15px;

    }

    .service-trust-list {

        flex-direction: column;
        align-items: flex-start;
        gap: 18px;

    }

    .service-page-hero {

        padding: 100px 0 70px;

    }

}

/*=========================================
        SERVICE INTRO SECTION
=========================================*/

.service-intro {
    padding: 120px 0;
    background: #111111;
    position: relative;
    overflow: hidden;
}

/* Background Glow */

.service-intro::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(246, 180, 0, .05);
    filter: blur(150px);
    top: -180px;
    left: -180px;
}

.service-intro::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(225, 29, 46, .05);
    filter: blur(120px);
    bottom: -150px;
    right: -150px;
}

/*=========================================
        WRAPPER
=========================================*/

.service-intro-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/*=========================================
        IMAGE
=========================================*/

.service-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.service-intro-image img {
    width: 100%;
    display: block;
    border-radius: 25px;
    transition: .5s ease;
}

.service-intro-image:hover img {
    transform: scale(1.05);
}

/*=========================================
        FLOATING BADGE
=========================================*/

.service-image-badge {

    position: absolute;

    right: 30px;
    bottom: 30px;

    background: rgba(20, 20, 20, .95);

    backdrop-filter: blur(15px);

    padding: 25px 30px;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, .08);

    text-align: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);

}

.service-image-badge h3 {

    font-size: 42px;
    color: #f6b400;
    margin-bottom: 5px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;

}

.service-image-badge span {

    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;

}

/*=========================================
        CONTENT
=========================================*/

.service-intro-tag {

    display: inline-block;

    color: #e11d2e;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.service-intro-title {

    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(50px, 5vw, 70px);

    color: #fff;

    line-height: 1;

    margin-bottom: 25px;

}

.service-intro-title span {

    color: #f6b400;

}

.service-intro-text {

    color: #bdbdbd;

    line-height: 1.9;

    margin-bottom: 20px;

    font-size: 16px;

}

/*=========================================
        FEATURES
=========================================*/

.service-features-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 40px;

}

.service-feature-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    background: #181818;

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 18px;

    transition: .35s;

}

.service-feature-box:hover {

    transform: translateY(-8px);

    border-color: rgba(246, 180, 0, .35);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .3);

}

.service-feature-icon {

    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(246, 180, 0, .08);

    color: #f6b400;

    font-size: 24px;

    transition: .35s;

}

.service-feature-box:hover .service-feature-icon {

    background: #f6b400;

    color: #111;

    transform: rotate(-8deg);

}

.service-feature-box h4 {

    color: #fff;

    font-size: 20px;

    margin-bottom: 8px;

}

.service-feature-box p {

    color: #bdbdbd;

    font-size: 14px;

    line-height: 1.7;

}

/*=========================================
        BUTTON
=========================================*/

.service-intro-buttons {

    margin-top: 45px;

}

.service-intro-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #e11d2e;

    color: #fff;

    padding: 16px 34px;

    border-radius: 8px;

    font-weight: 600;

    transition: .35s;

}

.service-intro-btn:hover {

    background: #c91828;

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(225, 29, 46, .35);

}

.service-intro-btn i {

    transition: .35s;

}

.service-intro-btn:hover i {

    transform: translateX(5px);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .service-intro-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;

    }

    .service-intro-content {

        text-align: center;

    }

    .service-intro-text {

        max-width: 700px;

        margin-left: auto;
        margin-right: auto;

    }

    .service-intro-buttons {

        display: flex;
        justify-content: center;

    }

}

@media(max-width:768px) {

    .service-intro {

        padding: 90px 0;

    }

    .service-features-grid {

        grid-template-columns: 1fr;

    }

    .service-image-badge {

        right: 20px;
        bottom: 20px;

        padding: 18px 22px;

    }

    .service-image-badge h3 {

        font-size: 34px;

    }

    .service-intro-title {

        font-size: 48px;

    }

}

@media(max-width:480px) {

    .service-intro {

        padding: 70px 0;

    }

    .service-image-badge {

        position: relative;

        right: auto;
        bottom: auto;

        margin: 20px auto 0;

        width: 220px;

    }

    .service-intro-title {

        font-size: 40px;

    }

    .service-feature-box {

        padding: 18px;

    }

    .service-feature-icon {

        width: 55px;
        height: 55px;

        font-size: 20px;

    }

}

/*=========================================
        CORE SERVICES SECTION
=========================================*/

.core-services {
    padding: 120px 0;
    background: #0c0c0c;
    position: relative;
    overflow: hidden;
}

/* Background Glow */

.core-services::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(246, 180, 0, .05);
    filter: blur(150px);
    top: -180px;
    right: -180px;
}

.core-services::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(225, 29, 46, .05);
    filter: blur(120px);
    bottom: -120px;
    left: -150px;
}

/*=========================================
        SECTION HEADING
=========================================*/

.core-services-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.core-services-tag {

    display: inline-block;

    color: #e11d2e;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;

}

.core-services-title {

    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(48px, 5vw, 70px);

    color: #fff;

    line-height: 1;

    margin-bottom: 20px;

    letter-spacing: 2px;

}

.core-services-title span {

    color: #f6b400;

}

.core-services-description {

    color: #bdbdbd;

    line-height: 1.8;

    font-size: 16px;

}

/*=========================================
        GRID
=========================================*/

.core-services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    position: relative;
    z-index: 2;

}

/*=========================================
        CARD
=========================================*/

.service-card {

    background: linear-gradient(180deg, #1a1a1a, #121212);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 22px;

    padding: 35px;

    transition: .4s ease;

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

}

/* Top Border Animation */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #f6b400;

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.service-card:hover::before {

    transform: scaleX(1);

}

.service-card:hover {

    transform: translateY(-10px);

    border-color: rgba(246, 180, 0, .35);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);

}

/*=========================================
        ICON
=========================================*/

.service-card-icon {

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(246, 180, 0, .08);

    color: #f6b400;

    font-size: 32px;

    margin-bottom: 25px;

    transition: .35s;

}

.service-card:hover .service-card-icon {

    background: #f6b400;

    color: #111;

    transform: rotate(-10deg) scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.service-card h3 {

    color: #fff;

    font-size: 24px;

    margin-bottom: 15px;

    font-weight: 500;
    letter-spacing: 2px;

}

.service-card p {

    color: #bdbdbd;

    line-height: 1.8;

    margin-bottom: 25px;

    font-size: 15px;

}

/*=========================================
        LIST
=========================================*/

.service-card ul {

    list-style: none;

    padding: 0;

    margin: 0 0 30px;

}

.service-card ul li {

    color: #d8d8d8;

    margin-bottom: 12px;

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 15px;

}

.service-card ul li i {

    color: #f6b400;

    font-size: 14px;

}

/*=========================================
        BUTTON
=========================================*/

.service-card-btn {

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #f6b400;

    font-weight: 600;

    transition: .35s;

}

.service-card-btn i {

    transition: .35s;

}

.service-card-btn:hover {

    color: #fff;

}

.service-card-btn:hover i {

    transform: translateX(6px);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .core-services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .core-services {

        padding: 90px 0;

    }

    .core-services-grid {

        grid-template-columns: 1fr;

    }

    .service-card {

        padding: 30px;

    }

    .service-card-icon {

        width: 70px;
        height: 70px;

        font-size: 28px;

    }

    .service-card h3 {

        font-size: 22px;

    }

}

@media(max-width:480px) {

    .core-services-title {

        font-size: 42px;

    }

    .service-card {

        padding: 25px;

    }

    .service-card-icon {

        width: 65px;
        height: 65px;

        font-size: 24px;

    }

    .service-card ul li {

        font-size: 14px;

    }

}

/*=========================================
        SPARE PARTS HERO SECTION
=========================================*/

.sp-hero {
    position: relative;
    overflow: hidden;
    background: #0f0f0f;
    padding: 150px 0;
}

/* Background Image */

.sp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/spare-hero.webp") center center/cover no-repeat;
    z-index: 0;
}

/* Dark Overlay */

.sp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .92) 15%,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .45) 0%);
    z-index: 1;
}

.sp-hero .container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/*=========================================
        LEFT CONTENT
=========================================*/

.sp-tag {
    display: inline-block;
    color: #f4b400;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.sp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: .95;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.sp-title span {
    color: #f4b400;
}

.sp-description {
    max-width: 560px;
    color: #c6c6c6;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/*=========================================
        BUTTONS
=========================================*/

.sp-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.sp-btn-primary,
.sp-btn-secondary {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 35px;

    border-radius: 8px;

    font-weight: 600;

    transition: .35s;
}

.sp-btn-primary {

    background: #d62828;
    color: #ffffff;

}

.sp-btn-primary:hover {

    background: #b91c1c;

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(214, 40, 40, .35);

}

.sp-btn-secondary {

    border: 2px solid #f4b400;

    color: #f4b400;

}

.sp-btn-secondary:hover {

    background: #f4b400;

    color: #111111;

    transform: translateY(-5px);

}

/*=========================================
        HIGHLIGHTS
=========================================*/

.sp-highlights {

    display: flex;
    flex-wrap: wrap;
    gap: 30px;

}

.sp-highlight {

    display: flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;

    font-size: 15px;

}

.sp-highlight i {

    color: #f4b400;

    font-size: 18px;

}

/*=========================================
        IMAGE
=========================================*/

.sp-image {
    position: relative;
}

.sp-image-wrapper {
    position: relative;
}

.sp-image-wrapper img {

    width: 100%;

    border-radius: 22px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);

    transition: .4s;

}

.sp-image-wrapper:hover img {

    transform: scale(1.03);

}

/*=========================================
        FLOATING CARD
=========================================*/

.sp-floating-card {

    position: absolute;

    left: -35px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 20px 25px;

    background: rgba(20, 20, 20, .96);

    border: 1px solid rgba(255, 255, 255, .08);

    border-left: 4px solid #d62828;

    border-radius: 18px;

    backdrop-filter: blur(12px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);

}

.sp-card-icon {

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(244, 180, 0, .12);

    color: #f4b400;

    font-size: 28px;

}

.sp-card-content h4 {

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 5px;

}

.sp-card-content p {

    color: #bcbcbc;

    font-size: 14px;

}

/*=========================================
        STOCK BADGE
=========================================*/

.sp-stock-badge {

    position: absolute;

    top: 25px;
    right: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    background: #d62828;

    color: #ffffff;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(214, 40, 40, .35);

}

.sp-stock-badge i {

    color: #f4b400;

}

/*=========================================
        DECORATIVE GLOW
=========================================*/

.sp-image::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background: rgba(244, 180, 0, .08);

    filter: blur(120px);

    right: -60px;
    top: -60px;

    z-index: -1;

}

.sp-image::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background: rgba(214, 40, 40, .08);

    filter: blur(100px);

    left: -70px;
    bottom: -70px;

    z-index: -1;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .sp-hero .container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .sp-description {

        margin: 0 auto 40px;

    }

    .sp-buttons {

        justify-content: center;

    }

    .sp-highlights {

        justify-content: center;

    }

    .sp-floating-card {

        left: 50%;

        transform: translateX(-50%);

    }

}

@media(max-width:768px) {

    .sp-hero {

        padding: 120px 0 80px;

    }

    .sp-title {

        font-size: 60px;

    }

    .sp-buttons {

        flex-direction: column;

    }

    .sp-btn-primary,
    .sp-btn-secondary {

        width: 100%;

        justify-content: center;

    }

    .sp-floating-card {

        position: relative;

        left: auto;
        bottom: auto;

        transform: none;

        margin: 25px auto 0;

        width: fit-content;

    }

    .sp-stock-badge {

        top: 15px;
        right: 15px;

    }

}

@media(max-width:480px) {

    .sp-title {

        font-size: 46px;

    }

    .sp-description {

        font-size: 15px;

    }

    .sp-highlights {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    .sp-floating-card {

        flex-direction: column;

        text-align: center;

    }

}

/*=========================================
        ABOUT SPARE PARTS SECTION
=========================================*/

.sp-about {
    position: relative;
    padding: 120px 0;
    background: #111111;
    overflow: hidden;
}

/* Decorative Glow */

.sp-about::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(244, 180, 0, .05);
    filter: blur(150px);
    top: -180px;
    left: -180px;
}

.sp-about::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(214, 40, 40, .05);
    filter: blur(120px);
    bottom: -150px;
    right: -150px;
}

/*=========================================
        WRAPPER
=========================================*/

.sp-about-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/*=========================================
        IMAGE
=========================================*/

.sp-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.sp-about-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    transition: .5s ease;
}

.sp-about-image:hover img {
    transform: scale(1.05);
}

/*=========================================
        FLOATING BADGE
=========================================*/

.sp-about-badge {

    position: absolute;

    right: 30px;
    bottom: 30px;

    background: rgba(20, 20, 20, .95);

    border-left: 4px solid #d62828;

    backdrop-filter: blur(12px);

    padding: 25px 30px;

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);

}

.sp-about-badge h3 {

    color: #f4b400;

    font-size: 42px;

    font-family: 'Bebas Neue', sans-serif;

    letter-spacing: 2px;

    margin-bottom: 5px;

}

.sp-about-badge span {

    color: #ffffff;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 1px;

}

/*=========================================
        CONTENT
=========================================*/

.sp-about-tag {

    display: inline-block;

    color: #f4b400;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;

}

.sp-about-title {

    font-family: 'Bebas Neue', sans-serif;

    font-size: 64px;
    letter-spacing: 1;

    color: #ffffff;

    line-height: 1;

    margin-bottom: 25px;

}

.sp-about-title span {

    color: #d62828;

}

.sp-about-text {

    color: #bdbdbd;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 20px;

}

/*=========================================
        FEATURES GRID
=========================================*/

.sp-about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 40px;

}

.sp-about-card {

    display: flex;

    gap: 18px;

    align-items: flex-start;

    padding: 22px;

    background: #181818;

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 18px;

    transition: .35s;

}

.sp-about-card:hover {

    transform: translateY(-8px);

    border-color: rgba(244, 180, 0, .35);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .35);

}

/*=========================================
        ICON
=========================================*/

.sp-about-icon {

    width: 60px;

    height: 60px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(244, 180, 0, .08);

    color: #f4b400;

    font-size: 24px;

    transition: .35s;

}

.sp-about-card:hover .sp-about-icon {

    background: #d62828;

    color: #ffffff;

    transform: rotate(-8deg);

}

/*=========================================
        TEXT
=========================================*/

.sp-about-card h4 {

    color: #ffffff;

    font-size: 20px;

    margin-bottom: 8px;

}

.sp-about-card p {

    color: #bdbdbd;

    font-size: 14px;

    line-height: 1.7;

}

/*=========================================
        BUTTON
=========================================*/

.sp-about-buttons {

    margin-top: 45px;

}

.sp-about-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #d62828;

    color: #ffffff;

    padding: 16px 34px;

    border-radius: 8px;

    font-weight: 600;

    transition: .35s;

}

.sp-about-btn:hover {

    background: #b91c1c;

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(214, 40, 40, .35);

}

.sp-about-btn i {

    transition: .35s;

}

.sp-about-btn:hover i {

    transform: translateX(6px);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .sp-about-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;

    }

    .sp-about-content {

        text-align: center;

    }

    .sp-about-text {

        max-width: 700px;

        margin-left: auto;
        margin-right: auto;

    }

    .sp-about-buttons {

        display: flex;

        justify-content: center;

    }

}

@media(max-width:768px) {

    .sp-about {

        padding: 90px 0;

    }

    .sp-about-features {

        grid-template-columns: 1fr;

    }

    .sp-about-title {

        font-size: 48px;

    }

    .sp-about-badge {

        right: 20px;

        bottom: 20px;

        padding: 20px;

    }

    .sp-about-badge h3 {

        font-size: 36px;

    }

}

@media(max-width:480px) {

    .sp-about {

        padding: 70px 0;

    }

    .sp-about-title {

        font-size: 40px;

    }

    .sp-about-badge {

        position: relative;

        right: auto;

        bottom: auto;

        margin: 20px auto 0;

        width: 220px;

        text-align: center;

    }

    .sp-about-card {

        padding: 18px;

    }

    .sp-about-icon {

        width: 55px;

        height: 55px;

        font-size: 22px;

    }

}

/*=========================================
        SPARE PARTS CATEGORIES
=========================================*/

.parts-categories {
    padding: 120px 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

/* Background Glow */

.parts-categories::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(214, 40, 40, .05);
    filter: blur(160px);
    top: -200px;
    left: -180px;
}

.parts-categories::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(244, 180, 0, .05);
    filter: blur(140px);
    bottom: -160px;
    right: -150px;
}

/*=========================================
        HEADING
=========================================*/

.parts-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.parts-tag {

    display: inline-block;

    color: #f4b400;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-weight: 600;

    margin-bottom: 18px;

}

.parts-title {

    font-family: 'Bebas Neue', sans-serif;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

    letter-spacing: 2px;

}

.parts-title span {

    color: #d62828;

}

/*=========================================
        GRID
=========================================*/

.parts-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    position: relative;
    z-index: 2;

}

/*=========================================
        CARD
=========================================*/

.part-card {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    min-height: 300px;

    background: linear-gradient(180deg, #181818, #111111);

    border: 1px solid rgba(244, 180, 0, .15);

    border-radius: 18px;

    overflow: hidden;

    transition: .4s ease;

}

.part-card:hover {

    transform: translateY(-10px);

    border-color: #d62828;

    box-shadow: 0 25px 55px rgba(0, 0, 0, .45);

}

/* Top Border */

.part-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, #d62828, #f4b400);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.part-card:hover::before {

    transform: scaleX(1);

}

/*=========================================
        NUMBER
=========================================*/

.part-number {

    position: absolute;

    top: 20px;

    left: 25px;

    font-family: 'Bebas Neue', sans-serif;

    font-size: 52px;

    color: #d62828;

    line-height: 1;

}

/*=========================================
        CONTENT
=========================================*/

.part-content {

    margin-top: 55px;

    width: 100%;

}

.part-content h3 {

    color: #ffffff;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;

    margin-bottom: 18px;

    font-family: 'Bebas Neue', sans-serif;

    letter-spacing: 2px;

}

.part-content ul {

    list-style: none;

    padding: 0;

    margin: 0 0 25px;

}

.part-content li {

    color: #bdbdbd;

    margin-bottom: 5px;

    font-size: 15px;

    position: relative;

    padding-left: 18px;

}

.part-content li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 8px;

    width: 7px;

    height: 2px;

    background: #f4b400;

}

/*=========================================
        LINK
=========================================*/

.part-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #f4b400;

    font-weight: 600;

    text-transform: uppercase;

    font-size: 14px;

    letter-spacing: 1px;

    transition: .3s;

}

.part-link i {

    transition: .3s;

}

.part-link:hover {

    color: #ffffff;

}

.part-link:hover i {

    transform: translateX(6px);

}

/*=========================================
        IMAGE
=========================================*/

.part-image {

    width: 42%;

    display: flex;

    align-items: flex-end;

    justify-content: center;

}

.part-image img {

    width: 100%;

    max-height: 210px;

    object-fit: contain;

    transition: .45s;

}

.part-card:hover .part-image img {

    transform: scale(1.08) rotate(-3deg);

}

/*=========================================
        HOVER GLOW
=========================================*/

.part-card::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    background: radial-gradient(circle,
            rgba(214, 40, 40, .12),
            transparent 70%);

    top: -80px;

    right: -80px;

    opacity: 0;

    transition: .4s;

}

.part-card:hover::after {

    opacity: 1;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .parts-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .parts-categories {

        padding: 90px 0;

    }

    .parts-grid {

        grid-template-columns: 1fr;

    }

    .part-card {

        flex-direction: column;

        min-height: auto;

    }

    .part-content {

        width: 100%;

    }

    .part-image {

        width: 100%;

        justify-content: center;

        margin-top: 25px;

    }

    .part-image img {

        max-width: 220px;

    }

    .part-number {

        font-size: 46px;

    }

}

@media(max-width:480px) {

    .parts-title {

        font-size: 38px;

    }

    .part-card {

        padding: 25px;

    }

    .part-content h3 {

        font-size: 24px;

    }

    .part-content li {

        font-size: 14px;

    }

    .part-link {

        font-size: 13px;

    }

}

.engine-card {
    background: url("../images/spare1.webp") center/cover no-repeat;
}

.brake-card {
    background: url("../images/sp2.webp") center/cover no-repeat;
}

.suspension-card {
    background: url("../images/sp3.webp") center/cover no-repeat;
}

.electrical-card {
    background: url("../images/sp4.webp") center/cover no-repeat;
}

.drive-card {
    background: url("../images/sp5.webp") center/cover no-repeat;
}

.filter-card {
    background: url("../images/sp6.webp") center/cover no-repeat;
}

/*=========================================
        WHY CHOOSE SPARE PARTS
=========================================*/

.sp-benefits {
    padding: 90px 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

/* Background Glow */

.sp-benefits::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(214, 40, 40, .05);
    filter: blur(150px);
    top: -200px;
    left: -180px;
}

.sp-benefits::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(244, 180, 0, .05);
    filter: blur(130px);
    bottom: -150px;
    right: -150px;
}

/*=========================================
        WRAPPER
=========================================*/

.sp-benefits-wrapper {

    position: relative;
    z-index: 2;

    border: 1px solid rgba(244, 180, 0, .25);

    border-radius: 20px;

    padding: 55px 45px;

    background: linear-gradient(180deg, #151515, #0f0f0f);

    overflow: hidden;

}

.sp-benefits-wrapper::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(214, 40, 40, .06),
            transparent 40%);

    pointer-events: none;

}

/*=========================================
        HEADING
=========================================*/

.sp-benefits-heading {

    text-align: center;

    margin-bottom: 50px;

}

.sp-benefits-tag {

    display: inline-block;

    position: relative;

    color: #f4b400;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 0 35px;

}

.sp-benefits-tag::before,
.sp-benefits-tag::after {

    content: "";

    position: absolute;

    top: 50%;

    width: 60px;

    height: 2px;

    background: #d62828;

}

.sp-benefits-tag::before {

    left: -40px;

}

.sp-benefits-tag::after {

    right: -40px;

}

/*=========================================
        GRID
=========================================*/

.sp-benefits-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

}

/*=========================================
        ITEM
=========================================*/

.sp-benefit-item {

    text-align: center;

    padding: 15px 20px;

    position: relative;

    transition: .35s;

}

.sp-benefit-item:not(:last-child) {

    border-right: 1px solid rgba(214, 40, 40, .35);

}

.sp-benefit-item:hover {

    transform: translateY(-8px);

}

/*=========================================
        ICON
=========================================*/

.sp-benefit-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border: 2px solid #d62828;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f4b400;

    font-size: 34px;

    transition: .35s;

}

.sp-benefit-item:hover .sp-benefit-icon {

    background: #d62828;

    color: #ffffff;

    box-shadow: 0 15px 30px rgba(214, 40, 40, .35);

    transform: rotate(-8deg);

}

/*=========================================
        TITLE
=========================================*/

.sp-benefit-item h3 {

    color: #ffffff;

    font-size: 20px;
  font-weight: 500;
    font-family: 'Bebas Neue', sans-serif;

    letter-spacing: 1px;

    margin-bottom: 15px;

}

.sp-benefit-item h3::after {

    content: "";

    display: block;

    width: 45px;

    height: 3px;

    background: #d62828;

    margin: 12px auto 0;

    transition: .3s;

}

.sp-benefit-item:hover h3::after {

    width: 70px;

    background: #f4b400;

}

/*=========================================
        TEXT
=========================================*/

.sp-benefit-item p {

    color: #bdbdbd;

    font-size: 13px;

    line-height: 1.4;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .sp-benefits-grid {

        grid-template-columns: repeat(3, 1fr);

        row-gap: 40px;

    }

    .sp-benefit-item:nth-child(3) {

        border-right: none;

    }

}

@media(max-width:768px) {

    .sp-benefits {

        padding: 70px 0;

    }

    .sp-benefits-wrapper {

        padding: 40px 25px;

    }

    .sp-benefits-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;

    }

    .sp-benefit-item {

        border: none !important;

    }

    .sp-benefits-tag {

        font-size: 14px;

        padding: 0 20px;

    }

    .sp-benefits-tag::before,
    .sp-benefits-tag::after {

        width: 35px;

    }

    .sp-benefits-tag::before {

        left: -25px;

    }

    .sp-benefits-tag::after {

        right: -25px;

    }

}

@media(max-width:576px) {

    .sp-benefits-grid {

        grid-template-columns: 1fr;

    }

    .sp-benefit-icon {

        width: 80px;

        height: 80px;

        font-size: 30px;

    }

    .sp-benefit-item h3 {

        font-size: 22px;

    }

    .sp-benefit-item p {

        font-size: 14px;

    }

}

/*=========================================
        CONTACT HERO SECTION
=========================================*/

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 120px;
    background: url("../images/con-herro.webp") center center/cover no-repeat;
}

/* Dark Overlay */

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .72) 45%,
            rgba(0, 0, 0, .45) 100%);
    z-index: 1;
}

/* Container */

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/*=========================================
        CONTENT
=========================================*/

.contact-hero-content {
    max-width: 700px;
}

/* Small Heading */

.contact-tag {
    display: inline-block;
    color: #f4b400;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Main Heading */

.contact-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(58px, 8vw, 90px);
    line-height: .95;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.contact-title span {
    color: #d62828;
}

/* Description */

.contact-description {
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.9;
    max-width: 620px;
    margin-bottom: 45px;
}

/*=========================================
        BUTTONS
=========================================*/

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 55px;
}

.contact-btn-primary,
.contact-btn-secondary {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 34px;

    border-radius: 8px;

    font-weight: 600;

    transition: .35s;
}

.contact-btn-primary {

    background: #d62828;
    color: #fff;

}

.contact-btn-primary:hover {

    background: #b91c1c;

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(214, 40, 40, .35);

}

.contact-btn-secondary {

    border: 2px solid #f4b400;

    color: #f4b400;

}

.contact-btn-secondary:hover {

    background: #f4b400;

    color: #111;

    transform: translateY(-5px);

}

/*=========================================
        CONTACT INFO
=========================================*/

.contact-info {

    display: flex;
    gap: 25px;
    flex-wrap: wrap;

}

.contact-info-box {

    display: flex;
    align-items: center;
    gap: 18px;

    background: rgba(20, 20, 20, .75);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-left: 4px solid #d62828;

    padding: 18px 22px;

    border-radius: 14px;

    min-width: 220px;

    transition: .35s;

}

.contact-info-box:hover {

    transform: translateY(-6px);

    border-left-color: #f4b400;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);

}

.contact-info-box i {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: rgba(244, 180, 0, .12);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f4b400;

    font-size: 22px;

    transition: .35s;

}

.contact-info-box:hover i {

    background: #d62828;

    color: #fff;

    transform: rotate(-8deg);

}

.contact-info-box span {

    display: block;

    color: #f4b400;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 4px;

}

.contact-info-box h4 {

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    margin: 0;

}

/*=========================================
        DECORATIVE GLOW
=========================================*/

.contact-hero::before {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    background: rgba(214, 40, 40, .12);

    filter: blur(120px);

    top: -120px;
    right: -120px;

}

.contact-hero::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    background: rgba(244, 180, 0, .08);

    filter: blur(110px);

    bottom: -100px;
    left: -100px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px) {

    .contact-hero {

        padding: 140px 0 90px;

    }

    .contact-title {

        font-size: 62px;

    }

    .contact-info {

        flex-direction: column;

    }

    .contact-info-box {

        width: 100%;

    }

}

@media(max-width:768px) {

    .contact-title {

        font-size: 50px;

    }

    .contact-description {

        font-size: 16px;

    }

    .contact-buttons {

        flex-direction: column;

    }

    .contact-btn-primary,
    .contact-btn-secondary {

        width: 100%;

        justify-content: center;

    }

}

@media(max-width:480px) {

    .contact-hero {

        padding: 120px 0 70px;

    }

    .contact-title {

        font-size: 42px;

    }

    .contact-tag {

        font-size: 13px;

        letter-spacing: 2px;

    }

    .contact-info-box {

        padding: 16px;

    }

    .contact-info-box h4 {

        font-size: 16px;

    }

}

/*=========================================
        CONTACT MAIN SECTION
=========================================*/

.contact-main {
    padding: 120px 0;
    background: #111111;
    position: relative;
    overflow: hidden;
}

/* Background Glow */

.contact-main::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(214, 40, 40, .06);
    filter: blur(150px);
    top: -180px;
    left: -180px;
}

.contact-main::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(244, 180, 0, .05);
    filter: blur(130px);
    bottom: -150px;
    right: -150px;
}

.contact-main-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: flex-start;
}

/*=========================================
        LEFT CONTENT
=========================================*/

.contact-section-tag {
    display: inline-block;
    color: #f4b400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}

.contact-section-title span {
    color: #d62828;
}

.contact-section-text {
    color: #bdbdbd;
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 16px;
}

/*=========================================
        CONTACT CARDS
=========================================*/

.contact-detail-card {

    display: flex;
    gap: 20px;
    align-items: flex-start;

    background: #181818;

    border: 1px solid rgba(255, 255, 255, .05);

    border-left: 4px solid #d62828;

    border-radius: 16px;

    padding: 22px;

    margin-bottom: 20px;

    transition: .35s;

}

.contact-detail-card:hover {

    transform: translateY(-6px);

    border-left-color: #f4b400;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);

}

.detail-icon {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: rgba(244, 180, 0, .08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f4b400;

    font-size: 24px;

    flex-shrink: 0;

    transition: .35s;

}

.contact-detail-card:hover .detail-icon {

    background: #d62828;

    color: #ffffff;

    transform: rotate(-10deg);

}

.detail-content h4 {

    color: #ffffff;

    margin-bottom: 8px;

    font-size: 20px;

}

.detail-content p {

    color: #bdbdbd;

    line-height: 1.8;

    margin: 0;

}

/*=========================================
        FORM BOX
=========================================*/

.contact-form-wrapper {

    background: #181818;

    border-radius: 20px;

    padding: 40px;

    border: 1px solid rgba(244, 180, 0, .15);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);

}

.form-tag {

    display: inline-block;

    color: #f4b400;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 13px;

    margin-bottom: 12px;

}

.contact-form-wrapper h3 {

    color: #ffffff;

    font-size: 36px;

    margin-bottom: 35px;

    font-family: 'Bebas Neue', sans-serif;

    letter-spacing: 1px;

}

/*=========================================
        FORM
=========================================*/

.form-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

.form-group {

    margin-bottom: 20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 10px;

    padding: 16px 18px;

    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: .3s;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder {

    color: #888888;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color: #d62828;

    box-shadow: 0 0 0 3px rgba(214, 40, 40, .15);

}

.contact-form textarea {

    resize: none;

}

/*=========================================
        BUTTON
=========================================*/

.submit-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #d62828;

    color: #ffffff;

    border: none;

    padding: 16px 35px;

    border-radius: 8px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.submit-btn:hover {

    background: #b91c1c;

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(214, 40, 40, .35);

}

.submit-btn i {

    transition: .3s;

}

.submit-btn:hover i {

    transform: translateX(6px);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .contact-main-wrapper {

        grid-template-columns: 1fr;

    }

    .contact-details {

        margin-bottom: 40px;

    }

}

@media(max-width:768px) {

    .contact-main {

        padding: 90px 0;

    }

    .contact-section-title {

        font-size: 46px;

    }

    .form-grid {

        grid-template-columns: 1fr;

    }

    .contact-form-wrapper {

        padding: 30px;

    }

}

@media(max-width:480px) {

    .contact-section-title {

        font-size: 38px;

    }

    .contact-detail-card {

        padding: 18px;

    }

    .detail-icon {

        width: 55px;
        height: 55px;
        font-size: 22px;

    }

    .contact-form-wrapper {

        padding: 25px;

    }

    .submit-btn {

        width: 100%;

        justify-content: center;

    }

}

.modal {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .75);

    display: none;
    justify-content: center;

    align-items: center;

    z-index: 99999;

}

.modal.active {

    display: flex;

}

.modal-content {

    background: #111;

    width: 90%;

    max-width: 650px;

    padding: 40px;

    border-radius: 10px;

    position: relative;

    animation: popup .3s ease;

}

.close {

    position: absolute;

    right: 20px;

    top: 15px;

    font-size: 30px;

    cursor: pointer;

    color: #fff;

}

.modal h3{
    padding-bottom: 20px;
}

.modal textarea {

    height: 140px;

    resize: none;

}

@keyframes popup {

    from {

        transform: translateY(-40px);
        opacity: 0;

    }

    to {

        transform: translateY(0);
        opacity: 1;

    }

}

@media (max-width:992px) {

    .modal{
        margin-top: 20px;
    }

    .modal-content{
        padding: 20px;
    }

    .modal textarea{
        height: 90px;
    }
    .modal .form-grid{
        gap: 5px;
    }
}

/*=============================
FLOATING CONTACT BUTTONS
=============================*/

.floating-contact {

    position: fixed;

    right: 25px;

    bottom: 25px;

    display: flex;

    flex-direction: column;

    gap: 15px;

    z-index: 99999;

}

.floating-contact a {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 28px;

    text-decoration: none;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);

    transition: .3s;

}

.whatsapp-btn {

    background: #25D366;

}

.call-btn {

    background: #e61d24;

}

.floating-contact a:hover {

    transform: translateY(-6px) scale(1.08);

}

@media(max-width:576px) {

    .floating-contact {

        right: 15px;

        bottom: 15px;

    }

    .floating-contact a {

        width: 52px;

        height: 52px;

        font-size: 24px;

    }

}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}

.whatsapp-btn {

    animation: pulse 2s infinite;

}

.thankyou {

    width: 100%;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.thank-box {

    max-width: 700px;
    margin-top: 90px;
    margin-left: 280px;
    margin-bottom: 90px;

    background: #111;

    padding: 50px 60px;

    border: 1px solid rgba(255, 255, 255, .08);

    text-align: center;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);

}

.success-icon {

    font-size: 70px;

    color: #ffc107;

    margin-bottom: 25px;

}

.thank-box h1 {

    font-family: 'Bebas Neue';

    font-size: 72px;

    letter-spacing: 3px;

    color: #fff;

    margin-bottom: 20px;

}

.message {

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.8;

    max-width: 520px;

    margin: auto auto 40px;

}

.buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 50px;

}

.btn-primary,

.btn-secondary {

    padding: 15px 34px;

    text-decoration: none;

    font-weight: 600;

    border-radius: 50px;

    transition: .3s;

}

.btn-primary {

    background: #d9232d;

    color: #fff;

}

.btn-primary:hover {

    background: #ff2f3a;

}

.btn-secondary {

    border: 1px solid #444;

    color: #fff;

}

.btn-secondary:hover {

    border-color: #ffc107;

    color: #ffc107;

}

.info {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 20px;

}

.info-card {

    background: #171717;

    padding: 25px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, .05);

}

.info-card h3 {

    font-family: 'Bebas Neue';

    font-size: 28px;

    letter-spacing: 1px;

    color: #ffc107;

    margin-bottom: 10px;

}

.info-card p {

    color: #bbb;

    line-height: 1.8;

}

@media(max-width:768px) {

    .thank-box {

        padding: 50px 30px;

    }

    .thank-box h1 {

        font-size: 52px;

    }

    .info {

        grid-template-columns: 1fr;

    }

}