:root {
    --primary-color: #FEC901;
    --secondary-color: #1c1c1c;
    --text-color: #333333;
    --light-color: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    border-radius: 0 !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #e5b601;
    border-color: #e5b601;
    color: #000;
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--primary-color);
}

.top-bar i {
    color: var(--primary-color);
}

.navbar {
    background-color: #1c1c1c !important;
    padding: 15px 0;
}

.navbar-brand {
    color: #fff !important;
    font-size: 1.8rem;
    font-weight: 800;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-left: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    background-color: #1c1c1c;
    border: none;
    border-top: 3px solid var(--primary-color);
    border-radius: 0;
    display: none;
    position: absolute;
    min-width: 220px;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.dropdown-item {
    color: #fff;
    padding: 12px 20px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    border: none;
}

.dropdown-item:hover {
    background-color: #333;
    color: var(--primary-color);
}

.dropdown:hover>.dropdown-menu {
    display: block !important;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>a::after {
    float: right;
    margin-top: 5px;
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block !important;
    animation: slideDown 0.3s ease;
    left: 100%;
    top: 0;
    margin-left: 0;
    margin-top: -3px;
    min-width: 200px;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -3px;
    display: none;
    position: absolute;
    background-color: #1c1c1c;
    min-width: 200px;
    border: none;
    border-top: 3px solid var(--primary-color);
}

.dropdown-submenu:hover>.dropdown-menu,
.dropdown-submenu>.dropdown-menu:hover {
    display: block !important;
    animation: slideDown 0.3s ease;
}

.navbar {
    background-color: #0c1b2a !important;
    /* margin-bottom: 10px; */
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: 1px;
}

.navbar-brand .text-primary {
    color: #FFD43B !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD43B !important;
}

.navbar .btn-primary {
    background-color: #FFD43B;
    border: none;
    color: #000;
    font-weight: 600;
    align-content: center;
}

.navbar .btn-primary:hover {
    background-color: #ffcc00;
}


.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #FFD43B;
    color: #000;
}


@media (min-width: 992px) {
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0;
        display: none;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}


@media (max-width: 991px) {

    .navbar-collapse {
        background-color: #0c1b2a;
        padding: 15px;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link {
        padding: 12px 10px;
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        background-color: #12263a;
    }

    .dropdown-item {
        color: #fff;
        padding-left: 30px;
    }

    .dropdown-item:hover {
        background-color: #FFD43B;
        color: #000;
    }

    .dropdown-submenu>a::after {
        content: "▼";
        float: right;
        font-size: 12px;
        margin-top: 5px;
    }

    .dropdown-submenu>.dropdown-menu {
        display: none;
        background-color: #1a3552;
    }

    .dropdown-submenu .dropdown-item {
        padding-left: 45px;
    }

    .navbar .btn-primary {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
}


/* .navbar-toggler {
    background-color: var(--primary-color);
} */

.hero-section {
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.bg-dark p[style*="color: #ffca28"] {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    color: #000;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.card {
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease;
    background-color: #fff;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
}

/* .card:hover {
    transform: translateY(-10px);
} */

.vehicle-card .card-img-top {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

.card-title {
    color: #000;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
    color: #000 !important;
}

.bg-dark {
    background-color: #1c1c1c !important;
}

.text-warning {
    color: var(--primary-color) !important;
}

footer {
    background-color: #111 !important;
    border-top: 5px solid var(--primary-color);
}

footer h5 {
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

footer a {
    color: #bbb;
}

footer a:hover {
    color: var(--primary-color);
}

footer .fab {
    background: #222;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s;
}

footer .fab:hover {
    background: var(--primary-color);
    color: #000;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
}

.feature-box {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    font-size: 30px;
    color: var(--secondary-color);
    transition: all 0.3s;
}

.feature-box:hover .feature-icon-circle {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.separator-line {
    width: 50px;
    height: 2px;
    background-color: #ccc;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
}

.separator-line::after {
    content: '';
    position: absolute;
    left: 10px;
    top: -2px;
    width: 5px;
    height: 5px;
    background-color: #ccc;
    border-radius: 50%;
}

.separator-line::before {
    content: '';
    position: absolute;
    left: 20px;
    top: -2px;
    width: 5px;
    height: 5px;
    background-color: #ccc;
    border-radius: 50%;
}

.blog-card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    background: #fff;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-img-wrapper img {
    transition: transform 0.5s;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
    z-index: 10;
}

.date-day {
    font-size: 24px;
    display: block;
}

.date-month {
    font-size: 14px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-meta i {
    margin-right: 5px;
    color: #ccc;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
}

.carsharing-section .illustration-wrap {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carsharing-section .main-illustration {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.carsharing-section .tag-box {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(90deg, #9F7AEA, #A78BFA);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    z-index: 30;
}

.carsharing-section .tag-box .tag-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.05;
}

.carsharing-section .tag-box .tag-icon {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-sharing-banner .tag-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(90deg, #9F7AEA, #A78BFA);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.car-sharing-banner .tag-box .tag-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.05;
    color: #fff
}

.car-sharing-banner .tag-box .tag-icon {
    background: transparent;
    padding: 0
}

.car-sharing-banner .tag-box .tag-icon .tag-car {
    width: 120px;
    height: auto;
    border-radius: 8px;
    object-fit: cover
}

.carsharing-right .label-small {
    font-size: 14px;
}

.carsharing-right .cs-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.95;
    margin: 0 0 18px 0;
}

.feature-list .feature-tile {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 10px;
}

.feature-list .feature-tile .tile-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.feature-list .feature-tile.pink {
    background: #FCE4EC;
    border-left: 6px solid #E91E63
}

.feature-list .feature-tile.pink .tile-icon {
    background: rgba(233, 30, 99, 0.08);
    color: #E91E63
}

.feature-list .feature-tile.mint {
    background: #E8F5E9;
    border-left: 6px solid #4CAF50
}

.feature-list .feature-tile.mint .tile-icon {
    background: rgba(76, 175, 80, 0.08);
    color: #4CAF50
}

.cta-tiles .cta {
    flex: 1;
    min-width: 120px;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.cta-tiles .cta.call {
    background: linear-gradient(90deg, #8B5CF6, #7C3AED);
}

.cta-tiles .cta.call .cta-strong {
    font-weight: 800
}

.cta-tiles .cta.social {
    background: #E8F5E9;
    color: #2E7D32
}

.cta-tiles .cta.book {
    background: linear-gradient(90deg, #8B5CF6, #7C3AED)
}

.cta-tiles .cta .cta-title {
    opacity: 0.9;
    font-size: 12px
}

.cta-tiles .cta .cta-strong {
    font-size: 16px
}

@media (max-width: 991px) {
    .carsharing-right .cs-title {
        font-size: 44px
    }

    .carsharing-section .main-illustration {
        max-height: 320px
    }
}


.blog-title a:hover {
    color: var(--primary-color);
}

.read-more-btn {
    border: 1px solid #eee;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    display: inline-block;
    margin-top: 15px;
}

.read-more-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

div.black-icon>i {
    border-color: #000;
    color: #000;
}

img.sharing-section-car {
    position: absolute;
    top: -42px;
    right: -39px;
    width: 38% !important;
}

.car-sharing-section {
    background-color: rgb(215 217 220 / 65%) !important;
}

.cta-button {
    padding: 0.5rem !important;
}

.home-icons {
    size: 10px !important;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.charter-section {
    background: linear-gradient(135deg, rgba(30, 90, 140, 0.8) 0%, rgba(15, 50, 90, 0.85) 100%), url('../images/Service-cards.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.charter-section h2 {
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.charter-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

p {
    font-size: 16px !important;
    line-height: 1.6;
}

.airport-transfer-page p,
.airport-transfer-page .lead {
    text-align: justify !important;
}

.lead {
    font-size: 16px !important;
}

.card-text {
    font-size: 15px !important;
}

@media (max-width: 768px) {
    p {
        font-size: 15px !important;
    }

    .lead {
        font-size: 15px !important;
    }

    .airport-transfer-page p,
    .airport-transfer-page .lead {
        text-align: justify !important;
    }
}

@media (max-width: 576px) {
    p {
        font-size: 14px !important;
    }

    .lead {
        font-size: 14px !important;
    }

    .airport-transfer-page p,
    .airport-transfer-page .lead {
        text-align: justify !important;
    }
}

.charter-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.charter-item h5 {
    color: #fec901;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.charter-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.charter-icon-circle {
    background: white;
    color: #1E5A8C;
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.paragraph-1 {
    text-align: center !important;
}

.home-para {
    text-align: center !important;
}

.contact-form-wrapper {
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.contact-form-wrapper .form-control {
    border-radius: 0;
    padding: 12px 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    background-color: #fff;
}

.contact-form-wrapper .btn-primary {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 201, 1, 0.3);
}
/* Offcanvas Mobile Menu */
.offcanvas {
    background-color: #1c1c1c;
    color: #fff;
}

.offcanvas-header .btn-close {
    opacity: 1;
}

.offcanvas-body .nav-link {
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0; 
}

.offcanvas-body .dropdown-menu {
    background-color: #2c2c2c; 
    border: none;
    padding-left: 15px;
}

.offcanvas-body .dropdown-item {
    color: #ddd;
    padding: 10px 0;
}

.offcanvas-body .dropdown-item:hover {
    color: var(--primary-color);
    background: transparent;
}

/* Entrance Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in {
    transform: translateY(20px);
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delays for children */
.stagger-children > * {
    opacity: 0;
}

.stagger-children.is-visible > * {
    animation: fadeInUp 0.5s ease forwards;
}

.stagger-children.is-visible > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children.is-visible > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children.is-visible > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children.is-visible > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children.is-visible > *:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

