/* =========================================================
   SELF CAR JUNCTION
   HOME PAGE MASTER CSS
   File: assets/css/home.css

   Design:
   Dark Navy / Black / White / Blue
   Primary Blue: #087CFF
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {

    --scj-primary: #087CFF;
    --scj-primary-dark: #0566D6;
    --scj-primary-light: #EAF4FF;

    --scj-black: #05070A;
    --scj-dark: #080D13;
    --scj-dark-2: #0D141D;
    --scj-dark-3: #121C27;

    --scj-white: #FFFFFF;
    --scj-off-white: #F8FAFC;
    --scj-light: #F2F5F9;

    --scj-text: #151C24;
    --scj-text-light: #66717F;

    --scj-border: #E3E8EF;
    --scj-dark-border: rgba(255,255,255,.10);

    --scj-success: #20B26B;
    --scj-warning: #FFB000;

    --scj-radius-sm: 8px;
    --scj-radius-md: 14px;
    --scj-radius-lg: 22px;
    --scj-radius-xl: 30px;

    --scj-shadow:
        0 15px 45px rgba(5, 20, 40, .10);

    --scj-shadow-lg:
        0 25px 70px rgba(0, 0, 0, .18);

    --scj-transition:
        all .3s ease;

}


/* =========================================================
   02. GLOBAL RESET
========================================================= */

.scj-header *,
.scj-hero-section *,
.scj-benefits-section *,
.scj-fleet-section *,
.scj-offer-section *,
.scj-how-section *,
.scj-why-section *,
.scj-reviews-section *,
.scj-reels-section *,
.scj-location-section *,
.scj-final-cta *,
.scj-footer * {

    box-sizing: border-box;

}


.scj-header ul,
.scj-header ol,
.scj-footer ul,
.scj-footer ol,
.scj-hero-section ul,
.scj-fleet-section ul,
.scj-how-section ul,
.scj-why-section ul,
.scj-location-section ul {

    margin: 0;
    padding: 0;
    list-style: none;

}


.scj-header a,
.scj-hero-section a,
.scj-benefits-section a,
.scj-fleet-section a,
.scj-offer-section a,
.scj-how-section a,
.scj-why-section a,
.scj-reviews-section a,
.scj-reels-section a,
.scj-location-section a,
.scj-final-cta a,
.scj-footer a {

    text-decoration: none;

}


.scj-header button,
.scj-hero-section button,
.scj-fleet-section button,
.scj-reviews-section button,
.scj-reels-section button {

    border: 0;
    outline: none;

}


.scj-header img,
.scj-hero-section img,
.scj-fleet-section img,
.scj-offer-section img,
.scj-footer img {

    display: block;
    max-width: 100%;

}


body {

    overflow-x: hidden;

}


.container {

    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;

}


/* =========================================================
   03. OFFER BAR
========================================================= */

.scj-top-offer {

    position: relative;
    z-index: 100;

    background:
        linear-gradient(
            90deg,
            #05070A 0%,
            #0B1420 50%,
            #05070A 100%
        );

    color: var(--scj-white);

    border-bottom:
        1px solid rgba(255,255,255,.08);

}


.scj-top-offer-inner {

    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

}


.scj-offer-content {

    display: flex;
    align-items: center;

    gap: 10px;

}


.scj-offer-icon {

    font-size: 18px;
    line-height: 1;

}


.scj-offer-content p {

    margin: 0;

    font-size: 12px;
    font-weight: 500;

    color: rgba(255,255,255,.82);

}


.scj-offer-content strong {

    color: var(--scj-primary);

    font-weight: 800;

}


.scj-offer-btn {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--scj-white);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .5px;

    transition: var(--scj-transition);

}


.scj-offer-btn i {

    color: var(--scj-primary);

    transition: var(--scj-transition);

}


.scj-offer-btn:hover {

    color: var(--scj-primary);

}


.scj-offer-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   04. HEADER
========================================================= */

.scj-header {

    position: relative;
    z-index: 90;

    background: var(--scj-white);

}


.scj-main-header {

    background: rgba(255,255,255,.98);

    border-bottom:
        1px solid var(--scj-border);

}


.main_header_inner {

    min-height: 82px;

    display: flex;
    align-items: center;

}


.scj-header-logo {

    flex: 0 0 auto;

}


.scj-header-logo figure,
.scj-header-logo img {

    margin: 0;

}


.scj-header-logo img {

    width: 170px;
    height: auto;

    object-fit: contain;

}


.scj-main-header .main_header_menu {

    flex: 1;

    display: flex;
    justify-content: center;

}


.scj-main-menu ul.navigation {

    display: flex;
    align-items: center;

    gap: 34px;

}


.scj-main-menu ul.navigation > li {

    position: relative;

}


.scj-main-menu ul.navigation > li > a {

    display: flex;
    align-items: center;

    min-height: 82px;

    color: #17202A;

    font-size: 13px;
    font-weight: 600;

    transition: var(--scj-transition);

}


.scj-main-menu ul.navigation > li > a:hover,
.scj-main-menu ul.navigation > li.active > a {

    color: var(--scj-primary);

}


.scj-header-right {

    display: flex;
    align-items: center;

    gap: 15px;

}


.scj-header-search {

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #F3F6F9;

    color: var(--scj-text);

    cursor: pointer;

    transition: var(--scj-transition);

}


.scj-header-search:hover {

    background: var(--scj-primary);
    color: var(--scj-white);

}


.scj-header-book-btn {

    min-height: 44px;

    padding:
        0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 7px;

    background: var(--scj-primary);

    color: var(--scj-white);

    font-size: 12px;
    font-weight: 700;

    transition: var(--scj-transition);

}


.scj-header-book-btn:hover {

    background: var(--scj-black);
    color: var(--scj-white);

    transform: translateY(-2px);

}


.scj-header-book-btn i {

    font-size: 11px;

}


/* =========================================================
   05. STICKY HEADER
========================================================= */

.scj-sticky-header {

    background: var(--scj-white);

    box-shadow:
        0 5px 25px rgba(0,0,0,.08);

}


.scj-sticky-header .main_header_inner {

    min-height: 70px;

}


.scj-sticky-header .main_header_logo img {

    width: 145px;

}


.scj-sticky-header .main_header_menu {

    flex: 1;

    display: flex;
    justify-content: center;

}


/* =========================================================
   06. HERO
========================================================= */

.scj-hero-section {

    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--scj-black);

}


.scj-hero-background {

    position: absolute;
    inset: 0;

    z-index: 0;

}


.scj-hero-background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

}


.scj-hero-overlay {

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3,7,12,.96) 0%,
            rgba(3,8,14,.90) 38%,
            rgba(3,8,14,.68) 62%,
            rgba(3,8,14,.38) 100%
        );

}


.scj-hero-section .container {

    position: relative;
    z-index: 2;

}


.scj-hero-grid {

    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(370px, .72fr);

    align-items: center;

    gap: 70px;

    padding:
        70px 0;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.scj-hero-content {

    max-width: 720px;

}


.scj-hero-kicker {

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--scj-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

}


.scj-hero-kicker::before {

    content: "";

    width: 28px;
    height: 2px;

    background: var(--scj-primary);

}


.scj-hero-content h1 {

    margin:
        0 0 22px;

    color: var(--scj-white);

    font-size:
        clamp(46px, 6vw, 76px);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -2px;

}


.scj-hero-content h1 span {

    display: block;

    color: var(--scj-primary);

}


.scj-hero-content > p {

    max-width: 620px;

    margin:
        0 0 32px;

    color:
        rgba(255,255,255,.72);

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.scj-hero-actions {

    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 38px;

}


.scj-btn {

    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding:
        0 25px;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 700;

    transition:
        all .3s ease;

}


.scj-btn-primary {

    background: var(--scj-primary);

    color: var(--scj-white);

}


.scj-btn-primary:hover {

    background: var(--scj-white);

    color: var(--scj-black);

    transform: translateY(-3px);

}


.scj-btn-outline {

    border:
        1px solid rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.04);

    color: var(--scj-white);

    backdrop-filter: blur(10px);

}


.scj-btn-outline:hover {

    border-color: var(--scj-primary);

    background: var(--scj-primary);

    color: var(--scj-white);

    transform: translateY(-3px);

}


.scj-btn-dark {

    background: var(--scj-black);

    color: var(--scj-white);

}


.scj-btn-dark:hover {

    background: var(--scj-primary);

    color: var(--scj-white);

    transform: translateY(-3px);

}


/* =========================================================
   HERO TRUST
========================================================= */

.scj-hero-trust {

    display: flex;
    align-items: center;

    gap: 28px;

    flex-wrap: wrap;

}


.scj-trust-item {

    display: flex;
    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.62);

    font-size: 10px;

    line-height: 1.5;

}


.scj-trust-item i {

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(8,124,255,.12);

    color: var(--scj-primary);

}


.scj-trust-item strong {

    display: block;

    color: var(--scj-white);

    font-size: 11px;

}


/* =========================================================
   HERO BOOKING CARD
========================================================= */

.scj-hero-booking-card {

    padding: 30px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 18px;

    background:
        rgba(7,14,23,.82);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);

    backdrop-filter:
        blur(18px);

}


.scj-booking-card-header {

    margin-bottom: 24px;

}


.scj-booking-card-header > span {

    color: var(--scj-primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;

}


.scj-booking-card-header h2 {

    margin:
        8px 0 8px;

    color: var(--scj-white);

    font-size: 25px;

    line-height: 1.25;

    font-weight: 700;

}


.scj-booking-card-header p {

    margin: 0;

    color:
        rgba(255,255,255,.58);

    font-size: 11px;

    line-height: 1.7;

}


.scj-quick-booking-form {

    display: flex;
    flex-direction: column;

    gap: 15px;

}


.scj-form-field label {

    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 7px;

    color:
        rgba(255,255,255,.82);

    font-size: 11px;
    font-weight: 600;

}


.scj-form-field label i {

    color: var(--scj-primary);

}


.scj-form-field input {

    width: 100%;

    height: 48px;

    padding:
        0 14px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 6px;

    outline: none;

    background:
        rgba(255,255,255,.055);

    color: var(--scj-white);

    font-size: 12px;

    transition: var(--scj-transition);

}


.scj-form-field input::placeholder {

    color:
        rgba(255,255,255,.38);

}


.scj-form-field input:focus {

    border-color:
        var(--scj-primary);

    background:
        rgba(255,255,255,.08);

}


.scj-form-field input[type="datetime-local"] {

    color-scheme: dark;

}


.scj-booking-search-btn {

    width: 100%;

    min-height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 4px;

    border-radius: 6px;

    background: var(--scj-primary);

    color: var(--scj-white);

    cursor: pointer;

    font-size: 12px;
    font-weight: 700;

    transition: var(--scj-transition);

}


.scj-booking-search-btn:hover {

    background: var(--scj-white);

    color: var(--scj-black);

}


.scj-form-message {

    color: #FF7A7A;

    font-size: 11px;

}


/* =========================================================
   07. BENEFITS
========================================================= */

.scj-benefits-section {

    position: relative;
    z-index: 5;

    background: var(--scj-white);

    border-bottom:
        1px solid var(--scj-border);

}


.scj-benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.scj-benefit {

    min-height: 115px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding:
        20px 22px;

    border-right:
        1px solid var(--scj-border);

}


.scj-benefit:first-child {

    border-left:
        1px solid var(--scj-border);

}


.scj-benefit-icon {

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        var(--scj-primary-light);

    color: var(--scj-primary);

    font-size: 16px;

}


.scj-benefit h3 {

    margin:
        0 0 4px;

    color: var(--scj-text);

    font-size: 12px;
    font-weight: 700;

}


.scj-benefit p {

    margin: 0;

    color: var(--scj-text-light);

    font-size: 10px;

    line-height: 1.6;

}


/* =========================================================
   08. SECTION HEADING
========================================================= */

.scj-section-heading {

    max-width: 750px;

    margin:
        0 auto 45px;

    text-align: center;

}


.scj-section-kicker {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-bottom: 11px;

    color: var(--scj-primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;

}


.scj-section-heading h2 {

    margin:
        0 0 13px;

    color: var(--scj-text);

    font-size:
        clamp(31px, 4vw, 46px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;

}


.scj-section-heading h2 span {

    color: var(--scj-primary);

}


.scj-section-heading p {

    max-width: 620px;

    margin: 0 auto;

    color: var(--scj-text-light);

    font-size: 12px;

    line-height: 1.8;

}


/* =========================================================
   09. FLEET SECTION
========================================================= */

.scj-fleet-section {

    padding:
        105px 0 80px;

    background:
        var(--scj-light);

    overflow: hidden;

}


.scj-fleet-carousel {

    position: relative;

    display: flex;
    align-items: center;

    gap: 15px;

}


.scj-fleet-viewport {

    width: 100%;

    overflow: hidden;

}


.scj-fleet-track {

    display: flex;

    gap: 20px;

    will-change: transform;

}


.scj-car-slide {

    flex:
        0 0
        calc(
            (100% - 40px) / 3
        );

    min-width: 0;

}


.scj-car-card {

    height: 100%;

    overflow: hidden;

    border:
        1px solid var(--scj-border);

    border-radius: 16px;

    background: var(--scj-white);

    box-shadow:
        0 8px 30px rgba(0,0,0,.05);

    transition: var(--scj-transition);

}


.scj-car-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(8,124,255,.28);

    box-shadow:
        0 20px 45px rgba(8,40,80,.12);

}


/* =========================================================
   CAR IMAGE
========================================================= */

.scj-car-image {

    position: relative;

    height: 235px;

    overflow: hidden;

    background: #EEF2F6;

}


.scj-car-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.scj-car-card:hover .scj-car-image img {

    transform: scale(1.05);

}


.scj-car-badge {

    position: absolute;

    top: 14px;
    left: 14px;

    padding:
        6px 10px;

    border-radius: 5px;

    background:
        rgba(5,7,10,.78);

    color: var(--scj-white);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .8px;

    backdrop-filter: blur(5px);

}


.scj-car-content {

    padding: 21px;

}


.scj-car-meta {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;

}


.scj-car-meta span {

    color: #8A95A2;

    font-size: 9px;
    font-weight: 500;

}


.scj-car-meta span:first-child {

    color: var(--scj-primary);

}


.scj-car-meta i {

    margin-right: 3px;

}


.scj-car-content h3 {

    margin:
        0 0 15px;

    color: var(--scj-text);

    font-size: 20px;

    line-height: 1.25;

    font-weight: 700;

}


.scj-car-price {

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom:
        1px solid var(--scj-border);

}


.scj-car-price > span {

    color: #929BA6;

    font-size: 9px;

}


.scj-car-price strong {

    color: var(--scj-primary);

    font-size: 20px;
    font-weight: 800;

}


.scj-car-price small {

    color: #7E8894;

    font-size: 9px;
    font-weight: 500;

}


.scj-car-slabs {

    padding:
        13px 0;

    display: flex;
    flex-direction: column;

    gap: 7px;

}


.scj-car-slabs span {

    display: flex;
    justify-content: space-between;

    color: #7D8792;

    font-size: 9px;

}


.scj-car-slabs strong {

    color: var(--scj-text);

    font-weight: 700;

}


.scj-car-book-btn {

    width: 100%;

    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 6px;

    background: var(--scj-black);

    color: var(--scj-white);

    font-size: 11px;
    font-weight: 700;

    transition: var(--scj-transition);

}


.scj-car-book-btn:hover {

    background: var(--scj-primary);

    color: var(--scj-white);

}


.scj-car-book-btn i {

    font-size: 9px;

    transition: var(--scj-transition);

}


.scj-car-book-btn:hover i {

    transform: translateX(3px);

}


/* =========================================================
   FLEET ARROWS
========================================================= */

.scj-fleet-arrow {

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--scj-white);

    color: var(--scj-text);

    border:
        1px solid var(--scj-border);

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0,0,0,.06);

    transition: var(--scj-transition);

}


.scj-fleet-arrow:hover {

    background: var(--scj-primary);

    color: var(--scj-white);

    border-color: var(--scj-primary);

    transform: scale(1.05);

}


/* =========================================================
   FLEET INFO
========================================================= */

.scj-fleet-info {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    margin-top: 32px;

}


.scj-fleet-info span {

    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #75808C;

    font-size: 10px;

}


.scj-fleet-info span i {

    color: var(--scj-success);

}


.scj-fleet-info a {

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--scj-primary);

    font-size: 10px;
    font-weight: 700;

}


.scj-fleet-info a i {

    transition: var(--scj-transition);

}


.scj-fleet-info a:hover i {

    transform: translateX(3px);

}


/* =========================================================
   10. OFFER SECTION
========================================================= */

.scj-offer-section {

    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--scj-black);

}


.scj-offer-background {

    position: absolute;
    inset: 0;

}


.scj-offer-background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.scj-offer-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,7,10,.97) 0%,
            rgba(5,7,10,.88) 45%,
            rgba(5,7,10,.48) 100%
        );

}


.scj-offer-section .container {

    position: relative;
    z-index: 2;

}


.scj-offer-content-box {

    max-width: 610px;

    padding:
        80px 0;

}


.scj-offer-kicker {

    color: var(--scj-primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

}


.scj-offer-content-box h2 {

    margin:
        12px 0 14px;

    color: var(--scj-white);

    font-size:
        clamp(36px, 5vw, 57px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;

}


.scj-offer-content-box h2 span {

    color: var(--scj-primary);

}


.scj-offer-content-box p {

    max-width: 520px;

    margin:
        0 0 25px;

    color:
        rgba(255,255,255,.65);

    font-size: 12px;

    line-height: 1.8;

}


/* =========================================================
   11. HOW IT WORKS
========================================================= */

.scj-how-section {

    padding:
        105px 0;

    background: var(--scj-white);

}


.scj-how-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.scj-how-step {

    position: relative;

    padding:
        32px 25px;

    text-align: center;

    border:
        1px solid var(--scj-border);

    border-radius: 14px;

    background: var(--scj-white);

    transition: var(--scj-transition);

}


.scj-how-step:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--scj-shadow);

    border-color:
        rgba(8,124,255,.28);

}


.scj-step-number {

    position: absolute;

    top: 15px;
    right: 17px;

    color:
        rgba(8,124,255,.13);

    font-size: 28px;
    font-weight: 900;

}


.scj-step-icon {

    width: 62px;
    height: 62px;

    margin:
        0 auto 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--scj-primary-light);

    color: var(--scj-primary);

    font-size: 21px;

}


.scj-how-step h3 {

    margin:
        0 0 8px;

    color: var(--scj-text);

    font-size: 16px;
    font-weight: 700;

}


.scj-how-step p {

    margin: 0;

    color: var(--scj-text-light);

    font-size: 10px;

    line-height: 1.75;

}


/* =========================================================
   12. WHY CHOOSE US
========================================================= */

.scj-why-section {

    padding:
        105px 0;

    background:
        var(--scj-light);

}


.scj-two-column {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 90px;

}


.scj-why-content {

    max-width: 570px;

}


.scj-why-content .scj-section-kicker {

    justify-content: flex-start;

}


.scj-why-content h2 {

    margin:
        0 0 16px;

    color: var(--scj-text);

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;

}


.scj-why-content h2 span {

    color: var(--scj-primary);

}


.scj-why-content > p {

    margin:
        0 0 25px;

    color: var(--scj-text-light);

    font-size: 12px;

    line-height: 1.9;

}


.scj-check-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px 20px;

    margin-bottom: 30px !important;

}


.scj-check-list li {

    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--scj-text);

    font-size: 10px;
    font-weight: 600;

}


.scj-check-list i {

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--scj-primary-light);

    color: var(--scj-primary);

    font-size: 8px;

}


/* =========================================================
   FEATURE GRID
========================================================= */

.scj-feature-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


.scj-feature-card {

    min-height: 190px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border:
        1px solid var(--scj-border);

    border-radius: 15px;

    background: var(--scj-white);

    box-shadow:
        0 8px 25px rgba(0,0,0,.035);

    transition: var(--scj-transition);

}


.scj-feature-card:nth-child(2),
.scj-feature-card:nth-child(3) {

    background:
        var(--scj-dark);

    border-color:
        var(--scj-dark);

}


.scj-feature-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--scj-shadow);

}


.scj-feature-icon {

    width: 45px;
    height: 45px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        var(--scj-primary-light);

    color: var(--scj-primary);

}


.scj-feature-card h3 {

    margin:
        0 0 3px;

    color: var(--scj-text);

    font-size: 20px;
    font-weight: 800;

}


.scj-feature-card p {

    margin: 0;

    color: var(--scj-text-light);

    font-size: 10px;

}


.scj-feature-card:nth-child(2) h3,
.scj-feature-card:nth-child(3) h3 {

    color: var(--scj-white);

}


.scj-feature-card:nth-child(2) p,
.scj-feature-card:nth-child(3) p {

    color:
        rgba(255,255,255,.55);

}


/* =========================================================
   13. REVIEWS
========================================================= */

.scj-reviews-section {

    padding:
        105px 0;

    background: var(--scj-white);

    overflow: hidden;

}


.scj-reviews-carousel {

    display: flex;
    align-items: center;

    gap: 15px;

}


.scj-review-viewport {

    width: 100%;

    overflow: hidden;

}


.scj-review-track {

    display: flex;

    gap: 20px;

}


.scj-review-slide {

    flex:
        0 0
        calc(
            (100% - 40px) / 3
        );

}


.scj-review-card {

    min-height: 275px;

    padding: 27px;

    border:
        1px solid var(--scj-border);

    border-radius: 15px;

    background: var(--scj-white);

    box-shadow:
        0 7px 25px rgba(0,0,0,.035);

    transition: var(--scj-transition);

}


.scj-review-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--scj-shadow);

}


.scj-review-top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;

}


.scj-review-stars {

    color: var(--scj-primary);

    font-size: 13px;

    letter-spacing: 2px;

}


.scj-review-quote {

    color:
        rgba(8,124,255,.16);

    font-size: 45px;
    font-weight: 900;

    line-height: .7;

}


.scj-review-card h3 {

    margin:
        0 0 10px;

    color: var(--scj-text);

    font-size: 16px;
    font-weight: 700;

}


.scj-review-card > p {

    margin:
        0 0 22px;

    color: var(--scj-text-light);

    font-size: 10px;

    line-height: 1.8;

}


.scj-review-person {

    display: flex;
    align-items: center;

    gap: 10px;

    padding-top: 16px;

    border-top:
        1px solid var(--scj-border);

}


.scj-review-avatar {

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--scj-primary-light);

    color: var(--scj-primary);

    font-size: 11px;

}


.scj-review-person strong {

    display: block;

    color: var(--scj-text);

    font-size: 10px;

}


.scj-review-person small {

    display: block;

    margin-top: 2px;

    color: #8B95A1;

    font-size: 8px;

}


/* =========================================================
   REVIEW ARROWS
========================================================= */

.scj-review-arrow {

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--scj-white);

    color: var(--scj-text);

    border:
        1px solid var(--scj-border);

    cursor: pointer;

    transition: var(--scj-transition);

}


.scj-review-arrow:hover {

    background: var(--scj-primary);

    color: var(--scj-white);

    border-color: var(--scj-primary);

}


/* =========================================================
   14. REELS SECTION
========================================================= */

.scj-reels-section {

    padding:
        105px 0;

    background:
        var(--scj-dark);

    overflow: hidden;

}


.scj-reels-section .scj-section-heading h2 {

    color: var(--scj-white);

}


.scj-reels-section .scj-section-heading p {

    color:
        rgba(255,255,255,.55);

}


.scj-reels-carousel {

    position: relative;

    display: flex;
    align-items: center;

    gap: 15px;

}


.scj-reels-viewport {

    width: 100%;

    min-height: 570px;

    overflow: hidden;

}


.scj-reels-track {

    min-height: 570px;

    display: flex;
    align-items: center;

    gap: 22px;

    will-change: transform;

}


.scj-reel-card {

    flex:
        0 0 310px;

    height: 550px;

    overflow: hidden;

    border-radius: 17px;

    background: #05080D;

    border:
        1px solid rgba(255,255,255,.08);

    opacity: .5;

    transform:
        scale(.88);

    transition:
        all .55s ease;

}


.scj-reel-card.is-center {

    opacity: 1;

    transform:
        scale(1);

    border-color:
        rgba(8,124,255,.45);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

}


.scj-reel-card.is-side {

    opacity: .58;

}


.scj-reel-media {

    width: 100%;
    height: 100%;

}


.scj-reel-media iframe {

    width: 100%;
    height: 100%;

    display: block;

    border: 0;

}


/* =========================================================
   REEL ARROWS
========================================================= */

.scj-reels-arrow {

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    color: var(--scj-white);

    border:
        1px solid rgba(255,255,255,.13);

    cursor: pointer;

    transition: var(--scj-transition);

    z-index: 3;

}


.scj-reels-arrow:hover {

    background: var(--scj-primary);

    border-color: var(--scj-primary);

}


/* =========================================================
   REEL DOTS
========================================================= */

.scj-reels-dots {

    display: flex;
    justify-content: center;

    gap: 7px;

    margin-top: 20px;

}


.scj-reel-dot {

    width: 7px;
    height: 7px;

    padding: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.25);

    cursor: pointer;

    transition: var(--scj-transition);

}


.scj-reel-dot.active {

    width: 25px;

    border-radius: 10px;

    background:
        var(--scj-primary);

}


/* =========================================================
   REEL HIGHLIGHTS
========================================================= */

.scj-reels-highlights {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 55px;

}


.scj-reel-highlight {

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 12px;

    background:
        rgba(255,255,255,.035);

}


.scj-highlight-icon {

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(8,124,255,.12);

    color: var(--scj-primary);

}


.scj-reel-highlight h3 {

    margin:
        0 0 4px;

    color: var(--scj-white);

    font-size: 12px;
    font-weight: 700;

}


.scj-reel-highlight p {

    margin: 0;

    color:
        rgba(255,255,255,.48);

    font-size: 9px;

    line-height: 1.6;

}


/* =========================================================
   REELS CTA
========================================================= */

.scj-reels-cta {

    margin-top: 55px;

    padding:
        30px 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 15px;

    background:
        linear-gradient(
            100deg,
            rgba(8,124,255,.11),
            rgba(255,255,255,.025)
        );

}


.scj-reels-cta span {

    color: var(--scj-primary);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

}


.scj-reels-cta h3 {

    margin:
        6px 0 0;

    color: var(--scj-white);

    font-size: 21px;
    font-weight: 700;

}


.scj-reels-cta-btn {

    min-height: 48px;

    padding:
        0 22px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border-radius: 6px;

    background: var(--scj-primary);

    color: var(--scj-white);

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;

    transition: var(--scj-transition);

}


.scj-reels-cta-btn:hover {

    background: var(--scj-white);

    color: var(--scj-black);

}


/* =========================================================
   15. LOCATION
========================================================= */

.scj-location-section {

    padding:
        105px 0;

    background:
        var(--scj-light);

}


.scj-location-grid {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 55px;

    align-items: stretch;

}


.scj-location-content {

    padding:
        10px 0;

}


.scj-location-content .scj-section-kicker {

    justify-content: flex-start;

}


.scj-location-content h2 {

    margin:
        0 0 15px;

    color: var(--scj-text);

    font-size:
        clamp(34px, 4vw, 47px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;

}


.scj-location-content h2 span {

    color: var(--scj-primary);

}


.scj-location-content > p {

    margin:
        0 0 25px;

    color: var(--scj-text-light);

    font-size: 11px;

    line-height: 1.8;

}


.scj-contact-list {

    display: flex;
    flex-direction: column;

    gap: 17px;

}


.scj-contact-list li {

    display: flex;
    align-items: flex-start;

    gap: 13px;

}


.scj-contact-icon {

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--scj-white);

    color: var(--scj-primary);

    box-shadow:
        0 5px 20px rgba(0,0,0,.04);

}


.scj-contact-list strong {

    display: block;

    margin-bottom: 3px;

    color: var(--scj-text);

    font-size: 10px;
    font-weight: 700;

}


.scj-contact-list span,
.scj-contact-list a {

    display: block;

    color: var(--scj-text-light);

    font-size: 9px;

    line-height: 1.65;

}


.scj-contact-list a:hover {

    color: var(--scj-primary);

}


.scj-location-buttons {

    display: flex;

    gap: 10px;

    margin-top: 28px;

}


.scj-location-buttons .scj-btn {

    min-height: 45px;

    padding:
        0 20px;

}


/* =========================================================
   MAP
========================================================= */

.scj-map-container {

    min-height: 500px;

    overflow: hidden;

    border-radius: 17px;

    background: #DCE3EA;

    box-shadow:
        var(--scj-shadow);

}


.scj-map-container iframe {

    width: 100%;
    height: 100%;

    min-height: 500px;

    display: block;

    border: 0;

    filter:
        grayscale(.1)
        contrast(1.03);

}


/* =========================================================
   16. FINAL CTA
========================================================= */

.scj-final-cta {

    padding:
        65px 0;

    background:
        var(--scj-primary);

}


.scj-final-cta-inner {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

}


.scj-final-cta-inner > div > span {

    color:
        rgba(255,255,255,.68);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.6px;

}


.scj-final-cta-inner h2 {

    margin:
        7px 0 5px;

    color: var(--scj-white);

    font-size:
        clamp(25px, 3vw, 36px);

    line-height: 1.2;

    font-weight: 800;

}


.scj-final-cta-inner p {

    margin: 0;

    color:
        rgba(255,255,255,.72);

    font-size: 10px;

}


.scj-final-cta .scj-btn-primary {

    background: var(--scj-black);

    white-space: nowrap;

}


.scj-final-cta .scj-btn-primary:hover {

    background: var(--scj-white);

    color: var(--scj-black);

}


/* =========================================================
   17. FOOTER
========================================================= */

.scj-footer {

    padding:
        75px 0 0;

    background:
        var(--scj-black);

    color: var(--scj-white);

}


.scj-footer-grid {

    display: grid;

    grid-template-columns:
        1.35fr
        .8fr
        .8fr
        1.1fr;

    gap: 50px;

    padding-bottom: 55px;

}


.scj-footer-logo {

    display: inline-block;

    margin-bottom: 18px;

}


.scj-footer-logo img {

    width: 170px;
    height: auto;

}


.scj-footer-brand p {

    max-width: 310px;

    margin:
        0 0 20px;

    color:
        rgba(255,255,255,.48);

    font-size: 10px;

    line-height: 1.9;

}


/* =========================================================
   FOOTER SOCIALS
========================================================= */

.scj-footer-socials {

    display: flex;

    gap: 8px;

}


.scj-footer-socials a {

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.68);

    font-size: 12px;

    transition: var(--scj-transition);

}


.scj-footer-socials a:hover {

    background: var(--scj-primary);

    color: var(--scj-white);

    transform:
        translateY(-3px);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.scj-footer-column h3 {

    margin:
        0 0 20px;

    color: var(--scj-white);

    font-size: 13px;
    font-weight: 700;

}


.scj-footer-column ul {

    display: flex;
    flex-direction: column;

    gap: 11px;

}


.scj-footer-column ul li a {

    color:
        rgba(255,255,255,.47);

    font-size: 10px;

    transition: var(--scj-transition);

}


.scj-footer-column ul li a:hover {

    color: var(--scj-primary);

    padding-left: 3px;

}


.scj-footer-contact p {

    margin:
        0 0 14px;

    color:
        rgba(255,255,255,.47);

    font-size: 10px;

    line-height: 1.7;

}


.scj-footer-contact > a {

    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,.57);

    font-size: 10px;

    word-break: break-word;

}


.scj-footer-contact > a i {

    width: 18px;

    color: var(--scj-primary);

}


.scj-footer-contact > a:hover {

    color: var(--scj-primary);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.scj-footer-bottom {

    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,.08);

}


.scj-footer-bottom p {

    margin: 0;

    color:
        rgba(255,255,255,.35);

    font-size: 9px;

}


.scj-footer-bottom > div {

    display: flex;
    align-items: center;

    gap: 9px;

}


.scj-footer-bottom a {

    color:
        rgba(255,255,255,.38);

    font-size: 9px;

    transition: var(--scj-transition);

}


.scj-footer-bottom a:hover {

    color: var(--scj-primary);

}


.scj-footer-bottom span {

    color:
        rgba(255,255,255,.18);

}


/* =========================================================
   18. FLOATING WHATSAPP
========================================================= */

.scj-floating-whatsapp {

    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 999;

    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #20B26B;

    color: var(--scj-white);

    font-size: 23px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.22);

    transition: var(--scj-transition);

}


.scj-floating-whatsapp:hover {

    color: var(--scj-white);

    transform:
        translateY(-5px)
        scale(1.05);

}


/* =========================================================
   19. SEARCH POPUP
========================================================= */

.scj-search-popup {

    visibility: hidden;

    opacity: 0;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


.scj-search-popup.active {

    visibility: visible;

    opacity: 1;

}


.scj-search-popup .popup-inner {

    position: relative;

}


.scj-search-popup .upper-box {

    position: relative;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;

}


.scj-search-popup .logo-box {

    margin: 0;

}


.scj-search-popup .logo-box img {

    width: 150px;

}


.scj-search-close {

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.1);

    color: var(--scj-white);

    cursor: pointer;

}


.scj-search-close:hover {

    background: var(--scj-primary);

}


.scj-search-popup .search-form {

    position: relative;
    z-index: 5;

}


.scj-search-popup .search-form fieldset {

    position: relative;

}


.scj-search-popup .search-form input {

    height: 60px;

    padding:
        0 65px 0 20px;

    border-radius: 8px;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.15);

    color: var(--scj-white);

    outline: none;

}


.scj-search-popup .search-form input:focus {

    border-color:
        var(--scj-primary);

}


.scj-search-popup .search-form button {

    position: absolute;

    top: 0;
    right: 0;

    width: 60px;
    height: 60px;

    background: var(--scj-primary);

    color: var(--scj-white);

    cursor: pointer;

}


.scj-search-results {

    margin-top: 15px;

    max-height: 350px;

    overflow-y: auto;

}


.scj-search-result {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 14px 17px;

    margin-bottom: 7px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 7px;

    background:
        rgba(255,255,255,.04);

}


.scj-search-result a {

    color: var(--scj-white);

    font-size: 11px;
    font-weight: 600;

}


.scj-search-result a:hover {

    color: var(--scj-primary);

}


.scj-search-result small {

    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.4);

    font-size: 8px;

}


.scj-search-empty {

    padding: 15px;

    border-radius: 7px;

    background:
        rgba(255,255,255,.05);

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

}


/* =========================================================
   20. MOBILE MENU
========================================================= */

.scj-mobile-menu .nav-logo img {

    width: 150px;

}


.scj-mobile-menu .contact-info h4 {

    color: var(--scj-primary);

}


.scj-mobile-menu .contact-info li,
.scj-mobile-menu .contact-info a {

    font-size: 11px;

}


/* =========================================================
   21. TABLET
========================================================= */

@media (max-width: 1199px) {


    .container {

        max-width: 1100px;

    }


    .scj-main-menu ul.navigation {

        gap: 22px;

    }


    .scj-hero-grid {

        gap: 40px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(340px, .7fr);

    }


    .scj-hero-content h1 {

        font-size: 60px;

    }


    .scj-benefit {

        padding:
            18px 14px;

    }


    .scj-benefit p {

        font-size: 9px;

    }


    .scj-car-slide {

        flex-basis:
            calc(
                (100% - 20px) / 2
            );

    }


    .scj-review-slide {

        flex-basis:
            calc(
                (100% - 20px) / 2
            );

    }


    .scj-two-column {

        gap: 50px;

    }


}


/* =========================================================
   22. 991px
========================================================= */

@media (max-width: 991px) {


    .scj-main-header {

        display: block;

    }


    .scj-main-header .main_header_menu {

        display: none;

    }


    .scj-header-right {

        margin-left: auto;

    }


    .scj-mobile-toggler {

        display: flex !important;

        margin-right: 15px;

    }


    .scj-hero-section {

        min-height: auto;

    }


    .scj-hero-grid {

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            80px 0;

    }


    .scj-hero-content {

        max-width: 720px;

    }


    .scj-hero-booking-card {

        max-width: 600px;

        width: 100%;

    }


    .scj-benefits-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .scj-benefit:nth-child(2) {

        border-right: 0;

    }


    .scj-benefit:nth-child(3) {

        border-top:
            1px solid var(--scj-border);

    }


    .scj-benefit:nth-child(4) {

        border-top:
            1px solid var(--scj-border);

    }


    .scj-how-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .scj-two-column {

        grid-template-columns:
            1fr;

        gap: 45px;

    }


    .scj-why-content {

        max-width: 750px;

    }


    .scj-location-grid {

        grid-template-columns:
            1fr;

    }


    .scj-location-content {

        max-width: 700px;

    }


    .scj-map-container {

        min-height: 420px;

    }


    .scj-map-container iframe {

        min-height: 420px;

    }


    .scj-footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 45px;

    }


}


/* =========================================================
   23. 767px MOBILE
========================================================= */

@media (max-width: 767px) {


    .container {

        padding-left: 16px;
        padding-right: 16px;

    }


    /* OFFER */

    .scj-top-offer-inner {

        min-height: 42px;

        justify-content: center;

    }


    .scj-offer-content p {

        font-size: 9px;

    }


    .scj-offer-btn {

        display: none;

    }


    /* HEADER */

    .main_header_inner {

        min-height: 70px;

    }


    .scj-header-logo img {

        width: 145px;

    }


    .scj-header-right {

        gap: 8px;

    }


    .scj-header-book-btn {

        display: none;

    }


    .scj-header-search {

        width: 38px;
        height: 38px;

    }


    /* HERO */

    .scj-hero-grid {

        padding:
            65px 0;

        gap: 35px;

    }


    .scj-hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(3,7,12,.91),
                rgba(3,8,14,.82)
            );

    }


    .scj-hero-content h1 {

        font-size:
            clamp(42px, 13vw, 57px);

        letter-spacing: -1.5px;

    }


    .scj-hero-content > p {

        font-size: 12px;

        line-height: 1.8;

    }


    .scj-hero-actions {

        flex-direction: column;

        align-items: stretch;

        max-width: 330px;

        margin-bottom: 28px;

    }


    .scj-btn {

        width: 100%;

    }


    .scj-hero-trust {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 15px;

    }


    .scj-hero-booking-card {

        padding: 22px;

        border-radius: 14px;

    }


    .scj-booking-card-header h2 {

        font-size: 21px;

    }


    /* BENEFITS */

    .scj-benefits-grid {

        grid-template-columns:
            1fr;

    }


    .scj-benefit,
    .scj-benefit:first-child,
    .scj-benefit:nth-child(2),
    .scj-benefit:nth-child(3),
    .scj-benefit:nth-child(4) {

        min-height: 88px;

        border:
            0;

        border-bottom:
            1px solid var(--scj-border);

    }


    .scj-benefit:last-child {

        border-bottom: 0;

    }


    /* SECTION */

    .scj-fleet-section,
    .scj-how-section,
    .scj-why-section,
    .scj-reviews-section,
    .scj-reels-section,
    .scj-location-section {

        padding:
            75px 0;

    }


    .scj-section-heading {

        margin-bottom: 32px;

    }


    .scj-section-heading h2 {

        font-size: 32px;

    }


    /* FLEET */

    .scj-fleet-carousel {

        gap: 8px;

    }


    .scj-fleet-arrow {

        flex-basis: 38px;

        width: 38px;
        height: 38px;

    }


    .scj-car-slide {

        flex-basis:
            100%;

    }


    .scj-car-image {

        height: 220px;

    }


    .scj-fleet-info {

        flex-direction: column;

        gap: 10px;

        align-items: center;

    }


    /* OFFER */

    .scj-offer-section {

        min-height: 430px;

    }


    .scj-offer-content-box {

        padding:
            65px 0;

    }


    .scj-offer-content-box h2 {

        font-size: 39px;

    }


    /* HOW */

    .scj-how-grid {

        grid-template-columns:
            1fr;

    }


    /* WHY */

    .scj-check-list {

        grid-template-columns:
            1fr;

    }


    .scj-feature-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 10px;

    }


    .scj-feature-card {

        min-height: 155px;

        padding: 20px;

    }


    .scj-feature-card h3 {

        font-size: 17px;

    }


    /* REVIEWS */

    .scj-reviews-carousel {

        gap: 8px;

    }


    .scj-review-arrow {

        flex-basis: 38px;

        width: 38px;
        height: 38px;

    }


    .scj-review-slide {

        flex-basis:
            100%;

    }


    /* REELS */

    .scj-reels-viewport {

        min-height: 510px;

    }


    .scj-reels-track {

        min-height: 510px;

    }


    .scj-reel-card {

        flex-basis:
            min(82vw, 300px);

        height: 500px;

    }


    .scj-reels-carousel {

        gap: 7px;

    }


    .scj-reels-arrow {

        flex-basis: 38px;

        width: 38px;
        height: 38px;

    }


    .scj-reels-highlights {

        grid-template-columns:
            1fr;

        margin-top: 40px;

    }


    .scj-reels-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

        margin-top: 40px;

    }


    .scj-reels-cta-btn {

        width: 100%;

        justify-content: center;

    }


    /* LOCATION */

    .scj-location-grid {

        gap: 35px;

    }


    .scj-map-container,
    .scj-map-container iframe {

        min-height: 350px;

    }


    .scj-location-buttons {

        flex-direction: column;

        max-width: 320px;

    }


    /* FINAL CTA */

    .scj-final-cta {

        padding:
            45px 0;

    }


    .scj-final-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .scj-final-cta .scj-btn {

        width: auto;

    }


    /* FOOTER */

    .scj-footer {

        padding-top:
            55px;

    }


    .scj-footer-grid {

        grid-template-columns:
            1fr;

        gap: 35px;

        padding-bottom:
            40px;

    }


    .scj-footer-brand p {

        max-width: 100%;

    }


    .scj-footer-bottom {

        min-height: auto;

        padding:
            20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }


}


/* =========================================================
   24. 480px SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .scj-top-offer-inner {

        min-height: 40px;

    }


    .scj-offer-content {

        gap: 6px;

    }


    .scj-offer-icon {

        font-size: 14px;

    }


    .scj-offer-content p {

        font-size: 8px;

    }


    .scj-header-logo img {

        width: 130px;

    }


    .scj-hero-grid {

        padding:
            55px 0;

    }


    .scj-hero-content h1 {

        font-size: 40px;

    }


    .scj-hero-content > p {

        font-size: 11px;

    }


    .scj-hero-trust {

        grid-template-columns:
            1fr;

    }


    .scj-hero-booking-card {

        padding: 18px;

    }


    .scj-booking-card-header h2 {

        font-size: 19px;

    }


    .scj-car-content {

        padding: 18px;

    }


    .scj-car-content h3 {

        font-size: 18px;

    }


    .scj-car-price strong {

        font-size: 18px;

    }


    .scj-feature-grid {

        grid-template-columns:
            1fr;

    }


    .scj-feature-card {

        min-height: 130px;

    }


    .scj-location-content h2 {

        font-size: 34px;

    }


    .scj-offer-content-box h2 {

        font-size: 35px;

    }


    .scj-reel-card {

        flex-basis:
            78vw;

        height: 480px;

    }


    .scj-reels-viewport,
    .scj-reels-track {

        min-height: 490px;

    }


    .scj-footer-bottom > div {

        flex-wrap: wrap;

    }


    .scj-floating-whatsapp {

        width: 48px;
        height: 48px;

        right: 15px;
        bottom: 15px;

        font-size: 20px;

    }

}


/* =========================================================
   25. ACCESSIBILITY / FOCUS
========================================================= */

.scj-header a:focus-visible,
.scj-header button:focus-visible,
.scj-hero-section a:focus-visible,
.scj-hero-section button:focus-visible,
.scj-fleet-section a:focus-visible,
.scj-fleet-section button:focus-visible,
.scj-reviews-section button:focus-visible,
.scj-reels-section button:focus-visible,
.scj-footer a:focus-visible {

    outline:
        2px solid var(--scj-primary);

    outline-offset: 3px;

}


/* =========================================================
   26. REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}


/* =========================================================
   27. TEMPLATE OVERRIDES
   These prevent old template styling from breaking
   the new Home Page.
========================================================= */

.scj-header .main-menu .navigation > li > a::before,
.scj-header .main-menu .navigation > li > a::after {

    display: none !important;

}


.scj-header .main-menu .navigation > li > a {

    padding-left: 0 !important;
    padding-right: 0 !important;

}


.scj-header .sticky_header {

    display: none;

}


.scj-hero-section .owl-nav,
.scj-fleet-section .owl-nav,
.scj-reviews-section .owl-nav {

    display: none;

}


.scj-footer .widget-title::before,
.scj-footer .widget-title::after {

    display: none !important;

}


/* =========================================================
   28. FORM DATE FIX
========================================================= */

.scj-form-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {

    cursor: pointer;

}


/* =========================================================
   29. SELECTION
========================================================= */

.scj-header ::selection,
.scj-hero-section ::selection,
.scj-fleet-section ::selection,
.scj-reviews-section ::selection,
.scj-reels-section ::selection,
.scj-footer ::selection {

    background: var(--scj-primary);

    color: var(--scj-white);

}


/* =========================================================
   END OF SELF CAR JUNCTION HOME CSS
========================================================= */


/* =========================================================
   SELF CAR JUNCTION — ABOUT US PAGE CSS
   Can be linked OR pasted inside <style> at the bottom.
   Theme: Black / Deep Navy / White / #087CFF
   ========================================================= */

.scj-about-section,
.scj-owner-section,
.scj-trust-section,
.scj-about-final-cta {
    --scj-blue:#087CFF;
    --scj-black:#05070A;
    --scj-navy:#080D13;
    --scj-text:#171B21;
    --scj-muted:#69717D;
    --scj-border:#E7EBF0;
    --scj-light:#F6F8FB;
}

/* About company */
.scj-about-section {
    position: relative;
    background:#fff;
}

.scj-about-image {
    position:relative;
    padding-right:35px;
}

.scj-about-image img {
    width:100%;
    display:block;
    border-radius:16px;
    object-fit:cover;
}

.scj-about-image::after {
    content:"";
    position:absolute;
    left:-14px;
    top:-14px;
    width:90px;
    height:90px;
    border-left:4px solid #087CFF;
    border-top:4px solid #087CFF;
    border-radius:12px 0 0 0;
    pointer-events:none;
}

.scj-about-section .scj-experience-badge {
    position:absolute;
    right:0;
    bottom:35px;
    min-width:150px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    gap:10px;
    background:#05070A;
    color:#fff;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.20);
}

.scj-about-section .scj-experience-badge strong {
    font-size:38px;
    line-height:1;
    color:#087CFF;
    font-weight:800;
}

.scj-about-section .scj-experience-badge span {
    font-size:12px;
    line-height:1.35;
    font-weight:700;
}

.scj-about-title { padding-top:0 !important; }

.scj-about-content { margin-bottom:28px; }

.scj-about-content p {
    line-height:1.8;
    margin-bottom:14px;
    color:#69717D;
}

.scj-about-content .scj-lead {
    font-size:17px;
    font-weight:500;
    color:#303640;
}

.scj-about-content strong { color:#171B21; font-weight:700; }

/* Trust points */
.scj-trust-points {
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:30px;
}

.scj-trust-point {
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.scj-trust-icon {
    flex:0 0 46px;
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(8,124,255,.09);
    color:#087CFF;
}

.scj-trust-point h5 {
    margin:0 0 4px;
    color:#171B21;
}

.scj-trust-point p {
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:#69717D;
}

/* CTA */
.scj-about-cta {
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.scj-about-cta .btn-style-one,
.scj-primary-btn {
    background:#087CFF;
    border-color:#087CFF;
    color:#fff;
}

.scj-about-cta .btn-style-one:hover,
.scj-primary-btn:hover {
    background:#05070A;
    border-color:#05070A;
    color:#fff;
}

.scj-call-link,
.scj-call-btn {
    display:flex;
    align-items:center;
    gap:10px;
    color:#171B21;
    text-decoration:none;
}

.scj-call-icon,
.scj-call-btn > i {
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #E7EBF0;
    border-radius:50%;
    color:#087CFF;
    background:#fff;
}

.scj-call-link small,
.scj-call-btn small {
    display:block;
    font-size:10px;
    line-height:1.2;
    color:#89919C;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.scj-call-link span:last-child,
.scj-call-btn span {
    font-weight:700;
}

/* Owner / founder */
.scj-owner-section {
    width:100%;
    padding:110px 20px;
    background:#F6F8FB;
    overflow:hidden;
}

.scj-owner-container {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    align-items:center;
    gap:80px;
}

.scj-owner-image-wrap { position:relative; }

.scj-owner-image-box {
    position:relative;
    width:100%;
    height:560px;
    border-radius:18px;
    overflow:hidden;
    background:#05070A;
    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.scj-owner-image {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.scj-owner-image-box:hover .scj-owner-image {
    transform:scale(1.04);
}

.scj-image-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.02) 35%,rgba(0,0,0,.72) 100%);
    pointer-events:none;
}

.scj-owner-section .scj-experience-badge {
    position:absolute;
    left:25px;
    bottom:25px;
    min-width:150px;
    padding:18px 22px;
    background:#087CFF;
    color:#fff;
    border-radius:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.scj-owner-section .scj-experience-badge strong {
    display:block;
    font-size:34px;
    line-height:1;
    font-weight:800;
}

.scj-owner-section .scj-experience-badge span {
    display:block;
    margin-top:6px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.scj-image-corner {
    position:absolute;
    top:0;
    right:0;
    width:90px;
    height:90px;
    border-top:4px solid #087CFF;
    border-right:4px solid #087CFF;
    border-radius:0 18px 0 0;
}

.scj-section-label {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:17px;
    color:#087CFF;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.scj-section-label span {
    width:35px;
    height:2px;
    display:block;
    background:#087CFF;
}

.scj-owner-content h2 {
    margin:0 0 24px;
    color:#171B21;
    font-size:46px;
    line-height:1.15;
    font-weight:700;
}

.scj-owner-content h2 strong {
    display:block;
    color:#087CFF;
    font-weight:800;
}

.scj-owner-intro {
    margin-bottom:17px;
    color:#303640;
    font-size:18px;
    line-height:1.75;
    font-weight:500;
}

.scj-owner-description {
    margin-bottom:30px;
    color:#69717D;
    font-size:15px;
    line-height:1.8;
}

/* Owner info cards */
.scj-owner-info {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:28px;
}

.scj-owner-info-item {
    display:flex;
    align-items:center;
    gap:13px;
    padding:16px;
    background:#fff;
    border:1px solid #E7EBF0;
    border-radius:9px;
    transition:all .3s ease;
}

.scj-owner-info-item:hover {
    transform:translateY(-3px);
    border-color:#087CFF;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.scj-info-icon {
    width:43px;
    height:43px;
    flex:0 0 43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#05070A;
    color:#087CFF;
    font-size:16px;
}

.scj-owner-info-item span {
    display:block;
    color:#89919C;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.6px;
    margin-bottom:4px;
}

.scj-owner-info-item strong {
    display:block;
    color:#222831;
    font-size:14px;
    font-weight:700;
}

.scj-owner-quote {
    position:relative;
    padding:22px 24px;
    margin-bottom:30px;
    background:#05070A;
    border-radius:9px;
    border-left:4px solid #087CFF;
}

.scj-quote-icon {
    color:#087CFF;
    font-size:20px;
    margin-bottom:8px;
}

.scj-owner-quote p {
    margin:0 0 8px;
    color:#fff;
    font-size:15px;
    line-height:1.7;
    font-style:italic;
}

.scj-owner-quote span {
    color:#8E98A5;
    font-size:12px;
    font-weight:600;
}

.scj-owner-actions {
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.scj-primary-btn {
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:14px 22px;
    border-radius:5px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:all .3s ease;
}

.scj-primary-btn i { transition:transform .3s ease; }
.scj-primary-btn:hover i { transform:translateX(4px); }

/* Trust cards */
.scj-trust-section { background:#fff; }

.scj-trust-card {
    height:100%;
    padding:35px 30px;
    background:#fff;
    border-radius:12px;
    border:1px solid #E7EBF0;
    transition:all .3s ease;
}

.scj-trust-card:hover {
    transform:translateY(-7px);
    border-color:#087CFF;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.scj-card-icon {
    width:55px;
    height:55px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(8,124,255,.09);
    color:#087CFF;
    font-size:20px;
}

.scj-trust-card h4 {
    margin-bottom:12px;
    color:#171B21;
}

.scj-trust-card p {
    margin:0;
    color:#69717D;
    line-height:1.7;
}

/* Final CTA */
.scj-about-final-cta { padding:80px 0; }

.scj-final-cta-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
    padding:45px 50px;
    border-radius:14px;
    background:#05070A;
}

.scj-final-cta-content { max-width:650px; }

.scj-final-cta-content .sub-title { color:#087CFF; }

.scj-final-cta-content h2 {
    color:#fff;
    margin:8px 0 10px;
}

.scj-final-cta-content p {
    color:rgba(255,255,255,.7);
    margin:0;
}

.scj-final-cta-buttons {
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.scj-whatsapp-btn {
    padding:14px 25px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:5px;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.scj-whatsapp-btn:hover {
    background:#087CFF;
    border-color:#087CFF;
    color:#fff;
}

/* Search popup compatibility */
#search-popup.scj-about-search-active .popup-inner { z-index:1001; }

.scj-search-result {
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:14px 0;
    border-bottom:1px solid #E7EBF0;
}

.scj-search-result a {
    color:#087CFF;
    font-weight:600;
    text-decoration:none;
}

.scj-search-result small { color:#89919C; }

/* Responsive */
@media (max-width:991px) {
    .scj-about-image { padding-right:0; margin-bottom:50px; }
    .scj-about-section .scj-experience-badge { right:20px; }
    .scj-owner-container {
        grid-template-columns:1fr;
        gap:55px;
        max-width:700px;
    }
    .scj-owner-image-box { height:500px; }
    .scj-owner-content h2 { font-size:40px; }
    .scj-final-cta-inner {
        flex-direction:column;
        align-items:flex-start;
    }
}

@media (max-width:767px) {
    .scj-about-image { margin-bottom:40px; }
    .scj-about-section .scj-experience-badge {
        right:10px;
        bottom:20px;
        min-width:125px;
        padding:14px;
    }
    .scj-about-section .scj-experience-badge strong { font-size:30px; }
    .scj-about-cta {
        align-items:flex-start;
        flex-direction:column;
    }
    .scj-owner-section { padding:70px 18px; }
    .scj-owner-container { gap:40px; }
    .scj-owner-image-box {
        height:390px;
        border-radius:12px;
    }
    .scj-owner-content h2 {
        font-size:32px;
        line-height:1.2;
    }
    .scj-owner-intro { font-size:16px; }
    .scj-owner-description { font-size:14px; }
    .scj-owner-info { grid-template-columns:1fr; }
    .scj-owner-section .scj-experience-badge {
        left:15px;
        bottom:15px;
        padding:14px 17px;
    }
    .scj-owner-section .scj-experience-badge strong { font-size:28px; }
    .scj-owner-actions {
        align-items:stretch;
        flex-direction:column;
    }
    .scj-primary-btn { justify-content:center; }
    .scj-call-btn { justify-content:center; }
    .scj-final-cta-inner { padding:30px 25px; }
    .scj-final-cta-content h2 { font-size:28px; }
    .scj-final-cta-buttons {
        width:100%;
        flex-direction:column;
        align-items:stretch;
    }
    .scj-final-cta-buttons a { text-align:center; }
}
