/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #DE4C2C;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
   
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: #27263A;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}


.same-heading h2 .highlight{color: var(--PrimaryColor); font-weight: 600;}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #545454;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}




.bg-gray {
    background: #F8F8F8;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center :is(.max-wid-50, .max-wid-80) {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
}

.same-heading.white-text :is( p) {
    color: #FFFFFFB2;
}
.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  background: var(--PrimaryColor);
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  padding: 0.4rem 1rem; border-radius: 10px;
  margin-bottom: 0.5rem;
}

.no-bg-tag{
 font-size: 0.8rem;
  letter-spacing: 0.1rem;
  color: var(--PrimaryColor);
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;  margin-bottom: 0.5rem;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--WhiteColor) !important;
    color: var(--PrimaryColor) !important;
    border-color: var(--WhiteColor)!important;
}


.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: #CDDDFF;
    border: solid 1px #CDDDFF;
    color: #565656;
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}


.btn-outline-primary {
    background: transparent;
    border: solid 1px var(--WhiteColor);
    color: var(--WhiteColor);
    font-weight: 400;
}

.btn-outline-primary:hover,.btn-outline-primary:focus,.btn-outline-primary:active {
    background: var(--WhiteColor) !important;
    border-color:var(--PrimaryColor) !important;
    color: var(--PrimaryColor) !important;
}



.btn-white {
    background: var(--WhiteColor);
    color: #303030;
    border: 1px solid var(--WhiteColor);
}

.btn-white:hover, .btn-white:focus, .btn-white:active {
    background: #303030;
    border-color: 303030;
    color: var(--WhiteColor);
}


/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    background: var(--BlackColor);
    border-bottom: solid 1px #0000001A;
    padding:1rem 0;
    transition: all 0.3s ease;
}

.header.headerfix {
	position: fixed;
     top: 0;
    left: 0;
    right: 0;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
    animation:headerfixdown 0.7s;
   background: var(--BlackColor);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 9999;
}
@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}
.header .nav-content {
    display: flex;
    align-items: center;
}

.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.header .nav-links .nav-actions{margin-left: 3rem;}

.header .right-btns-list{display: flex; align-items: center; gap: 0.6rem;}
.header .nav-links a:not(.btn) {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--WhiteColor);
    padding: 0.2rem;
}

.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}

.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header .btn-sidebar-close svg {
    width: 1.2rem;
    height: 1.2rem;
}
.header .mobile-toggle svg{ width: 1.2rem;
    height: 1.2rem;}

.header.inner-header{background: var(--BlackColor);}

/* =========================================
   2. HERO
   ========================================= */


.hero {
    background: var(--BlackColor);
   padding: 5rem 0;
   overflow: hidden;
   position: relative;
}


.hero .hero-content h1 {
    font-size:4rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--WhiteColor);
}


.hero .hero-content p{
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--WhiteColor);
    max-width: 80%;
}


.hero .hero-content .note{
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff66; margin-top: 1.2rem;

}




.logo-img-wrap{background: #0C0C0C; padding: 2rem 0;}
.logo-img-wrap .company-logo{display: block;    text-align: center;}
.logo-img-wrap .company-logo img{max-width: 80%;}


.cars-single-section{background: url(../images/cars-single-bg.png)no-repeat top 5rem right 2rem,url(../images/cars-single-bg.png)no-repeat bottom 0rem left 2rem ; background-size: 20%;}
.ctc-section .same-heading{ background: #F1601D ;  position: relative; padding:5rem 2rem; border-radius: 30px; position: relative; z-index: 1; margin-top: 2rem;}
.ctc-section{overflow: hidden;}
.ctc-section .same-heading::after {
    position: absolute;
    content: '';
    left: -5rem;
    top: -3rem;
    background: url(../images/grid-img.png)no-repeat;
    width: 400px;
    height: 115px;
    background-size: 70%;
}




/* =========================================
   4. COVERAGE
   ========================================= */
.coverage-section{background: url(../images/map-bg.png)no-repeat center right/contain #000; background-size: 70%;}

.coverage-list {
    display: flex;
    flex-direction: column;
    margin-top: 1.6rem;
}

.coverage-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.coverage-list .place {
    font-size: 1rem;
    color: var(--WhiteColor);
}

.coverage-list .place-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--WhiteColor);
    flex-shrink: 0;
}

.coverage-list .place-icon {
    width: 1.7rem;
    height: 1.7rem;
    padding: 0.4rem;
    border-radius: 50%;
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    flex-shrink: 0;
}
.coverage-list .iconbx{display: inline-flex;
    align-items: center;
    justify-content: flex-end; width: 20%; }

    .coverage-list .title{ width: 100px; }

.network-design-wrap{background: #0C0C0C;}

.network-design-wrap{background: url(../images/grid-img.png)no-repeat center right 1rem,url(../images/blur-grid.png)no-repeat bottom 2rem left 1rem #0C0C0C; background-size: 20%; padding-bottom: 10rem;  }



.member-card{background: #242424; padding: 1.5rem; border-radius: 20px;}
.member-card h4{font-size: 1.2rem; color: var(--PrimaryColor); font-weight: 600;width: 100%; max-width: 70%; line-height: 1.4; }
.member-card p{    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7; color: var(--WhiteColor); font-weight: 400;}


/* =========================================
   5. FARE DESIGN (YOUR FARE, IN THE OPEN)
   ========================================= */
.fare-design-wrap {
    background: linear-gradient(to bottom, var(--BlackColor) 80%, var(--WhiteColor) 20%);
    padding-bottom: 3rem;

}


.fare-design-wrap .same-heading p + p {
    margin-top: 1rem;
}

.fare-design-wrap .fare-img-bx {
    position: relative;
    height: 100%;
}

.fare-design-wrap .fare-img-bx .fare-car-img {
      display: block;
    z-index: 1;
    top: -3rem;
    position: relative;
    max-width: 110%;
    left: -8rem;
}

.fare-design-wrap .fare-card {
    /* position: absolute; */
    /* top: 0; */
    /* right: 2rem; */
    width: 23rem;
    margin: 0 auto;
    background: var(--WhiteColor);
    border-radius: 20px;
    padding: 1.2rem 1.6rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.fare-design-wrap .fare-card .tag {
    font-size: 1rem;
    font-weight: 600;
    color: var(--PrimaryColor);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
    background: transparent;
    padding: 0;
}

.fare-design-wrap .fare-card .fare-route {
    margin-bottom: 0.6rem;
}

.fare-design-wrap .fare-card .fare-route li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #141414;
    padding: 0.2rem 0;
}

.fare-design-wrap .fare-card .fare-route .dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
    background: #141414;
}

.fare-design-wrap .fare-card .fare-route .dot-end {
    background: var(--PrimaryColor);
}

.fare-design-wrap .fare-card .fare-meta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #A3A3A3;
    margin-bottom: 1.3rem;
}

.fare-design-wrap .fare-card .fare-progress {
    display: flex;
    height: 40px;
    margin-bottom: 1.4rem;
}

.fare-design-wrap .fare-card .fare-progress .seg {
    height: 100%;
    display: block;
}

.fare-design-wrap .fare-card .fare-progress .seg-1 {
    flex: 0 0 70%;
    background: var(--PrimaryColor);
}

.fare-design-wrap .fare-card .fare-progress .seg-2 {
    flex: 0 0 20%;
    background: #656565;
}

.fare-design-wrap .fare-card .fare-progress .seg-3 {
    flex: 0 0 7%;
    background: #4B4B4B;
}

.fare-design-wrap .fare-card .fare-progress .seg-4 {
    flex: 0 0 4%;
    background: #323232;
}

.fare-design-wrap .fare-card .fare-breakdown {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.fare-design-wrap .fare-card .fare-breakdown li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #565656;
    padding: 0.65rem 0;
    border-bottom: 1px dashed #DFDFDF;
}

.fare-design-wrap .fare-card .fare-breakdown li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fare-design-wrap .fare-card .fare-breakdown .label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    white-space: nowrap;
}

.fare-design-wrap .fare-card .fare-breakdown .dot {
    width: 7px;
    height: 7px;
    border-radius: 1px;
    flex-shrink: 0;
}

.fare-design-wrap .fare-card .fare-breakdown .dot-lime {
    background: var(--PrimaryColor);
}

.fare-design-wrap .fare-card .fare-breakdown .dot-gray {
    background: #C4C4C4;
}

.fare-design-wrap .fare-card .fare-breakdown .value {
    white-space: nowrap;
    color: #141414;
    font-weight: 700;
}

.fare-design-wrap .fare-card .fare-breakdown .highlight,
.fare-design-wrap .fare-card .fare-breakdown .highlight .value {
    color: #8DBE1F;
}

.fare-design-wrap .fare-card .fare-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.1rem;
    border-top: 1px solid #ECECEC;
    font-size: 1rem;
    font-weight: 800;
    color: #141414;
}


/* =========================================
   6. TRAVEL APP
   ========================================= */
.app-badge-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.app-badge-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
}

.app-badge span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-size: 0.95rem;
    font-weight: 600;
}

.app-badge span small {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    opacity: 0.7;
}

.app-badge img {
    width: 1.6rem;
    height: 1.6rem;
}

.app-badge-dark {
    background: var(--BlackColor);
    color: var(--WhiteColor);
}
.app-badge-dark img{    filter: invert(1) brightness(8.5);}
.app-badge-outline {
    background: transparent;
    border: 1px solid #E2E2E2;
    color: var(--BlackColor);
}
.app-badge-outline:hover{    background: var(--BlackColor);
    color: var(--WhiteColor);}

.app-badge-outline:hover img{ filter: invert(1) brightness(8.5)}


.travel-phone-bx img {
    max-width: 80%;
    margin: 0 auto;
}

.travel-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.travel-feature-card {
    background: var(--WhiteColor);
    border: 1px solid #EDEDED;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.15);
}

.travel-feature-card .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 18px;
    background: #F1601D1A;
    color: var(--PrimaryColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.travel-feature-card .feature-icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.travel-feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--BlackColor);
    margin-bottom: 0.5rem;
}

.travel-feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6B6B6B;
}

.travel-feature-card .highlight {
    color: var(--PrimaryColor);
    font-weight: 600;
}


/* =========================================
   SITE FOOTER
   ========================================= */

.footer {
    background: #151513;
    padding: 8rem 0 0;
    margin-top: -2rem;
}

.footer-top {
    padding-bottom: 3rem;
}


.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--WhiteColor);
    margin-top: 1.1rem;
    max-width: 18rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--WhiteColor);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #FFFFFFB5;
}

.footer-links a:hover {
    color: var(--PrimaryColor);
}

.footer-bottom {
    padding: 1.6rem 0;
    border-top: 1px solid #232323;
}

.footer-bottom p {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--WhiteColor);
    margin-bottom: 0;
}



@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}




