:root {
    --primary-blue: #003366;
    --primary-light: #004d99;
    --secondary-orange: #FF6600;
    --secondary-light: #FF8533;
    --accent-gold: #FFD700;
    --bg-light: #f4f7f9;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --anim-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="dark"] {
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --text-dark: #f1f5f9;
    --text-muted: #94a3b8;
    --glass-bg: rgba(30, 41, 59, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* Skip to main content (accessibility) */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--secondary-orange);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.375rem;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-orange {
    color: var(--secondary-orange);
}

.text-primary {
    color: var(--primary-blue) !important;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
}

#loader.loaded {
    transform: translateY(-100%);
    opacity: 0;
}

/* Navbar with Glassmorphism */
.main-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-orange) !important;
}

.logout-btn {
    margin-top: 10px;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 120px;
    background: radial-gradient(circle at top right, #004d99, #001f3f);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
}

.btn-orange {
    background: linear-gradient(135deg, var(--secondary-orange), #e65c00);
    border: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

/* Cards & Components */
.custom-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-sm);
}

.custom-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-orange);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--secondary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.custom-card:hover .icon-box {
    background: var(--secondary-orange);
    color: white;
    transform: rotate(10deg);
}

/* stats section */
.stats-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-img {
    animation: float 6s ease-in-out infinite;
}

.glitch-text {
    position: relative;
    display: inline-block;
}

/* Global Transitions */
a,
button {
    transition: all 0.3s ease-in-out;
}

/* Form Styles */
.form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--secondary-orange);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--accent-gold));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Advanced Legal Styles */
.premium-legal-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s var(--anim-timing), box-shadow 0.6s var(--anim-timing);
}

.premium-legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--anim-timing);
}

.stagger-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.privacy-section-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 102, 0, 0.1);
    position: relative;
}

.privacy-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--secondary-orange);
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

[data-bs-theme="dark"] .info-list li {
    background: rgba(255, 255, 255, 0.05);
}

.info-list li:hover {
    background: #fff;
    transform: translateX(10px);
    border-left-color: var(--secondary-orange);
    box-shadow: var(--shadow-sm);
}

[data-bs-theme="dark"] .info-list li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.info-list li .icon {
    margin-right: 1rem;
    color: var(--secondary-orange);
    font-size: 1.2rem;
}

.officer-card {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.officer-card:hover {
    transform: scale(1.02);
    border-color: var(--secondary-orange);
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 51, 102, 0.05);
    border-radius: 50px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    font-weight: 500;
}

.contact-chip:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Legal Pages Styling */
.legal-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.legal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    padding: 100px 0 60px;
    margin-bottom: -50px;
    position: relative;
    z-index: 0;
}

.legal-content h3 {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.legal-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--secondary-orange);
    border-radius: 2px;
}

.legal-content h5 {
    color: var(--primary-blue);
    border-left: 4px solid var(--secondary-orange);
    padding-left: 15px;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    transition: all 0.3s ease;
}

.legal-content h5:hover {
    padding-left: 25px;
    color: var(--secondary-orange);
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
}

.legal-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.legal-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-size: 0.9rem;
    top: 5px;
    background: rgba(255, 102, 0, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.legal-content ul li:hover {
    transform: translateX(10px);
    color: var(--text-dark);
}

.legal-content h6 {
    color: var(--primary-light);
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.refund-step {
    text-align: center;
    padding: 2.5rem;
    border-radius: 24px;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.refund-step:hover {
    background: var(--bg-white);
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-orange);
}

.refund-step .step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-orange), #ff8c00);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    transition: transform 0.5s ease;
}

.refund-step:hover .step-icon {
    transform: rotateY(360deg);
}

[data-bs-theme="dark"] .legal-content h3,
[data-bs-theme="dark"] .legal-content h5 {
    color: var(--text-dark);
}

[data-aos="fade-up"] {
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}

/* ===== Journey Section ===== */
.ls-wide {
    letter-spacing: 0.15em;
}

.journey-accent-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--secondary-light));
    border-radius: 3px;
}

.journey-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-sm);
}

.journey-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--secondary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-orange);
}

.journey-stat-card:hover::before {
    opacity: 1;
}

.journey-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--secondary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    transition: 0.4s ease;
}

.journey-stat-card:hover .journey-stat-icon {
    background: var(--secondary-orange);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

/* Journey Image */
.journey-image-wrapper {
    padding: 20px;
}

.journey-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 55%;
    background-image: radial-gradient(var(--secondary-orange) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 20px;
    opacity: 0.2;
    z-index: 0;
}

.journey-main-image {
    position: relative;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.journey-image-wrapper:hover .journey-main-image {
    transform: scale(1.02);
}

.journey-hq-badge {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    align-items: center;
    gap: 14px;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.journey-hq-badge:hover {
    transform: translateY(-5px);
}

.journey-hq-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--secondary-orange), #e65c00);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.journey-experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    color: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    text-align: center;
    line-height: 1;
    transition: transform 0.3s ease;
}

.journey-experience-badge:hover {
    transform: translateY(-5px) scale(1.05);
}

.journey-experience-badge span {
    font-size: 2.2rem;
}

.journey-experience-badge small {
    font-size: 0.85rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 991.98px) {
    .journey-main-image {
        height: 320px;
    }

    .journey-image-wrapper {
        padding: 10px;
    }
}

@media (max-width: 575.98px) {
    .journey-main-image {
        height: 250px;
        border-radius: 18px;
    }
}

/* ===== About Hero Section ===== */
.about-hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #001233 0%, #003366 40%, #004d99 70%, #0066cc 100%);
    color: white;
    min-height: 480px;
}

/* Animated background shapes */
.about-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: aboutShapeFloat 15s ease-in-out infinite;
}

.about-hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-orange);
    top: -100px;
    right: -80px;
    animation-delay: 0s;
}

.about-hero-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-gold);
    bottom: -50px;
    left: -60px;
    animation-delay: -5s;
}

.about-hero-shape-3 {
    width: 180px;
    height: 180px;
    background: #fff;
    top: 40%;
    left: 35%;
    animation-delay: -10s;
}

@keyframes aboutShapeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-15px, 15px) rotate(-3deg);
    }

    75% {
        transform: translate(10px, 20px) rotate(2deg);
    }
}

/* Floating particles */
.about-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.about-hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: aboutParticleRise 8s linear infinite;
}

.about-hero-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    width: 3px;
    height: 3px;
}

.about-hero-particles span:nth-child(2) {
    left: 25%;
    animation-delay: -2s;
    width: 5px;
    height: 5px;
}

.about-hero-particles span:nth-child(3) {
    left: 45%;
    animation-delay: -4s;
}

.about-hero-particles span:nth-child(4) {
    left: 60%;
    animation-delay: -1s;
    width: 6px;
    height: 6px;
}

.about-hero-particles span:nth-child(5) {
    left: 78%;
    animation-delay: -3s;
    width: 3px;
    height: 3px;
}

.about-hero-particles span:nth-child(6) {
    left: 90%;
    animation-delay: -5s;
}

@keyframes aboutParticleRise {
    0% {
        bottom: -10px;
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        bottom: 110%;
        opacity: 0;
    }
}

/* Hero title */
.about-hero-title {
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-hero-highlight {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-desc {
    opacity: 0.85;
    max-width: 540px;
    line-height: 1.7;
}

/* Breadcrumb */
.about-breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.about-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.about-breadcrumb .breadcrumb-item a:hover {
    color: var(--secondary-orange);
}

.about-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.about-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Outline button */
.about-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.about-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Truck icon with rings */
.about-hero-icon-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: aboutRingSpin 20s linear infinite;
}

.about-hero-icon-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--secondary-orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--secondary-orange);
}

.about-hero-icon-ring-2 {
    inset: 20px;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 15s;
}

.about-hero-icon-ring-2::before {
    background: var(--accent-gold);
    box-shadow: 0 0 12px var(--accent-gold);
}

@keyframes aboutRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-hero-truck-icon {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 15px rgba(255, 102, 0, 0.3));
    animation: aboutTruckBounce 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes aboutTruckBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Wave divider */
.about-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.about-hero-wave svg {
    width: 100%;
    height: 60px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-hero-section {
        padding: 120px 0 80px;
        min-height: auto;
        text-align: center;
    }

    .about-hero-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-breadcrumb {
        justify-content: center;
    }

    .d-flex.gap-3 {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .about-hero-section {
        padding: 110px 0 70px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-shape-1 {
        width: 200px;
        height: 200px;
    }

    .about-hero-shape-2 {
        width: 120px;
        height: 120px;
    }
}

/* ===== Index Hero Section ===== */
.index-hero-section {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #001233 0%, #003366 40%, #004d99 70%, #0066cc 100%);
    color: white;
    min-height: 600px;
}

.index-hero-title {
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.index-hero-badge {
    background: linear-gradient(135deg, var(--secondary-orange), #e65c00);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    border: none;
}

.index-hero-stats {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 24px;
    display: inline-flex !important;
}

/* Hero image */
.index-hero-image-wrapper {
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(0, 77, 153, 0.3));
    border-radius: 28px;
    position: relative;
}

.index-hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: indexGlowPulse 4s ease-in-out infinite;
}

@keyframes indexGlowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.index-hero-image {
    border-radius: 22px;
    width: 100%;
    height: 420px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.index-hero-image-wrapper:hover .index-hero-image {
    transform: scale(1.02);
}

/* Floating badge */
.index-hero-float-badge {
    position: absolute;
    bottom: -10px;
    left: -15px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 14px 20px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.index-hero-float-badge:hover {
    transform: translateY(-5px);
}

.index-hero-float-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--secondary-orange), #e65c00);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Index hero responsive */
@media (max-width: 991.98px) {
    .index-hero-section {
        padding: 120px 0 80px;
        min-height: auto;
        text-align: center;
    }

    .index-hero-image {
        height: 320px;
    }

    .index-hero-stats {
        justify-content: center;
    }

    .index-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .index-hero-section {
        padding: 110px 0 70px;
    }

    .index-hero-title {
        font-size: 2rem;
    }

    .index-hero-image {
        height: 250px;
        border-radius: 18px;
    }

    .index-hero-image-wrapper {
        border-radius: 22px;
    }
}

/* ===== How It Works ===== */
.how-step-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-sm);
}

.how-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 102, 0, 0.3);
}

.how-step-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 102, 0, 0.12);
    line-height: 1;
}

/* ===== Fleet Gallery ===== */
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.95), transparent);
    color: #fff;
    transition: opacity 0.3s ease;
}

.gallery-label {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

@media (max-width: 767.98px) {
    .gallery-img {
        height: 220px;
    }
}

/* ===== Areas We Serve ===== */
.areas-list {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.areas-list:hover {
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: var(--shadow-md);
}

.areas-list li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.areas-list li:last-child {
    border-bottom: none;
}

[data-bs-theme="dark"] .areas-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* ===== FAQ Accordion ===== */
.accordion-faq .accordion-button {
    background: var(--bg-white);
    color: var(--text-dark);
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    border-radius: 12px !important;
    box-shadow: none;
}

.accordion-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08), rgba(255, 102, 0, 0.04));
    color: var(--primary-blue);
}

.accordion-faq .accordion-button::after {
    filter: none;
}

.accordion-faq .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
    border-color: transparent;
}

.accordion-faq .accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    background: var(--bg-white);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    color: #fff;
}

/* ===== Need Help Sticky Pill ===== */
.need-help-pill {
    position: fixed;
    bottom: 90px;
    left: 24px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.need-help-pill.visible {
    opacity: 1;
    visibility: visible;
}

.need-help-pill a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.need-help-pill a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

@media (max-width: 575.98px) {
    .need-help-pill {
        left: 12px;
        bottom: 85px;
    }

    .need-help-pill a {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Floating contact (WhatsApp + Call) - ensure below back-to-top */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.floating-contact .whatsapp-btn,
.floating-contact .call-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating-contact .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-contact .call-btn {
    background: var(--primary-blue);
}

.floating-contact .whatsapp-btn:hover,
.floating-contact .call-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

/* Back-to-top sits above floating contact on larger screens */
@media (min-width: 576px) {
    .back-to-top {
        bottom: 100px;
    }

    .floating-contact {
        bottom: 24px;
    }
}

/* ===== Shatter Animation Effect ===== */
.gallery-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.gallery-card.zooming {
    transform: scale(1.1);
    z-index: 1000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.gallery-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.shatter-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.shatter-piece {
    position: absolute;
    background-size: var(--bg-size-w) var(--bg-size-h);
    background-repeat: no-repeat;
    transition: transform 1s cubic-bezier(0.1, 0.8, 0.1, 1), opacity 1s ease;
    will-change: transform, opacity;
}

@keyframes fly-away {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--tr)) scale(0);
        opacity: 0;
    }
}

.shatter-piece.animate {
    animation: fly-away 1s forwards cubic-bezier(0.1, 0.8, 0.1, 1);
}

.accordion-faq .accordion-button {
    background: var(--bg-white);
    color: var(--text-dark);
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    border-radius: 12px !important;
    box-shadow: none;
}

.accordion-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08), rgba(255, 102, 0, 0.04));
    color: var(--primary-blue);
}

.accordion-faq .accordion-button::after {
    filter: none;
}

.accordion-faq .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
    border-color: transparent;
}

.accordion-faq .accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    background: var(--bg-white);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    color: #fff;
}

/* ===== Need Help Sticky Pill ===== */
.need-help-pill {
    position: fixed;
    bottom: 90px;
    left: 24px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.need-help-pill.visible {
    opacity: 1;
    visibility: visible;
}

.need-help-pill a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.need-help-pill a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

@media (max-width: 575.98px) {
    .need-help-pill {
        left: 12px;
        bottom: 85px;
    }

    .need-help-pill a {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Floating contact (WhatsApp + Call) - ensure below back-to-top */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.floating-contact .whatsapp-btn,
.floating-contact .call-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating-contact .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-contact .call-btn {
    background: var(--primary-blue);
}

.floating-contact .whatsapp-btn:hover,
.floating-contact .call-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

/* Back-to-top sits above floating contact on larger screens */
@media (min-width: 576px) {
    .back-to-top {
        bottom: 100px;
    }

    .floating-contact {
        bottom: 24px;
    }
}

/* Collision Animation Styles */
.collision-wrapper {
    background: radial-gradient(circle at center, #f8f9fa 0%, #e9ecef 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.collision-img {
    transition: all 0.1s ease-out;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
}

.collision-img.collided {
    display: none;
}

.fragment {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary-orange);
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.fragment.shattered {
    animation: fragment-explode 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fragment-explode {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--tr)) scale(0);
        opacity: 0;
    }
}

.welcome-message {
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(-50%, -50%) scale(0.5);
}

.welcome-message.show {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1);
}

.welcome-message h1 {
    text-shadow: 0 10px 30px rgba(0, 51, 102, 0.2);
    letter-spacing: -2px;
}

@keyframes left-slide-in {
    0% {
        left: -400px;
    }

    100% {
        left: 50%;
        transform: translate(-100%, -50%);
    }
}

@keyframes right-slide-in {
    0% {
        right: -400px;
    }

    100% {
        right: 50%;
        transform: translate(100%, -50%);
    }
}

.animate-collision-left {
    animation: left-slide-in 4s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

.animate-collision-right {
    animation: right-slide-in 4s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}