/* Redesigned Footer CSS - Choose A Taxi */

.site-footer {
    background-color: #111213;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    z-index: 1;
}

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

/* ==========================================================================
   1. Footer Top CTA Strip Styling
   ========================================================================== */
.footer-top-cta {
    background-color: #1a1c1d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

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

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.cta-left {
    flex-grow: 1;
    padding: 30px 40px 30px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.cta-tagline {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.5;
    max-width: 580px;
}

.cta-right-slanted {
    background-color: #ff9e15; /* var(--primary-orange) */
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 40px 30px 70px;
    width: 35%;
    z-index: 1;
}

.cta-right-slanted::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 0;
    width: 50px;
    background-color: #ff9e15;
    transform: skewX(-20deg);
    z-index: -1;
}

.cta-hotline-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-hotline-icon {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #ffffff;
}

.cta-hotline-details {
    display: flex;
    flex-direction: column;
}

.cta-hotline-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.cta-hotline-value {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.cta-hotline-value:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   2. Main Footer Body Styling
   ========================================================================== */
.footer-main {
    padding: 60px 0 160px; /* High bottom padding to make space for background buildings */
    position: relative;
    background-color: #111213;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr 1.2fr;
    gap: 40px;
}

.footer-column {
    position: relative;
    z-index: 5;
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #ff9e15; /* var(--primary-orange) */
}

/* Working Hours */
.working-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.working-hour-item {
    font-size: 14px;
    line-height: 1.4;
}

.day-label {
    display: block;
    color: #ff9e15;
    font-weight: 700;
    margin-bottom: 2px;
}

.time-value {
    color: #d1d5db;
}

.highlight-closed {
    color: #ef4444;
    font-weight: 700;
}

/* Useful Links */
.footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease-in-out;
}

.footer-nav-links a i {
    font-size: 10px;
    color: #ff9e15;
    transition: transform 0.2s ease;
}

.footer-nav-links a:hover {
    color: #ff9e15;
}

.footer-nav-links a:hover i {
    transform: translateX(3px);
}

/* Head Office */
.office-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    color: #ff9e15;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.info-value {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

a.info-value.email-link {
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

a.info-value.email-link:hover {
    color: #ff9e15;
}

/* Newsletter Signup */
.newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    max-width: 280px;
}

.newsletter-input-wrapper {
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
    color: #111111;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    border-color: #ff9e15;
}

.newsletter-btn {
    background-color: #ff9e15;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-btn:hover {
    background-color: #e08408;
}

.newsletter-note {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
}



/* Road & Moving Taxi Animation */
.footer-road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    background-color: #171819; /* Dark asphalt */
    border-top: 3px solid #ff9e15; /* Yellow road shoulder line */
    z-index: 2;
    overflow: hidden;
}

.road-surface {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Road dash lines in middle */
.road-lines {
    position: absolute;
    left: 0;
    width: 200%;
    height: 2px;
    background: repeating-linear-gradient(90deg, 
        transparent, 
        transparent 25px, 
        rgba(255, 255, 255, 0.25) 25px, 
        rgba(255, 255, 255, 0.25) 50px
    );
    top: 50%;
    transform: translateY(-50%);
    animation: moveRoad 3s linear infinite;
}

/* Taxis moving left to right */
.taxi-container {
    position: absolute;
    width: 72px;
    height: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.moving-taxi {
    width: 100%;
    height: 100%;
}

/* Taxi 1 (Foreground/Fast Lane) */
.taxi-1 {
    bottom: 2px;
    animation: driveTaxi1 16s linear infinite;
}

/* Taxi 2 (Background/Slow Lane) - smaller to create depth */
.taxi-2 {
    top: 2px;
    width: 56px;
    height: 24px;
    opacity: 0.85;
    animation: driveTaxi2 24s linear infinite;
}

/* Keyframes */
@keyframes driveTaxi1 {
    0% {
        left: -80px;
    }
    100% {
        left: 100%;
    }
}

@keyframes driveTaxi2 {
    0% {
        left: -120px;
    }
    100% {
        left: 100%;
    }
}

@keyframes moveRoad {
    0% {
        transform: translate3d(0, -50%, 0);
    }
    100% {
        transform: translate3d(-50px, -50%, 0); /* shift left by one repeating unit size */
    }
}

/* ==========================================================================
   3. Footer Copyright Strip Styling
   ========================================================================== */
.footer-bottom-strip {
    background-color: #0b0c0d;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.bottom-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 13px;
    color: #9ca3af;
}

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

.social-link-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    font-size: 13px;
}

.social-link-btn:hover {
    background-color: #ff9e15;
    border-color: #ff9e15;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Sticky WhatsApp Button */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background-color: #25d366;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-sticky-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   4. Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .cta-inner {
        flex-direction: column;
    }
    
    .cta-left {
        padding: 25px 0 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-right-slanted {
        width: 100%;
        padding: 20px;
        justify-content: center;
    }
    
    .cta-right-slanted::before {
        display: none; /* remove slant on mobile/tablet */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-main {
        padding: 50px 0 130px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bottom-strip-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-main {
        padding: 40px 0 100px;
    }
    
    .footer-skyline-bg {
        height: 100px;
    }
}
