/* ============================================
   MENEMEN TAKSI - PREMIUM DESIGN SYSTEM
   Ultra-modern, cutting-edge visual effects
   ============================================ */

/* ============================================
   ROOT VARIABLES - COLOR SYSTEM
   ============================================ */
:root {
    /* Taxi Yellow Gradients - Refined for Modern Look */
    --taxi-yellow-primary: #FFD700;
    --taxi-yellow-secondary: #FFB300;
    /* Slightly warmer */
    --taxi-yellow-gradient: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFB300 100%);
    --taxi-yellow-gradient-animated: linear-gradient(135deg, #FFD700 0%, #FFA000 50%, #FFD700 100%);

    /* Modern Light Button Colors */
    --light-btn-bg: #FFFFFF;
    --light-btn-text: #1a1a2e;
    --whatsapp-green: #25D366;

    /* Luxury Dark Colors */
    --dark-primary: #0a0e27;
    --dark-secondary: #1a1a2e;
    --dark-tertiary: #16213e;

    /* Neon Accents */
    --neon-cyan: #00f5ff;
    --neon-orange: #ff6b35;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.5);
    --shadow-neon: 0 0 30px rgba(0, 245, 255, 0.6);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--taxi-yellow-gradient);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* ============================================
   ENHANCED HERO SECTION
   ============================================ */
.main-slider-one {
    position: relative;
    overflow: hidden;
}

.main-slider-one__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 26, 46, 0.75) 100%);
    z-index: 1;
}

.main-slider-one__content {
    position: relative;
    z-index: 2;
}

.main-slider-one__title {
    background: var(--taxi-yellow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.main-slider-one__sub-title {
    animation: fadeInUp 0.8s ease 0.3s both;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PREMIUM CTA BUTTONS
   ============================================ */
.cityride-btn,
.cityride-btn--secondary,
.cityride-btn--light {
    border-radius: 50px !important;
    /* Modern Pill Shape */
    padding: 15px 35px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cityride-btn--secondary {
    position: relative;
    background: var(--taxi-yellow-gradient) !important;
    color: var(--dark-primary) !important;
    border: none !important;
    box-shadow:
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 8px 30px rgba(255, 165, 0, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: hidden;
    z-index: 1;
}

.cityride-btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.cityride-btn--secondary:hover::before {
    left: 100%;
}

.cityride-btn--secondary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow:
        0 6px 25px rgba(255, 215, 0, 0.6),
        0 12px 40px rgba(255, 165, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2) !important;
    color: var(--dark-primary) !important;
}

.cityride-btn--secondary:active {
    transform: translateY(-1px) scale(1.02) !important;
}

/* New Light/Whatsapp Button */
.cityride-btn--light {
    background: var(--light-btn-bg) !important;
    color: var(--dark-primary) !important;
    border: 2px solid var(--light-btn-bg) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
    transition: all 0.4s ease !important;
}

.cityride-btn--light:hover {
    background: transparent !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4) !important;
}

/* Margin Utility */
.ml-3 {
    margin-left: 1rem;
}

@media (max-width: 576px) {
    .ml-3 {
        margin-left: 0;
        margin-top: 1rem;
        display: flex;
        width: 100%;
    }

    .main-slider-one__button {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cityride-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Pulsing animation for main CTA */
@keyframes pulse {

    0%,
    100% {
        box-shadow:
            0 4px 15px rgba(255, 215, 0, 0.4),
            0 8px 30px rgba(255, 165, 0, 0.3),
            0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    50% {
        box-shadow:
            0 4px 15px rgba(255, 215, 0, 0.4),
            0 8px 30px rgba(255, 165, 0, 0.3),
            0 0 0 15px rgba(255, 215, 0, 0);
    }
}

.main-slider-one__btn:first-child {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   GLASSMORPHIC SERVICE CARDS
   ============================================ */
.service-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.05) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 0 20px rgba(255, 215, 0, 0.1) !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
}

.service-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    max-width: 100%;
    height: 250px;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-card__image img {
    transform: scale(1.15) rotate(2deg);
}

/* ============================================
   PREMIUM IMAGE TREATMENTS
   ============================================ */
.about-four__image__item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 100%;
}

.about-four__image__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-four__image__item:hover::before {
    opacity: 1;
}

.about-four__image__item img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.about-four__image__item:hover img {
    transform: scale(1.1);
}

.about-four__image__small {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 215, 0, 0.5);
    width: 100%;
    max-width: 100%;
}

.about-four__image__small img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.about-four__image__small:hover img {
    transform: scale(1.15);
}

/* ============================================
   ENHANCED WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    animation: slideInRight 0.6s ease 1s both;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border-radius: 50%;
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 8px 40px rgba(18, 140, 126, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 8px 40px rgba(18, 140, 126, 0.3),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 8px 40px rgba(18, 140, 126, 0.3),
            0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 6px 30px rgba(37, 211, 102, 0.6),
        0 12px 50px rgba(18, 140, 126, 0.4),
        0 0 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 30px;
    color: white;
}

/* ============================================
   STICKY HEADER WITH BLUR
   ============================================ */
.sticky-header.sticky-header--cloned {
    background: rgba(10, 14, 39, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

/* ============================================
   FLOATING ANIMATION
   ============================================ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.main-slider-one__image__car {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ENHANCED TYPOGRAPHY
   ============================================ */
.sec-title__title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    line-height: 1.2 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sec-title__tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================
   CITYRIDE INFO CARDS
   ============================================ */
.cityride-info__item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
    padding: 30px 20px;
}

.cityride-info__item:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.cityride-info__item__icon {
    transition: all 0.4s ease;
}

.cityride-info__item:hover .cityride-info__item__icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--taxi-yellow-primary);
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.main-footer {
    position: relative;
}

.main-footer__top {
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
}

.footer-widget__links a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.footer-widget__links a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--taxi-yellow-gradient);
    bottom: 0;
    transition: width 0.3s ease;
}

.footer-widget__links a:hover::before {
    width: 20px;
}

.footer-widget__links a:hover {
    color: var(--taxi-yellow-primary) !important;
    padding-left: 30px;
}

/* ============================================
   RESPONSIVE OPTIMIZATIONS
   ============================================ */
@media (max-width: 991px) {
    .main-slider-one__title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.02) !important;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn i {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    :root {
        --glass-blur: 10px;
    }

    .cityride-btn--secondary:hover {
        transform: translateY(-2px) scale(1.02) !important;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   CUSTOM CURSOR ENHANCEMENTS
   ============================================ */
.custom-cursor__cursor {
    mix-blend-mode: difference;
    background: var(--taxi-yellow-primary);
}

.custom-cursor__cursor-two {
    border-color: var(--taxi-yellow-primary);
}

/* ============================================
   LOADING ANIMATIONS
   ============================================ */
.preloader__image {
    animation: preloaderSpin 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

@keyframes preloaderSpin {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* ============================================
   NEON GLOW EFFECTS
   ============================================ */
.emargency-call__number {
    position: relative;
    transition: all 0.3s ease;
}

.emargency-call__number:hover {
    color: var(--taxi-yellow-primary) !important;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
}

/* ============================================
   SECTION SPACING IMPROVEMENTS
   ============================================ */
.section-space {
    padding: clamp(60px, 10vw, 120px) 0;
}

/* ============================================
   SMOOTH SCROLL BEHAVIOR
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   GRADIENT BORDER ANIMATION
   ============================================ */
@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(255, 215, 0, 0.3);
    }

    50% {
        border-color: rgba(255, 215, 0, 0.8);
    }
}

.about-four__funfact {
    animation: borderGlow 2s ease-in-out infinite;
}

/* ============================================
   NEW IMAGE INTEGRATION (3.jpeg & 4.jpeg)
   ============================================ */
.download-app-three__image__inner,
.download-app-three__image__item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.download-app-three__image__inner img,
.download-app-three__image__item img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.download-app-three__image__inner:hover img,
.download-app-three__image__item:hover img {
    transform: scale(1.1);
}