/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #C1F11D;
    --SecondaryColor: #F2FFBD;
    --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;
}

img {
    max-width: 100%;
    display: block;
}



.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: #303030;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  padding: 0.4rem 1rem; border-radius: 6px;
  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: #303030;
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: #303030 !important;
    color: var(--PrimaryColor) !important;
    border-color: #303030 !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: var(--SecondaryColor);
    border: solid 1px #00000033;
    color: #303030;font-weight: 400;
}

.btn-outline-primary:hover,.btn-outline-primary:focus,.btn-outline-primary:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important;
color: #303030 !important;
}



.btn-white {
    background: var(--WhiteColor);
    color: #303030;
    border: 1px solid var(--WhiteColor);
}

.btn-white:hover, .btn-white:focus, .btn-white:active {
    background: var(--SecondaryColor);
    border-color: var(--SecondaryColor);
    color: var(--BlackColor);
}

.btn-outline-white {
    background: transparent;
    color: var(--WhiteColor);
    border: 1px solid var(--WhiteColor);
}

.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
    background: var(--PrimaryColor);
    border-color: var(--WhiteColor);
    color: var(--BlackColor);
}

/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    background: #F2FFBD;
    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: #F2FFBD;
    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: #303030;
    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: #F2FFBD;
   padding: 7rem 0;
   overflow: hidden;
   position: relative;
}


.hero .hero-content h1 {
    font-size:4rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0A0A0A;
}


.hero .hero-content p{
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    color: #262626;
    max-width: 80%;
}


.hero .hero-content .note{
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 400;
    color: #00000066; margin-top: 1.2rem;

}

.hero .img-bx {
    position: absolute;
    top: 50%;
    right: 0;
    width: 46%;
    max-width: 46rem;
    transform: translateY(-50%);
    z-index: 1;
}

.hero .img-bx img {
    width: 100%;
    display: block;
}

.hero .fare-card {
    position: absolute;
    top: 50%;
    left: 0;
    width: 22.5rem;
    background: var(--WhiteColor);
    border-radius:0;
    padding: 1.2rem 1.6rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.18);
    transform: translate(-38%, -50%);
    z-index: 2;
}

.hero .fare-card .tag {
    font-size: 1rem;
    font-weight: 600;
color: #A2CB15;
    text-transform: uppercase;margin-bottom: 1rem;display: block;
}

.hero .fare-card .fare-route {
    margin-bottom: 0.6rem;
}

.hero .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;
}

.hero .fare-card .fare-route .dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
    background: #141414;
}

.hero .fare-card .fare-route .dot-end {
    background: var(--PrimaryColor);
}

.hero .fare-card .fare-meta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #A3A3A3;
    margin-bottom: 1.3rem;
}

.hero .fare-card .fare-progress {
    display: flex;
    height: 40px;
    margin-bottom: 1.4rem;
}

.hero .fare-card .fare-progress .seg {
    height: 100%;display: block;
}

.hero .fare-card .fare-progress .seg-1 {
    flex: 0 0 65%;
    background: var(--PrimaryColor);
}

.hero .fare-card .fare-progress .seg-2 {
    flex: 0 0 19%;
    background: #656565;
}

.hero .fare-card .fare-progress .seg-3 {
    flex: 0 0 8%;
    background: #4B4B4B;
}

.hero .fare-card .fare-progress .seg-4 {
    flex: 0 0 8%;
    background: #323232;
}


.hero .fare-card .fare-breakdown {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.hero .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;
}

.hero .fare-card .fare-breakdown li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero .fare-card .fare-breakdown .label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    white-space: nowrap;
}

.hero .fare-card .fare-breakdown .value {
    white-space: nowrap;
}

.hero .fare-card .fare-breakdown .dot {
    width: 7px;
    height: 7px;
    border-radius: 1px;
    flex-shrink: 0;
}

.hero .fare-card .fare-breakdown .dot-lime {
    background: var(--PrimaryColor);
}

.hero .fare-card .fare-breakdown .dot-gray {
    background: #C4C4C4;
}

.hero .fare-card .fare-breakdown .value {
    color: #141414;
    font-weight: 700;
}

.hero .fare-card .fare-breakdown .highlight,
.hero .fare-card .fare-breakdown .highlight .value {
    color: #8DBE1F;
}

.hero .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;
}

@media (min-width: 1921px) {
  .hero .img-bx {
    right: calc((100vw - 1320px) / 2);
    width: 44%;
    max-width: 600px;
  }
}


/* =========================================
   3. THREE THINGS
   ========================================= */

.thing-card {
    height: 100%;
    background: var(--WhiteColor);
    border: 1px solid #E5E5E5;
    border-radius: 1.1rem;
    padding: 1.8rem 1.7rem;
    text-align: left; 
}

.thing-card .thing-card-top {

    margin-bottom: 1rem;position: relative;
}

.thing-card .thing-badge {
    display: inline-flex;
    align-items: center;
    background: var(--PrimaryColor);
    color: #303030;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.85rem;
    border-radius: 10px;
}

.thing-card .thing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00000017;position: absolute; right: 0; top: 0;
}

.thing-card .thing-icon svg {
    width: 3rem;
    height: 3rem;   
      color: #00000017;
}

.thing-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--BlackColor);
    margin-bottom: 0.7rem;
}

.thing-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4B4B4B;margin-bottom: 0;
}

.thing-card p strong {
    color: #101010;
    font-weight: 700;
}


/* =========================================
   4. COVERAGE
   ========================================= */
.coverage-section{background: url(../images/map-bg.png)no-repeat center right/cover; 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: #606060;
}

.coverage-list .place-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #8A8A8A;
    flex-shrink: 0;
}

.coverage-list .place-icon {
    width: 1.7rem;
    height: 1.7rem;
    padding: 0.4rem;
    border-radius: 50%;
    background: var(--PrimaryColor);
    color: #1A1A1A;
    flex-shrink: 0;
}
.coverage-list .iconbx{display: inline-flex;
    align-items: center;
    justify-content: flex-end; width: 20%; }

    .coverage-list .title{ width: 100px; }

.key-markets-section .same-heading{position: relative; z-index: 1;}
.key-markets-section .world-map{margin-top: -4rem;}

/* =========================================
   5. DRIVER ECONOMICS
   ========================================= */

.driver-economics {
    background: #0A0A0A;
}

.driver-economics-top {
    margin-bottom: 3rem;
}






.driver-economics .btn-white {
    background: transparent;
    border: 1px solid #3A3A3A;
    color: var(--WhiteColor);
}

.driver-economics .btn-white:hover,
.driver-economics .btn-white:focus,
.driver-economics .btn-white:active {
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
    color: #0A0A0A;
}

.stat-card {
    height: 100%;
    border-radius: 1.3rem;
    padding: 2.3rem 2.1rem;
}

.stat-card-light {
    background: var(--SecondaryColor);
}

.stat-card-dark {
    background: #1C1C1C;
}

.stat-card .stat-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #0A0A0A;
}

.stat-card-dark .stat-label {
    color: #B8B8B8;
}

.stat-card .stat-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.3rem;
    color: #0A0A0A;
}

.stat-card-dark .stat-number {
    color: #4A4A4A;
}

.stat-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #3A3A3A;
}

.stat-card-dark p {
    color: #8C8C8C;
}

.driver-features {
    margin-top: 3.5rem;
}

.driver-features h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--WhiteColor);
    margin-bottom: 0.7rem;
}

.driver-features p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #9A9A9A;
    margin-bottom: 0;
}

.driver-features p .highlight {
    color: var(--PrimaryColor);
}


.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 5rem left 2rem ; background-size: 20%;}

.ctc-section .same-heading{ background: #A2CB15; padding:5rem 2rem; border-radius: 30px; position: relative; z-index: 1;}


/* =========================================
   SITE FOOTER
   ========================================= */

.footer {
    background: #0A0A0A;
    padding: 8rem 0 0;
    margin-top: -2rem;
}

.footer-top {
    padding-bottom: 3rem;
}

.footer-logo img {
    height: 1.6rem;

}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #8A8A8A;
    margin-top: 1.1rem;
    max-width: 16rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;

    text-transform: uppercase;
    color: var(--WhiteColor);
    margin-bottom: 1.3rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #9A9A9A;
}

.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: #6E6E6E;
    margin-bottom: 0;
}



@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}




