/* ============================================
   PROFESSIONAL TROFICE ENHANCEMENTS
   Brand Colors Only: #FFA41C & #1B1B27
   ============================================ */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Spacing Fix - Prevents Overlapping */
section {
    position: relative;
    z-index: 1;
    clear: both;
}

/* Moving Bus Background Animation */
@keyframes moveBus {
    0% {
        transform: translateX(-100%) translateY(0) scale(0.8);
        opacity: 0.2;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: translateX(100vw) translateY(-20px) scale(0.8);
        opacity: 0.2;
    }
}

.floating-buses {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-bus {
    position: absolute;
    width: 80px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60"><rect x="10" y="15" width="80" height="35" rx="5" fill="%23FFA41C" opacity="0.3"/><rect x="15" y="20" width="15" height="15" rx="2" fill="%23fff" opacity="0.5"/><rect x="35" y="20" width="15" height="15" rx="2" fill="%23fff" opacity="0.5"/><rect x="55" y="20" width="15" height="15" rx="2" fill="%23fff" opacity="0.5"/><rect x="75" y="20" width="10" height="15" rx="2" fill="%23fff" opacity="0.5"/><circle cx="25" cy="52" r="5" fill="%231B1B27" opacity="0.4"/><circle cx="75" cy="52" r="5" fill="%231B1B27" opacity="0.4"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: moveBus linear infinite;
}

.floating-bus:nth-child(1) {
    top: 15%;
    animation-duration: 35s;
    animation-delay: 0s;
}

.floating-bus:nth-child(2) {
    top: 45%;
    animation-duration: 45s;
    animation-delay: 10s;
}

.floating-bus:nth-child(3) {
    top: 75%;
    animation-duration: 40s;
    animation-delay: 20s;
}

/* Scroll-based Fade In Animation */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect for Sections */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Professional Card Hover Effects - Brand Colors Only */
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 164, 28, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 164, 28, 0.05)
}

/* Gradient Text - Brand Colors */
.gradient-text {
    background: linear-gradient(135deg, #FFA41C 0%, #1B1B27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation for Icons - Brand Colors */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 164, 28, 0.5);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 164, 28, 0);
    }
}

.pulse-icon {
    animation: pulse-glow 2s infinite;
    border-radius: 50%;
}

/* Number Counter Animation */
.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #FFA41C;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-element {
    animation: float 3s ease-in-out infinite;
}

/* Stagger Animation for Lists */
.stagger-item {
    opacity: 0;
    transform: translateX(-30px);
}

/* Modern Button Styles - Brand Colors */
.btn-modern {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

/* Card Flip Effect */
.flip-card {
    perspective: 1000px;
    height: 350px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #FFA41C 0%, #1B1B27 100%);
    color: #fff;
}

/* Progress Bar Animation - Brand Color */
@keyframes progressBar {
    from {
        width: 0;
    }
}

.progress-bar-animated {
    height: 6px;
    background: #FFA41C;
    border-radius: 10px;
    animation: progressBar 2s ease-out forwards;
}

/* Comparison Table Styles - Brand Colors */
.comparison-table {
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.comparison-table th {
    background: #FFA41C;
    color: #fff;
    font-weight: 700;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.comparison-table tr:hover td {
    background: rgba(255, 164, 28, 0.05);
}

.check-icon {
    color: #4CAF50;
    font-size: 24px;
}

.cross-icon {
    color: #f44336;
    font-size: 24px;
}

/* Icon Backgrounds - Brand Colors Only */
.icon-bg-orange {
    background: #FFA41C;
}

.icon-bg-dark {
    background: #1B1B27;
}

.icon-bg-light-orange {
    background: rgba(255, 164, 28, 0.1);
}

.icon-bg-light-dark {
    background: rgba(27, 27, 39, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-bus {
        width: 60px;
        height: 38px;
    }

    .stat-number {
        font-size: 36px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .flip-card {
        height: 300px;
    }
}

/* Fleet Showcase Styles */
.fleet-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 164, 28, 0.2);
}

.fleet-card:hover img {
    transform: scale(1.05);
}

/* Responsive Fleet Images */
@media (max-width: 768px) {
    .fleet-card {
        margin-bottom: 30px;
    }
}



/* Pulse Ring Animation */
@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Dashed Road Marching Animation */
@keyframes dash-march {
    to {
        stroke-dashoffset: -32;
    }
}

#road-path {
    animation: dash-march 2s linear infinite;
}

/* Responsive Bus Size */
@media (max-width: 768px) {
    #animated-bus {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 425px) {
    #animated-bus {
        width: 40px;
        height: 40px;
    }
}


/* Explore Card Enhanced Styles */
.explore-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-card:hover .explore-icon-container {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 164, 28, 0.2);
    border-color: rgba(255, 164, 28, 0.5);
}

.explore-card:active .explore-icon-container {
    transform: translateY(-4px) scale(0.98);
}

.explore-card:hover p {
    color: #FFA41C !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .explore-icon-container {
        padding: 15px !important;
    }

    .explore-icon-container svg {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 425px) {
    .explore-icon-container {
        padding: 12px !important;
    }

    .explore-icon-container svg {
        width: 36px !important;
        height: 36px !important;
    }
}


/* NFC Card Animation */
@keyframes card-slide-tap {
    0% {
        left: 50px;
        transform: translateY(-50%) rotate(0deg);
    }

    20% {
        left: 50px;
    }

    40% {
        left: 220px;
        transform: translateY(-50%) rotate(-5deg);
    }

    50% {
        left: 240px;
        transform: translateY(-50%) rotate(-3deg);
    }

    70% {
        left: 240px;
    }

    85% {
        left: 220px;
        transform: translateY(-50%) rotate(-5deg);
    }

    100% {
        left: 50px;
        transform: translateY(-50%) rotate(0deg);
    }
}

/* Responsive - BIGGER Validator */
@media (max-width: 768px) {
    #nfc-animation-container {
        height: 450px !important;
        padding: 30px !important;
    }

    .validator-device>div {
        width: 150px !important;
        height: 230px !important;
    }

    .trofice-card-animated {
        width: 190px !important;
        height: 120px !important;
    }

    @keyframes card-slide-tap {
        0% {
            left: 30px;
        }

        40%,
        50%,
        70% {
            left: 170px;
        }

        100% {
            left: 30px;
        }
    }
}

@media (max-width: 425px) {
    #nfc-animation-container {
        height: 400px !important;
    }

    .validator-device>div {
        width: 120px !important;
        height: 190px !important;
    }

    .trofice-card-animated {
        width: 170px !important;
        height: 110px !important;
    }
}


.trofice-card-animated {
    animation: card-slide-tap 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

/* Card Shimmer Effect */
@keyframes card-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

/* NFC Wave Animation */
@keyframes nfc-wave-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.nfc-waves {
    animation: nfc-waves-show 8s infinite;
}

@keyframes nfc-waves-show {

    0%,
    35% {
        opacity: 0;
    }

    40%,
    65% {
        opacity: 1;
    }

    70%,
    100% {
        opacity: 0;
    }
}

.nfc-wave {
    animation: nfc-wave-pulse 1.5s ease-out infinite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Validator LED Animation */
.validator-led {
    animation: led-pulse 8s infinite;
}

@keyframes led-pulse {

    0%,
    35% {
        background: rgba(255, 164, 28, 0.3);
        box-shadow: none;
    }

    40%,
    65% {
        background: #4CAF50;
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
    }

    70%,
    100% {
        background: rgba(255, 164, 28, 0.3);
        box-shadow: none;
    }
}

/* Screen Icon Animation */
.screen-icon-waiting {
    animation: icon-waiting 8s infinite;
}

@keyframes icon-waiting {

    0%,
    35% {
        opacity: 1;
    }

    40%,
    65% {
        opacity: 0;
    }

    70%,
    100% {
        opacity: 1;
    }
}

/* Success Screen Animation */
.screen-content-success {
    animation: success-show 8s infinite;
}

@keyframes success-show {

    0%,
    35% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    40% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

    45%,
    60% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    65%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Success Flash */
.success-flash {
    animation: flash-success 8s infinite;
}

@keyframes flash-success {

    0%,
    35% {
        opacity: 0;
    }

    40% {
        opacity: 0.3;
    }

    42%,
    65% {
        opacity: 0;
    }

    66%,
    100% {
        opacity: 0;
    }
}

/* Instruction Text Animation */
.instruction-text {
    animation: instruction-fade 8s infinite;
}

@keyframes instruction-fade {

    0%,
    35% {
        opacity: 1;
    }

    40%,
    65% {
        opacity: 0;
    }

    70%,
    100% {
        opacity: 1;
    }
}

/* Success Text Animation */
.success-text {
    animation: success-text-show 8s infinite;
}

@keyframes success-text-show {

    0%,
    35% {
        opacity: 0;
        transform: translateY(10px);
    }

    40% {
        opacity: 1;
        transform: translateY(0);
    }

    65% {
        opacity: 1;
        transform: translateY(0);
    }

    70%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #nfc-animation-container {
        height: 400px !important;
        padding: 30px !important;
    }

    .validator-device>div {
        width: 100px !important;
        height: 150px !important;
    }

    .trofice-card-animated {
        width: 170px !important;
        height: 110px !important;
    }

    @keyframes card-slide-tap {
        0% {
            left: 30px;
        }

        40%,
        50%,
        70% {
            left: 140px;
        }

        100% {
            left: 30px;
        }
    }
}

@media (max-width: 425px) {
    #nfc-animation-container {
        height: 350px !important;
        padding: 20px !important;
    }

    .validator-device>div {
        width: 80px !important;
        height: 130px !important;
    }

    .trofice-card-animated {
        width: 150px !important;
        height: 100px !important;
    }
}

/* ============================================
   PARCEL TRACKING TIMELINE ANIMATION
   ============================================ */

/* Timeline Progress Line Animation */
.timeline-progress-line {
    animation: timeline-progress 12s ease-in-out infinite;
}

@keyframes timeline-progress {
    0% {
        x2: 40;
    }
    20% {
        x2: 120;
    }
    25% {
        x2: 120;
    }
    45% {
        x2: 200;
    }
    50% {
        x2: 200;
    }
    70% {
        x2: 280;
    }
    75% {
        x2: 280;
    }
    95% {
        x2: 360;
    }
    100% {
        x2: 360;
    }
}

/* Stage 1 Animation - Picked Up */
.timeline-stage-1 .stage-icon {
    animation: stage-1-activate 12s ease-in-out infinite;
}

.timeline-stage-1 .stage-label,
.timeline-stage-1 .stage-time {
    animation: stage-1-text 12s ease-in-out infinite;
}

@keyframes stage-1-activate {
    0%, 5% {
        background: #4CAF50;
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
    }
    10% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
    15%, 100% {
        background: #4CAF50;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
}

@keyframes stage-1-text {
    0%, 100% {
        color: #4CAF50;
    }
}

.timeline-stage-1 .stage-icon svg {
    animation: stage-1-icon 12s ease-in-out infinite;
}

@keyframes stage-1-icon {
    0%, 100% {
        color: #fff;
    }
}

.timeline-stage-1 .stage-time {
    animation: stage-1-time 12s ease-in-out infinite;
}

@keyframes stage-1-time {
    0%, 100% {
        opacity: 1;
    }
}

/* Stage 2 Animation - In Transit */
.timeline-stage-2 .stage-icon {
    animation: stage-2-activate 12s ease-in-out infinite;
}

.timeline-stage-2 .stage-label {
    animation: stage-2-label 12s ease-in-out infinite;
}

.timeline-stage-2 .stage-time {
    animation: stage-2-time 12s ease-in-out infinite;
}

@keyframes stage-2-activate {
    0%, 20% {
        background: #e0e0e0;
    }
    25% {
        background: #FFA41C;
        box-shadow: 0 0 0 0 rgba(255, 164, 28, 0.5);
    }
    30% {
        box-shadow: 0 0 0 15px rgba(255, 164, 28, 0);
    }
    35%, 45% {
        background: #FFA41C;
        box-shadow: 0 0 0 0 rgba(255, 164, 28, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 164, 28, 0);
        background: #FFA41C;
    }
    55%, 70% {
        background: #4CAF50;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
    100% {
        background: #4CAF50;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
}

@keyframes stage-2-label {
    0%, 20% {
        color: #999;
    }
    25%, 70% {
        color: #FFA41C;
    }
    75%, 100% {
        color: #4CAF50;
    }
}

@keyframes stage-2-time {
    0%, 20% {
        opacity: 0;
    }
    25%, 100% {
        opacity: 1;
    }
}

.timeline-stage-2 .stage-icon svg {
    animation: stage-2-icon 12s ease-in-out infinite;
}

@keyframes stage-2-icon {
    0%, 20% {
        color: #999;
    }
    25%, 100% {
        color: #fff;
    }
}

/* Stage 3 Animation - Out for Delivery */
.timeline-stage-3 .stage-icon {
    animation: stage-3-activate 12s ease-in-out infinite;
}

.timeline-stage-3 .stage-label {
    animation: stage-3-label 12s ease-in-out infinite;
}

.timeline-stage-3 .stage-time {
    animation: stage-3-time 12s ease-in-out infinite;
}

@keyframes stage-3-activate {
    0%, 45% {
        background: #e0e0e0;
    }
    50% {
        background: #FFA41C;
        box-shadow: 0 0 0 0 rgba(255, 164, 28, 0.5);
    }
    55% {
        box-shadow: 0 0 0 15px rgba(255, 164, 28, 0);
    }
    60%, 70% {
        background: #FFA41C;
        box-shadow: 0 0 0 0 rgba(255, 164, 28, 0.5);
    }
    75% {
        box-shadow: 0 0 0 15px rgba(255, 164, 28, 0);
        background: #FFA41C;
    }
    80%, 95% {
        background: #4CAF50;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
    100% {
        background: #4CAF50;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
}

@keyframes stage-3-label {
    0%, 45% {
        color: #999;
    }
    50%, 75% {
        color: #FFA41C;
    }
    80%, 100% {
        color: #4CAF50;
    }
}

@keyframes stage-3-time {
    0%, 45% {
        opacity: 0;
    }
    50%, 100% {
        opacity: 1;
    }
}

.timeline-stage-3 .stage-icon svg {
    animation: stage-3-icon 12s ease-in-out infinite;
}

@keyframes stage-3-icon {
    0%, 45% {
        color: #999;
    }
    50%, 100% {
        color: #fff;
    }
}

/* Stage 4 Animation - Delivered */
.timeline-stage-4 .stage-icon {
    animation: stage-4-activate 12s ease-in-out infinite;
}

.timeline-stage-4 .stage-label {
    animation: stage-4-label 12s ease-in-out infinite;
}

.timeline-stage-4 .stage-time {
    animation: stage-4-time 12s ease-in-out infinite;
}

@keyframes stage-4-activate {
    0%, 70% {
        background: #e0e0e0;
    }
    75% {
        background: #FFA41C;
        box-shadow: 0 0 0 0 rgba(255, 164, 28, 0.5);
    }
    80% {
        box-shadow: 0 0 0 15px rgba(255, 164, 28, 0);
    }
    85%, 95% {
        background: #FFA41C;
        box-shadow: 0 0 0 0 rgba(255, 164, 28, 0.5);
    }
    100% {
        background: #4CAF50;
        box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
    }
}

@keyframes stage-4-label {
    0%, 70% {
        color: #999;
    }
    75%, 95% {
        color: #FFA41C;
    }
    100% {
        color: #4CAF50;
    }
}

@keyframes stage-4-time {
    0%, 70% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.timeline-stage-4 .stage-icon svg {
    animation: stage-4-icon 12s ease-in-out infinite;
}

@keyframes stage-4-icon {
    0%, 70% {
        color: #999;
    }
    75%, 100% {
        color: #fff;
    }
}

/* Status Badge Animation */
.parcel-status-badge {
    animation: status-badge-change 12s ease-in-out infinite;
}

@keyframes status-badge-change {
    0%, 20% {
        background: rgba(76, 175, 80, 0.1);
    }
    25%, 45% {
        background: rgba(255, 164, 28, 0.1);
    }
    50%, 70% {
        background: rgba(255, 164, 28, 0.1);
    }
    75%, 95% {
        background: rgba(255, 164, 28, 0.1);
    }
    100% {
        background: rgba(76, 175, 80, 0.1);
    }
}

.parcel-status-text {
    animation: status-text-change 12s ease-in-out infinite;
}

@keyframes status-text-change {
    0%, 20% {
        color: #4CAF50;
    }
    21% {
        color: transparent;
    }
    22%, 45% {
        color: #FFA41C;
    }
    46% {
        color: transparent;
    }
    47%, 70% {
        color: #FFA41C;
    }
    71% {
        color: transparent;
    }
    72%, 95% {
        color: #FFA41C;
    }
    96% {
        color: transparent;
    }
    97%, 100% {
        color: #4CAF50;
    }
}

/* Update status text content */
@keyframes status-content-change {
    0%, 20% {
        content: "Picked Up";
    }
    25%, 45% {
        content: "In Transit";
    }
    50%, 70% {
        content: "Out for Delivery";
    }
    75%, 100% {
        content: "Delivered";
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-stage .stage-icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline-stage .stage-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-stage .stage-label {
        font-size: 10px;
    }
    
    .timeline-stage .stage-time {
        font-size: 8px;
    }
}

@media (max-width: 425px) {
    .timeline-stage .stage-icon {
        width: 35px;
        height: 35px;
    }
    
    .timeline-stage .stage-label {
        font-size: 9px;
    }
}

/* ============================================
   MODERN BOXES STYLING
   ============================================ */

.modern-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.modern-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 164, 28, 0.05), transparent);
    transition: left 0.6s ease;
}

.modern-box:hover::before {
    left: 100%;
}

.modern-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 164, 28, 0.15);
    border-color: rgba(255, 164, 28, 0.3);
}

.modern-box-icon-wrap {
    margin-bottom: 25px;
}

.modern-box-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.modern-box:hover .modern-box-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .modern-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .modern-box {
        padding: 35px 25px;
    }
    
    .modern-box-icon {
        width: 80px;
        height: 80px;
    }
    
    .modern-box h4 {
        font-size: 20px !important;
    }
    
    .modern-box p {
        font-size: 15px !important;
    }
}

@media (max-width: 425px) {
    .modern-box {
        padding: 30px 20px;
    }
    
    .modern-box-icon {
        width: 70px;
        height: 70px;
    }
    
    .modern-box-icon svg {
        width: 40px !important;
        height: 40px !important;
    }
}

/* ============================================
   DOWNLOAD APP SECTION - ENHANCED
   ============================================ */

.download-buttons-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.download-btn-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
}

.download-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.download-btn-modern:hover::before {
    left: 100%;
}

.download-btn-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(255, 164, 28, 0.3);
}

.download-btn-modern .btn-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.download-btn-modern .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-btn-modern .btn-label {
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-btn-modern .btn-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.download-btn-modern.web-app {
    background: linear-gradient(135deg, #FFA41C 0%, #FF8C00 100%);
    border-color: transparent;
}

.download-btn-modern.web-app:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #e67e00 100%);
    box-shadow: 0 10px 30px rgba(255, 164, 28, 0.5);
}

/* Phone Showcase Container */
.phone-showcase-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    padding: 40px 20px;
}

.floating-feature-card {
    animation: float-gentle 3s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .phone-showcase-container {
        max-width: 380px;
    }
    
    .floating-feature-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .download-buttons-modern {
        flex-direction: column;
    }
    
    .download-btn-modern {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .phone-showcase-container {
        margin-top: 50px;
        padding: 20px 0;
    }
}

@media (max-width: 425px) {
    .download-btn-modern {
        padding: 15px 20px;
    }
    
    .download-btn-modern .btn-icon {
        font-size: 32px;
    }
    
    .download-btn-modern .btn-title {
        font-size: 16px;
    }
}

/* ============================================
   COMPARISON SECTION - ENHANCED
   ============================================ */

.comparison-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.comparison-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 164, 28, 0.05), transparent);
    transition: left 0.6s ease;
}

.comparison-feature-card:hover::before {
    left: 100%;
}

.comparison-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 164, 28, 0.15);
    border-color: rgba(255, 164, 28, 0.3);
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(255, 164, 28, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.comparison-feature-card:hover .feature-icon-container {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 164, 28, 0.2);
}

.comparison-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option-trofice,
.option-traditional {
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: left;
}

.option-trofice {
    background: rgba(255, 164, 28, 0.05);
    border: 2px solid rgba(255, 164, 28, 0.2);
}

.option-traditional {
    background: rgba(244, 67, 54, 0.05);
    border: 2px solid rgba(244, 67, 54, 0.2);
}

.option-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trofice-badge {
    background: #FFA41C;
    color: #fff;
}

.traditional-badge {
    background: #f44336;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .comparison-feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .comparison-feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-container svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 425px) {
    .comparison-feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .option-trofice,
    .option-traditional {
        padding: 15px;
    }
}

/* ============================================
   ENHANCED FLEET SHOWCASE
   ============================================ */

.fleet-card-enhanced {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.fleet-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 164, 28, 0.2);
    border-color: rgba(255, 164, 28, 0.3);
}

.vehicle-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 25px;
    background: rgba(255, 164, 28, 0.05);
}

.vehicle-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
}

.fleet-card-enhanced:hover .vehicle-img {
    transform: scale(1.05);
}

.vehicle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 164, 28, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.fleet-card-enhanced:hover .vehicle-glow {
    opacity: 1;
}

.vehicle-info {
    padding: 10px 0;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.spec-item svg {
    flex-shrink: 0;
}

.fleet-feature-box {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.fleet-feature-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 164, 28, 0.1);
    border-color: rgba(255, 164, 28, 0.3);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 164, 28, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.fleet-feature-box:hover .feature-icon-circle {
    background: rgba(255, 164, 28, 0.25);
    transform: scale(1.1) rotate(10deg);
}

/* Responsive */
@media (max-width: 768px) {
    .fleet-card-enhanced {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .vehicle-specs {
        gap: 10px;
    }
    
    .spec-item {
        font-size: 13px;
    }
    
    .fleet-feature-box {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon-circle {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 425px) {
    .vehicle-info h4 {
        font-size: 20px !important;
    }
    
    .vehicle-info p {
        font-size: 14px !important;
    }
}


/* ============================================
   VEHICLE BACKGROUND LAYERS
   ============================================ */

/* Download App Section Vehicle Background */
.vehicle-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.vehicle-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(27, 27, 39, 0.95) 0%, 
        rgba(37, 37, 51, 0.92) 50%,
        rgba(27, 27, 39, 0.95) 100%
    );
    z-index: 2;
}

.vehicle-bg-img {
    position: absolute;
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.08;
    filter: grayscale(30%);
    z-index: 1;
}

.vehicle-bg-left {
    left: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    animation: vehicle-float-left 20s ease-in-out infinite;
}

.vehicle-bg-right {
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(5deg) scaleX(-1);
    animation: vehicle-float-right 25s ease-in-out infinite;
}

@keyframes vehicle-float-left {
    0%, 100% {
        transform: translateY(-50%) rotate(-5deg) translateX(0);
    }
    50% {
        transform: translateY(-50%) rotate(-5deg) translateX(-20px);
    }
}

@keyframes vehicle-float-right {
    0%, 100% {
        transform: translateY(-50%) rotate(5deg) scaleX(-1) translateX(0);
    }
    50% {
        transform: translateY(-50%) rotate(5deg) scaleX(-1) translateX(-20px);
    }
}

/* Hero Section Vehicle Accent */
.hero-vehicle-accent {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 600px;
    height: 400px;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
    animation: hero-vehicle-glow 8s ease-in-out infinite;
}

.hero-vehicle-accent img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(40%) brightness(1.2);
}

@keyframes hero-vehicle-glow {
    0%, 100% {
        opacity: 0.06;
        transform: rotate(-15deg) scale(1);
    }
    50% {
        opacity: 0.10;
        transform: rotate(-15deg) scale(1.05);
    }
}

/* Comparison Section Vehicle Watermark */
.comparison-vehicle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 60%;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.comparison-vehicle-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(60%);
    animation: comparison-vehicle-pulse 15s ease-in-out infinite;
}

@keyframes comparison-vehicle-pulse {
    0%, 100% {
        opacity: 0.03;
        transform: scale(1);
    }
    50% {
        opacity: 0.05;
        transform: scale(1.02);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .vehicle-bg-img {
        height: 80%;
        opacity: 0.05;
    }
    
    .hero-vehicle-accent {
        width: 450px;
        height: 300px;
        bottom: -30px;
        right: -80px;
    }
}

@media (max-width: 768px) {
    .vehicle-bg-left {
        left: -30%;
        opacity: 0.04;
    }
    
    .vehicle-bg-right {
        right: -30%;
        opacity: 0.04;
    }
    
    .hero-vehicle-accent {
        display: none;
    }
    
    .comparison-vehicle-bg {
        opacity: 0.02;
        width: 90%;
    }
}

@media (max-width: 425px) {
    .vehicle-background-layer {
        display: none;
    }
}

/* ============================================
   RIDE WITH US SECTION VEHICLE BACKGROUND - ENHANCED VISIBILITY
   ============================================ */

.ride-with-us-vehicle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.ride-vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.85) 0%,
        rgba(248, 249, 250, 0.75) 50%,
        rgba(248, 249, 250, 0.85) 100%
    );
    z-index: 2;
}

.ride-vehicle-left {
    position: absolute;
    left: -10%;
    top: 15%;
    height: 65%;
    width: auto;
    object-fit: contain;
    opacity: 1;
    filter: grayscale(30%) brightness(1.15);
    transform: rotate(-8deg);
    z-index: 1;
    animation: ride-vehicle-float-left 25s ease-in-out infinite;
}

.ride-vehicle-right {
    position: absolute;
    right: -10%;
    bottom: 5%;
    height: 65%;
    width: auto;
    object-fit: contain;
    opacity: 0.12;
    filter: grayscale(30%) brightness(1.15);
    transform: rotate(5deg);
    z-index: 1;
    animation: ride-vehicle-float-right 30s ease-in-out infinite;
}

@keyframes ride-vehicle-float-left {
    0%, 100% {
        transform: rotate(-8deg) translateY(0) translateX(0);
        opacity: 0.12;
    }
    50% {
        transform: rotate(-8deg) translateY(-25px) translateX(-20px);
        opacity: 0.15;
    }
}

@keyframes ride-vehicle-float-right {
    0%, 100% {
        transform: rotate(5deg) translateY(0) translateX(0);
        opacity: 0.12;
    }
    50% {
        transform: rotate(5deg) translateY(25px) translateX(20px);
        opacity: 0.15;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .ride-vehicle-left,
    .ride-vehicle-right {
        opacity: 0.10;
        height: 55%;
    }
}

@media (max-width: 1024px) {
    .ride-vehicle-left {
        left: -20%;
        height: 50%;
        opacity: 0.08;
    }
    
    .ride-vehicle-right {
        right: -20%;
        height: 50%;
        opacity: 0.08;
    }
    
    .ride-vehicle-overlay {
        background: linear-gradient(
            135deg,
            rgba(248, 249, 250, 0.88) 0%,
            rgba(248, 249, 250, 0.80) 50%,
            rgba(248, 249, 250, 0.88) 100%
        );
    }
}

@media (max-width: 768px) {
    .ride-vehicle-left,
    .ride-vehicle-right {
        opacity: 0.06;
        height: 40%;
    }
}

@media (max-width: 425px) {
    .ride-with-us-vehicle-bg {
        display: none;
    }
}
/* ============================================
   FLOATING FEATURE IMAGES (Download App Section) - SMALLER VERSION
   ============================================ */

.floating-feature-image {
    position: absolute;
    z-index: 5;
    animation: float-gentle 3s ease-in-out infinite;
}

.floating-feature-top {
    top: 12%;
    right: -15px;
}

.floating-feature-bottom {
    bottom: 18%;
    left: -15px;
    animation-delay: 0.5s;
}

.floating-feature-middle {
    top: 48%;
    right: -20px;
    animation-delay: 1s;
}

.feature-image-card {
    background: #fff;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(255, 164, 28, 0.15);
}

.feature-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 164, 28, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-image-card:hover::before {
    left: 100%;
}

.feature-image-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 164, 28, 0.25);
    border-color: rgba(255, 164, 28, 0.25);
}

.feature-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    max-width: 140px;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .feature-image-card img {
        max-width: 150px;
    }
    
    .floating-feature-top {
        right: -10px;
    }
    
    .floating-feature-bottom {
        left: -10px;
    }
    
    .floating-feature-middle {
        right: -12px;
    }
}

@media (max-width: 1024px) {
    .feature-image-card img {
        max-width: 120px;
    }
    
    .feature-image-card {
        padding: 6px;
        border-radius: 12px;
    }
    
    .floating-feature-top {
        top: 10%;
        right: -8px;
    }
    
    .floating-feature-bottom {
        bottom: 15%;
        left: -8px;
    }
    
    .floating-feature-middle {
        top: 45%;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .floating-feature-image {
        display: none;
    }
}

@media (max-width: 425px) {
    .floating-feature-image {
        display: none;
    }
}