/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1A365D;
    --secondary-blue: #2D4A8C;
    --accent-orange: #FF9606;
    --accent-green: #38A169;
    --accent-teal: #319795;
    --light-gray: #F7FAFC;
    --medium-gray: #E2E8F0;
    --dark-gray: #4A5568;
    --white: #FFFFFF;
    --black: #2D3748;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

#services,
#why-us,
#app,
#app-customer,
#app-driver,
#app-rental,
#testimonials,
#contact {
    scroll-margin-top: 100px;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.content-page .container {
    padding: 120px 0 60px;
}


section.content-page p,
section.content-page ul li {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.content-page h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: clip-path 0.6s ease-in-out;
    z-index: -1;
    clip-path: circle(0% at 50% 50%);
}

.btn:hover::before {
    clip-path: circle(150% at 50% 50%);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary::before {
    background-color: var(--accent-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary::before {
    background-color: var(--accent-orange);
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline::before {
    background-color: var(--primary-blue);
}

.btn-outline:hover {
    color: var(--white);
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.hero-buttons .btn {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.hero-buttons .btn::before {
    background-color: var(--accent-orange);
}

.hero-buttons .btn:hover {
    color: var(--white);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 150, 6, 0.35);
}

.btn-secondary:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-accent::before {
    background-color: var(--primary-blue);
}

.btn-accent:hover {
    transform: translateY(-2px);
    color: var(--white);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    max-width: 125px;
    max-height: 75px;
    object-fit: contain;
    padding: 3px 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
    color: var(--black);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--black);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
    width: 100%;
    left: 0;
}

.nav-links a:not(.btn):hover {
    color: var(--black);
}

a.btn.btn-accent:hover {
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
}

.container.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container.flex .hero-content {
    width: 50%;
}

.container.flex .banner-img {
    width: 50%;
    height: auto;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 80px 0 0px;
    text-align: center;
}

/* Background image with ken-burns animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/a2b-img/A2B 5.jpeg') no-repeat center center;
    background-size: cover;
    animation: heroKenBurns 25s ease-in-out infinite alternate;
    z-index: 0;
}

/* Dark gradient overlay for text legibility */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 25% 45%,
        rgba(10, 25, 47, 0.35) 0%,
        rgba(10, 25, 47, 0.62) 55%,
        rgba(6, 15, 30, 0.88) 100%
    );
    z-index: 1;
}

/* Ensure hero content sits above the overlay */
.hero > * {
    position: relative;
    z-index: 2;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.08) translate(-1%, -1%);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;


    height: 480px;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1,
.hero-content p {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content .fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.hero-content .fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-btns .btn {
    min-width: 180px;
}

.app-download {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: var(--white);
    color: var(--black);
    padding: 8px 18px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.app-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: clip-path 0.6s ease-in-out;
    z-index: -1;
    clip-path: circle(0% at 50% 50%);
}

.app-btn:hover::before {
    clip-path: circle(150% at 50% 50%);
}

.app-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.app-btn.app-store-btn {
    background-color: var(--white);
    color: var(--black);
}

.app-btn.app-store-btn::before {
    background-color: var(--accent-orange);
}

.app-btn.app-store-btn:hover {
    color: var(--white);
}

.app-btn.play-store-btn {
    background-color: var(--accent-orange);
    color: var(--white);
}

.app-btn.play-store-btn::before {
    background-color: var(--primary-blue);
}

.app-btn.play-store-btn:hover {
    color: var(--white);
}

.app-btn i {
    font-size: 1.5rem;
    margin-right: 12px;
}

.app-btn-text {
    text-align: left;
}

.app-btn-text span {
    font-size: 0.68rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.app-btn-text h4 {
    font-size: 0.95rem;
    line-height: 1.1;
    margin-top: 1px;
}


/* Services Section */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card .btn {
    margin-top: auto;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* --- Image-backed service cards --- */
.service-card.service-card-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 340px;
    padding: 0;
    border-radius: 16px;
    color: var(--white);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 54, 93, 0.35) 0%,
        rgba(26, 54, 93, 0.7) 50%,
        rgba(26, 54, 93, 0.92) 100%
    );
    border-radius: 16px;
    z-index: 1;
    transition: background 0.4s ease;
}

.service-card.service-card-img:hover .service-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(26, 54, 93, 0.25) 0%,
        rgba(26, 54, 93, 0.6) 50%,
        rgba(26, 54, 93, 0.85) 100%
    );
}

.service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding: 30px 20px;
}

.service-card.service-card-img .service-icon {
    color: var(--accent-orange);
    font-size: 2.8rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.service-card.service-card-img h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.service-card.service-card-img p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    max-width: 280px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card.logistics .service-icon {
    color: var(--accent-orange);
}

.service-card.taxi .service-icon {
    color: var(--accent-green);
}

.service-card.rental .service-icon {
    color: var(--accent-orange);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.service-card .service-bullets {
    margin-top: 10px;
    padding-left: 18px;
    margin-left: 0;
    text-align: left;
}

.service-card ul.service-bullets {
    list-style: disc;
    min-height: 130px;
}

.service-card ul.service-bullets li {
    margin-bottom: 5px;
}


.service-card p,
.service-card .service-bullets {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.5;
}


/* NEW: Service badges styling */
.service-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 190px;
    border-radius: 10%;
    border: 1px solid transparent;
    cursor: pointer;

}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.badge-subtext {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 5px;
}

.badge-24 .badge-icon {
    color: var(--accent-green);
}

.badge-affordable .badge-icon {
    color: var(--accent-orange);
}

.badge-global .badge-icon {
    color: var(--secondary-blue);
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* App Download Section */
.app-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.app-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-content {
    flex: 1;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.app-features {
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.app-feature i {
    color: var(--accent-orange);
    margin-right: 15px;
    font-size: 1.2rem;
}

.app-mockup {
    flex: 1;
    text-align: center;
}

.app-mockup img {
    max-width: 300px;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 350px;
}

.testimonial-slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.testimonial-slide {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-blue);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.stars {
    color: #F6B01E;
    margin-top: 5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Dots for Slider */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.3);
}

.slider-dot:hover {
    background-color: var(--secondary-blue);
    transform: scale(1.1);
}


/* Contact Section */
.contact-container {
    display: flex;
    gap: 60px;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-blue);
}

.form-input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    margin-top: 5px;
}

.contact-info-container {
    flex: 1;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
    cursor: pointer;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.map-btn {
    margin-top: 15px;
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 180px;
    height: auto;
    border-radius: 8px; /* Optional, makes the white background look a bit nicer */
}

.footer-logo i {
    margin-right: 10px;
    color: var(--accent-orange);
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column .app-btn-text h4 {
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.footer-app-btn:hover {
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: var(--accent-orange);
}

.footer-app-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255);
    padding-top: 30px;
    text-align: center;
    opacity: 0.9;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    cursor: pointer;
}

.floating-btn:hover {
    background-color: var(--secondary-blue);
    transform: scale(1.1);
}

.floating-btn.chat {
    background-color: var(--accent-green);
}

.floating-btn.chat:hover {
    background-color: #2F855A;
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    z-index: 1001;
    display: none;
}

.chat-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
}

.chat-message.bot {
    background-color: var(--light-gray);
    padding: 12px 15px;
    border-radius: 20px 20px 20px 5px;
}

.chat-message.user {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 20px 20px 5px 20px;
    margin-left: auto;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--medium-gray);
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    margin-right: 10px;
}


.gradient-heading {
    background: linear-gradient(270deg,
            #ff9606,
            #ffb347,
            #194081);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease infinite;
}


.gradient-white-heading {
    background: linear-gradient(270deg,
            #ff9606,
            #ffb347,
            #fcfcfc);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease infinite;
}

.contact-info a.map-btn {
    margin-top: 5px;
}


@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.error {
    color: #e53935;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.form-input.error-input {
    border-color: #e53935;
}




/* content page css */

.content-page .back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: bold;
}


.content-page h1 {
    color: var(--accent-orange);
    font-size: 42px;
    margin-bottom: 30px;
}



#testimonials p {
    margin-top: 50px;
}


/* Services Detailed */
.services-detailed {
    padding: 80px 0;
    background-color: var(--light-gray);
    min-height: 500px;
    scroll-margin-top: 80px;
    border-top: 3px solid rgba(0, 0, 0, 0.1);
}

.services-detailed .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-btn {
    width: 100%;
    padding: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.accordion-item:not(.active) .accordion-btn {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.accordion-btn:hover {
    opacity: 0.9;
}

.accordion-content {
    padding: 20px;
    background-color: var(--white);
    border-radius: 0 0 5px 5px;
    display: none;
    line-height: 1.8;
    color: var(--text-gray);
}

.accordion-item.active .accordion-content {
    display: block;
}

.chevron {
    font-size: 14px;
}

.services-image {
    height: 400px;
}

/* .logistics-hub-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a90e2, #7b68ee, #ff6b6b);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.logistics-hub-img::before {
  content: "🚢 🚚 🚂 ✈️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  opacity: 0.7;
} */

.logistics-hub-img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease-in-out;
}

/* Default image */
.logistics-hub-img.image-1 {
    background-image: url("./images/rental.jpg");
}

.logistics-hub-img.image-2 {
    background-image: url("./animate/Logistics.jpg");
}

.logistics-hub-img.image-3 {
    background-image: url("./animate/taxi-image.webp");
}


/* App Store Dropdown */
.app-store-wrapper {
    position: relative;
    cursor: pointer;
}

/* Dropdown hidden by default */
.app-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

/* Dropdown links */
.app-dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
}

.app-dropdown a:hover {
    background: var(--accent-orange);
    color: white;
}

/* Show dropdown on hover */
.app-store-wrapper:hover .app-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Footer App Dropdown */
.footer-app-wrapper {
    position: relative;
    cursor: pointer;
}

/* Dropdown */
.footer-app-dropdown {
    position: absolute;
    bottom: 110%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

/* Links */
.footer-app-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--black);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-app-dropdown a:hover {
    background: var(--accent-orange);
    color: white;
}

/* Show on hover */
.footer-app-wrapper:hover .footer-app-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.send-btn{
    display: flex;
    justify-content: center;
}

/* Mobile behavior */
@media (max-width: 600px) {
    .footer-app-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        margin-top: 8px;
    }

    .footer-app-dropdown a {
        background: rgba(255,255,255,0.1);
        color: white;
        margin-bottom: 5px;
        border-radius: 6px;
    }
}

/* Mobile fix */
@media (max-width: 600px) {
    .app-dropdown {
        position: static;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
    }

    .app-dropdown a {
        background: rgba(255,255,255,0.1);
        margin-bottom: 5px;
        border-radius: 6px;
        color: white;
    }

    .app-dropdown a:hover {
        background: var(--accent-orange);
    }
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  min-width: 250px;
  margin-bottom: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  animation: slideIn 0.3s ease;
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #dc3545;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}




/* --- NEW A2B TRUST LAYER AND BUSINESS STYLES --- */

/* Navigation */
.business-link {
    font-weight: 700 !important;
}

.get-app-btn {
    padding: 8px 16px !important;
    border-radius: var(--radius) !important;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-family: 'Clash Display', sans-serif;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* Trust Layer */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-blue);
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.trust-card h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Business Solutions */
.business-solutions {
    background-color: #0a192f;
    color: var(--white);
}

.business-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.business-subhead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--medium-gray) !important;
}

.business-features {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.business-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
    display: flex;
    align-items: flex-start;
}

.business-features i {
    color: var(--accent-orange);
    margin-right: 15px;
    margin-top: 5px;
}

/* App Section Enhancements */
.app-section {
    background: linear-gradient(135deg, #2c5282, var(--primary-blue));
}

.multi-app-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

/* --- APP TAB SWITCHER --- */
.app-tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.app-tab-nav-inner {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px;
    z-index: 1;
}

.app-tab-btn {
    background: none;
    border: none;
    outline: none;
    color: #cbd5e1;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.app-tab-btn i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.app-tab-btn:hover i {
    transform: scale(1.1);
}

.app-tab-btn:hover {
    color: var(--white);
}

.app-tab-btn.active {
    color: var(--white);
}

.app-tab-pill {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: 0;
    background: var(--accent-orange);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 150, 6, 0.35);
}

.app-tab-content-wrapper {
    position: relative;
    min-height: 520px;
}

.app-tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
    pointer-events: none;
}

.app-tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.app-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.reverse-row {
    flex-direction: row-reverse;
}

.app-row-content {
    flex: 1;
    color: var(--white);
}

.app-row-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.app-row-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-download-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-row-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.device-frame-placeholder {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), inset 0 0 0 2px #333, inset 0 0 0 6px #000;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.device-frame-placeholder.small-frame {
    width: 250px;
    height: 500px;
    border-radius: 35px;
}

/* Modern "Dynamic Island" style notch */
.device-frame-placeholder::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.device-frame-placeholder.small-frame::before {
    width: 70px;
    height: 20px;
    top: 10px;
}

.device-frame-placeholder img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.mockup-image-container img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.placeholder-text {
    font-size: 0.9rem;
    color: var(--medium-gray) !important;
    padding: 20px;
}



.business-cta {
    background-color: var(--white);
    color: var(--primary-blue);
}

.business-cta:hover {
    background-color: var(--accent-orange);
    color: var(--white);
}

/* Contact */
.response-expectation {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

/* Floating Support Button */
.floating-support-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    transition: var(--transition);
}

.floating-support-btn:hover {
    transform: translateY(-5px);
    background-color: #1EBE55;
    color: white;
}

.floating-support-btn i {
    font-size: 1.5rem;
}

/* Footer updates */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li i { margin-right: 10px; color: var(--accent-orange); }
.footer-app-links a { display: block; margin-bottom: 10px; max-width: 140px; }
.footer-app-links img { width: 100%; height: auto; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    padding: 15px 30px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-orange);
    text-decoration: underline;
}

.cookie-actions .btn {
    padding: 8px 20px;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
}

/* Responsive Styles */






@media (max-width: 1200px) {
    .container {
        width: 100%;
        max-width: 90%;
        padding: 0 10px;
    }
}



@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }
}



@media (max-width: 992px) {
    .app-container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {

    #services,
    #why-us,
    #app,
    #testimonials,
    #contact {
        scroll-margin-top: 70px;
    }

    .logo img {
        max-width: 40px;
    }

    .nav-links {
        height: 100vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 25px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .chat-widget {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 110px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-input {
        padding: 10px;
    }

    .contact-info-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .app-content h2 {
    font-size: 2.2rem;
}

    /* WCAG Touch Target Compliance */
    .btn, .app-btn, .business-cta, .get-app-btn {
        min-height: 52px;
        min-width: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Push primary CTAs into lower 60% of viewport on mobile */
    .hero {
        padding-bottom: 20vh;
    }

    /* Stack multi-app layout on mobile */
    .app-row, .reverse-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .app-download-links {
        justify-content: center;
    }

    /* Tab switcher responsive styling */
    .app-tab-navigation {
        margin-bottom: 35px;
        width: 100%;
    }
    
    .app-tab-nav-inner {
        flex-direction: column;
        border-radius: 20px;
        width: 100%;
        gap: 5px;
        background: rgba(255, 255, 255, 0.05);
        padding: 8px;
    }
    
    .app-tab-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 15px;
    }
    
    .app-tab-pill {
        display: none;
    }
    
    .app-tab-btn.active {
        background: var(--accent-orange);
        box-shadow: 0 4px 15px rgba(255, 150, 6, 0.25);
        color: var(--white);
    }
    
    .app-tab-content-wrapper {
        min-height: auto;
    }
}

@media (max-width: 600px) {




    .features-grid {
        grid-template-columns: 1fr, 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }

    .app-btn {
        width: 100%;
        max-width: 300px;
    }


    #home .container.flex {
        flex-direction: column !important;
    }

    /* .hero{
        padding: 0px 0 0px;
  } */

    .hero-content {
        height: auto;
    }

    .container.flex .hero-content {
        width: 100%;
    }

    .container.flex .banner-img {
        width: 100%;
    }

    .services-detailed .container {
        grid-template-columns: 1fr;
    }

    #app{
        text-align: center;
    }

    .app-mockup img {
    max-width: 100%;
}

.services-grid{
        grid-template-columns: 1fr;

}

}

/* --- Scroll Reveal Animations (Apple Style) --- */
.reveal-up {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

.reveal-up.is-visible,
.reveal-scale.is-visible,
.reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- EXPERIENCE STICKY JOURNEY SHOWCASE --- */
.sticky-journey {
    position: relative;
    height: 400vh; /* 4 slides */
    background-color: #070e17;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.journey-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.05);
}

.journey-bg-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.6) 100%);
    z-index: 2;
}

.journey-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.journey-slide {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 650px;
    text-align: left;
}

.journey-slide.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.journey-tag {
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.journey-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.journey-desc {
    font-size: 1.15rem;
    color: #cbd5e0;
    margin-bottom: 35px;
    line-height: 1.7;
}

.journey-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white::before {
    background-color: var(--white);
}

.btn-outline-white:hover {
    color: var(--black);
}

/* Sidebar progress bar */
.journey-progress-bar {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 4;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
}

.progress-step {
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.progress-step:hover {
    color: rgba(255, 255, 255, 0.8);
}

.progress-step.active {
    color: var(--accent-orange);
    transform: translateX(4px);
}

.progress-step .step-num {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.progress-step .step-label {
    font-size: 1rem;
    font-weight: 700;
}

/* Responsive details */
@media (max-width: 992px) {
    .journey-title {
        font-size: 2.3rem;
    }
    .journey-desc {
        font-size: 1.05rem;
    }
    .journey-progress-bar {
        display: none; /* Hide sidebar tracker on smaller screens */
    }
    .journey-content-wrapper {
        justify-content: center;
        padding: 0 20px;
    }
    .journey-slide {
        max-width: 100%;
        text-align: center;
    }
    .journey-actions {
        justify-content: center;
    }
}

/* --- ABOUT US SPLIT LAYOUT --- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-split.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.about-split-img-wrapper {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-split-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-split:hover .about-split-img-wrapper img {
    transform: scale(1.04);
}

.about-split-content {
    display: flex;
    flex-direction: column;
}

.about-split-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.about-split-content p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-split-content ul {
    margin-top: 10px;
}

.about-split-content ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

/* Responsive adjustments for experience and about pages */
@media (max-width: 992px) {
    .experience-tab-content.active {
        grid-template-columns: 1fr;
    }
    .about-split, .about-split.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    .about-split-img-wrapper {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .experience-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: 15px;
        gap: 5px;
    }
    .experience-tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* --- HERO INTERACTIVE GALLERY CARD STACK --- */
.hero-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 48%;
    height: 460px;
    position: relative;
    padding: 20px 0;
}

.hero-gallery-card {
    position: relative;
    width: 170px;
    height: 360px;
    transition: z-index 0.3s step-start;
}

.card-inner {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--primary-blue);
    cursor: pointer;
    
    /* Hardware acceleration & clipping bugfixes */
    isolation: isolate;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0) rotate(0.0001deg);
    transform: translate3d(0, 0, 0) rotate(0.0001deg);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    will-change: transform;
}

/* Float Animations incorporating base offsets */
@keyframes floatLeftCard {
    0%, 100% {
        transform: translateY(-25px) rotate(-4deg);
    }
    50% {
        transform: translateY(-37px) rotate(-3.5deg);
    }
}

@keyframes floatCenterCard {
    0%, 100% {
        transform: translateY(15px) rotate(0deg);
    }
    50% {
        transform: translateY(3px) rotate(0.5deg);
    }
}

@keyframes floatRightCard {
    0%, 100% {
        transform: translateY(-15px) rotate(4deg);
    }
    50% {
        transform: translateY(-27px) rotate(4.5deg);
    }
}

.hero-gallery-card.card-left {
    transform: translateY(-25px) rotate(-4deg);
    animation: floatLeftCard 6s ease-in-out infinite;
}

.hero-gallery-card.card-center {
    transform: translateY(15px);
    z-index: 2;
    animation: floatCenterCard 6s ease-in-out infinite 1.5s;
}

.hero-gallery-card.card-right {
    transform: translateY(-15px) rotate(4deg);
    animation: floatRightCard 6s ease-in-out infinite 3s;
}

.hero-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit; /* Curves the image directly to prevent sharp bleed, inherits from card-inner (responsive) */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Hardware acceleration & clipping bugfixes on child */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* Glassmorphic Badge */
.hero-gallery-card .card-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.hero-gallery-card .card-badge i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

/* Hover States: Parent hovered, animate child (.card-inner) */
.hero-gallery-card:hover {
    z-index: 10;
    animation-play-state: paused;
}

.hero-gallery-card:hover .card-inner {
    -webkit-transform: translate3d(0, -15px, 0) scale(1.06) rotate(0.0001deg) !important;
    transform: translate3d(0, -15px, 0) scale(1.06) rotate(0.0001deg) !important;
    box-shadow: 0 25px 50px rgba(255, 150, 6, 0.25);
    border-color: var(--accent-orange);
}

.hero-gallery-card:hover img {
    -webkit-transform: translate3d(0, 0, 0) scale(1.08);
    transform: translate3d(0, 0, 0) scale(1.08);
}

.hero-gallery-card:hover .card-badge {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(255, 150, 6, 0.4);
}

.hero-gallery-card:hover .card-badge i {
    color: var(--white);
}

/* Responsive details for Hero stack */
@media (max-width: 992px) {
    .hero-gallery {
        width: 100%;
        height: auto;
        min-height: 400px;
        margin-top: 40px;
    }
    .hero-gallery-card {
        width: 140px;
        height: 300px;
    }
    .hero-gallery-card .card-inner {
        border-radius: 18px;
    }
    .hero-gallery-card .card-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        bottom: 15px;
    }
}

@media (max-width: 600px) {
    .hero-gallery {
        gap: 10px;
        min-height: 300px;
    }
    .hero-gallery-card {
        width: 31%;
        height: 220px;
    }
    .hero-gallery-card .card-inner {
        border-radius: 12px;
    }
    
    @keyframes floatLeftCardMobile {
        0%, 100% { transform: translateY(-15px) rotate(-2deg); }
        50% { transform: translateY(-22px) rotate(-1.5deg); }
    }
    @keyframes floatCenterCardMobile {
        0%, 100% { transform: translateY(10px) rotate(0deg); }
        50% { transform: translateY(2px) rotate(0.5deg); }
    }
    @keyframes floatRightCardMobile {
        0%, 100% { transform: translateY(-10px) rotate(2deg); }
        50% { transform: translateY(-17px) rotate(2.5deg); }
    }

    .hero-gallery-card.card-left {
        transform: translateY(-15px) rotate(-2deg);
        animation: floatLeftCardMobile 6s ease-in-out infinite;
    }
    .hero-gallery-card.card-center {
        transform: translateY(10px);
        animation: floatCenterCardMobile 6s ease-in-out infinite 1.5s;
    }
    .hero-gallery-card.card-right {
        transform: translateY(-10px) rotate(2deg);
        animation: floatRightCardMobile 6s ease-in-out infinite 3s;
    }
    
    .hero-gallery-card:hover .card-inner {
        -webkit-transform: translate3d(0, -8px, 0) scale(1.05) rotate(0.0001deg) !important;
        transform: translate3d(0, -8px, 0) scale(1.05) rotate(0.0001deg) !important;
    }
    .hero-gallery-card .card-badge {
        display: none;
    }
}

/* ==========================================================================
   Professional Legal Pages Styles (Privacy Policy & Terms & Conditions)
   ========================================================================== */
.legal-header-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d213d 100%);
    color: var(--white);
    padding: 140px 0 60px;
    position: relative;
    border-bottom: 4px solid var(--accent-orange);
}

.legal-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.legal-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.legal-breadcrumb a {
    color: var(--accent-orange);
    transition: var(--transition);
}

.legal-breadcrumb a:hover {
    text-decoration: underline;
}

.legal-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.legal-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.legal-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.legal-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #E2E8F0;
    backdrop-filter: blur(8px);
    margin-bottom: 25px;
}

.legal-app-badge i {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

/* Quick Nav Switcher Tabs */
.legal-nav-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 6px;
}

.legal-tab-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.legal-tab-btn.active {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 150, 6, 0.3);
}

/* Main Content Layout */
.legal-body-section {
    padding: 60px 0 90px;
    background-color: var(--light-gray);
}

.legal-grid-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Table of Contents */
.legal-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
}

.legal-toc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc-list li {
    margin-bottom: 8px;
}

.legal-toc-list a {
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition);
    line-height: 1.4;
}

.legal-toc-list a:hover {
    background: #F1F5F9;
    color: var(--accent-orange);
    padding-left: 14px;
}

.legal-quick-info {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dashed var(--medium-gray);
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.legal-quick-info i {
    color: var(--accent-orange);
    margin-right: 4px;
}

/* Legal Content Blocks */
.legal-content-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
}

.legal-section {
    margin-bottom: 40px;
    scroll-margin-top: 110px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2 i {
    color: var(--accent-orange);
    font-size: 1.3rem;
}

.legal-section h3 {
    font-size: 1.15rem;
    color: var(--secondary-blue);
    margin: 20px 0 10px;
}

.legal-section p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

.legal-section ul, .legal-section ol {
    margin: 0 0 16px 20px;
}

.legal-section ul li, .legal-section ol li {
    font-size: 0.98rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-section ul li strong, .legal-section ol li strong {
    color: var(--black);
}

/* Alert Callout Boxes */
.legal-callout {
    background-color: #F8FAFC;
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
}

.legal-callout.warning {
    background-color: #FFFBEB;
    border-left-color: var(--accent-orange);
}

.legal-callout.danger {
    background-color: #FEF2F2;
    border-left-color: #E53E3E;
}

.legal-callout.success {
    background-color: #F0FDF4;
    border-left-color: var(--accent-green);
}

.legal-callout-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--black);
}

.legal-callout-header i {
    font-size: 1.2rem;
}

.legal-callout.warning .legal-callout-header i { color: var(--accent-orange); }
.legal-callout.danger .legal-callout-header i { color: #E53E3E; }
.legal-callout.success .legal-callout-header i { color: var(--accent-green); }

.legal-contact-box {
    background: #F1F5F9;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.legal-contact-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.legal-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px !important;
    font-size: 1rem;
}

.legal-contact-list li i {
    width: 24px;
    color: var(--accent-orange);
    font-size: 1.1rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .legal-grid-layout {
        grid-template-columns: 1fr;
    }
    .legal-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    .legal-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .legal-header-hero {
        padding: 120px 0 40px;
    }
    .legal-hero-title {
        font-size: 1.8rem;
    }
    .legal-content-card {
        padding: 24px 18px;
    }
    .legal-nav-tabs {
        width: 100%;
        justify-content: center;
    }
    .legal-tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}


