.logo-img {
    max-height: 40px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 8px;
    /* Protection: Disable Image Dragging */
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Protection: Disable Printing */
@media print {
    body {
        display: none !important;
    }
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary: #667eea;
    --primary-blue: #667eea;
    --primary-glow: rgba(102, 126, 134, 0.4);
    --primary-dark: #5568d3;
    --secondary: #f5576c;
    --accent: #4facfe;
    --bg-primary: #fff;
    --bg-secondary: #f8f9ff;
    --bg-dark: #1a1a2e;
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --border: #e5e7eb;
    --shadow-md: 0 4px 16px rgba(102, 126, 234, .12);
    --shadow-lg: 0 8px 32px rgba(102, 126, 234, .16);
    --shadow-xl: 0 16px 48px rgba(102, 126, 234, .2);
    --spacing-xs: .5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition-base: 250ms cubic-bezier(.4, 0, .2, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Protection: Disable Text Selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Protection: Disable Right Click Fallback */
    -webkit-touch-callout: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Protection: Disable Image Dragging */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base)
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: 0 0
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg)
}

.gradient-text {
    background: var(--primary-gradient-brand, var(--primary-gradient));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 5px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.25rem
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .875rem;
    box-shadow: var(--shadow-md)
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl)
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--spacing-xs) 0
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-base)
}

.nav-links a:hover {
    color: var(--primary)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: #000;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-play-btn:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-play-btn svg {
    width: 22px;
    height: 22px;
}

.nav-play-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-play-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.nav-play-brand {
    font-size: 0.95rem;
    font-weight: 700;
}

@media (max-width: 968px) {
    .nav-play-btn {
        margin-left: auto;
        margin-right: 12px;
        padding: 5px 10px;
    }

    .nav-play-brand {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .logo-text {
        font-size: 0.9rem;
    }

    .logo-img {
        max-height: 32px;
    }

    .nav-play-btn {
        padding: 4px 8px;
        gap: 6px;
    }

    .nav-play-btn svg {
        width: 18px;
        height: 18px;
    }

    .nav-play-label {
        font-size: 0.5rem;
    }

    .nav-play-brand {
        font-size: 0.75rem;
    }
}

@media (max-width: 420px) {
    .logo-text {
        font-size: 0.8rem;
    }

    .logo-img {
        max-height: 28px;
        margin-right: 5px;
    }

    .nav-play-btn {
        padding: 3px 6px;
        gap: 4px;
        margin-right: 5px;
    }

    .nav-play-brand {
        font-size: 0.65rem;
    }

    .container {
        padding: 0 10px;
    }

    .nav-content {
        gap: 5px;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-xs)
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-lg);
    flex-direction: column;
    gap: var(--spacing-md);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base)
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1
}

.mobile-menu a {
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm)
}

.mobile-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary)
}

.hero-clean {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: visible;
    background: #ffffff;
    /* Clean flat white background */
    text-align: center;
    z-index: 5;
}

@media (max-width: 768px) {
    .hero-clean {
        min-height: 80vh;
        padding: 100px 0 40px;
    }
}

.hero-background-minimal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.minimal-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.minimalist-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatOrb1 25s infinite alternate ease-in-out;
}

.minimalist-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: floatOrb2 30s infinite alternate ease-in-out;
    animation-delay: -5s;
}

.minimalist-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    top: 20%;
    left: -100px;
    animation: floatOrb1 20s infinite alternate-reverse ease-in-out;
}

.minimalist-4 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation: floatOrb2 35s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(50px, 80px) scale(1.2) rotate(15deg);
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(-60px, -40px) scale(1.15) rotate(-10deg);
    }
}

.container-clean {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    z-index: 10;
}

.hero-clean-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 50px;
    color: #1a1a2e;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .hero-clean-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-clean-title {
        font-size: 2rem;
    }
}

/* Refined Horizontal Search Bar */
.clean-search-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.clean-search-form {
    display: flex;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.01);
    align-items: stretch;
    gap: 0;
}

.clean-input-group {
    padding: 12px 20px;
    border-right: 1px solid #f0f0f5;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.clean-input-group select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    color: #4a4a68;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.clean-select-arrow {
    margin-left: 10px;
    color: #a0a0b0;
    pointer-events: none;
}

.clean-main-inputs {
    flex: 1;
    display: flex;
    align-items: center;
}

.clean-input-field {
    flex: 1;
    padding: 10px 20px;
    position: relative;
}

.clean-input-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    background: transparent;
}

.clean-input-field input::placeholder {
    color: #c0c0d0;
}

.clean-swap-btn {
    background: #f8f9ff;
    border: none;
    color: var(--primary);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.clean-swap-btn:hover {
    background: #eff2ff;
    transform: scale(1.1);
}

.clean-submit-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clean-submit-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
    transform: translateY(-1px);
}

/* Popular Stoppages Chips */
.hero-popular-stoppages {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.popular-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #7c7c9c;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chips-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.stoppage-chip {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1.5px solid #dbeafe;
    background: #ffffff;
    color: #3b82f6;
    letter-spacing: 0.01em;
}

.stoppage-chip:hover {
    background: #f0f7ff;
    border-color: #3b82f6;
    color: #2563eb;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

@media (max-width: 480px) {
    .stoppage-chip {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .chips-cloud {
        gap: 8px;
    }
}

.stoppage-chip:active {
    transform: translateY(-1px) scale(1.01);
}



/* Autocomplete match with clean bar */
.clean-search-wrapper .home-ac-dropdown {
    top: calc(100% + 12px);
    border-radius: 12px;
    border: 1px solid #f0f0f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.btn-glass {
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.btn-glass:hover {
    background: var(--primary);
    color: #fff;
}

.btn-text {
    color: var(--text-secondary);
}

.btn-text:hover {
    color: var(--primary);
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 48px;
    background: #fff;
    border-radius: 100px;
    border: 1px solid #f0f0f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a2e;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: #f0f0f5;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2d2d3a, #1a1a24);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .1);
    position: relative
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a24;
    border-radius: 0 0 20px 20px;
    z-index: 2
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 32px;
    overflow: hidden;
    position: relative
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.features {
    padding: var(--spacing-2xl) 0;
    background: #fff
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl)
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -.02em
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg)
}

.feature-card {
    padding: var(--spacing-xl);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base)
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.feature-card:hover::before {
    transform: scaleX(1)
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(102, 126, 234, .1) 0%, rgba(118, 75, 162, .1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
    transition: all var(--transition-base)
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-gradient);
    color: #fff
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm)
}

.services {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.services .section-header {
    margin-bottom: var(--spacing-2xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl)
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary)
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, .1) 0%, rgba(118, 75, 162, .1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
    transition: all var(--transition-base)
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: #fff;
    transform: scale(1.1)
}

.service-content {
    padding: 0
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs)
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    border: 1px solid var(--border)
}

.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
    border-radius: 50%
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -.02em
}

.download-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: .9;
    line-height: 1.7
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 300px
}

.store-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.store-label {
    font-size: .75rem;
    opacity: .8
}

.store-name {
    font-size: 1.125rem;
    font-weight: 600
}

.floating-phone {
    display: flex;
    justify-content: center;
    animation: floatPhone 6s ease-in-out infinite
}

.phone-device {
    width: 300px;
    height: 600px;
    background: #121212;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 2px solid #2a2a2a;
}

.phone-device::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #121212;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-content {
    width: 100%;
    height: 100%;
    background: #fbfbfe;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-content img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.footer {
    background: #f8fafc;
    color: #334155;
    padding: 80px 0 40px;
    font-family: 'Inter', -apple-system, sans-serif;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: #0f172a;
}

.footer-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 90%;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0f172a;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width:968px) {
    .nav-links {
        display: none
    }

    .mobile-menu-btn {
        display: flex
    }

    .mobile-menu {
        display: flex
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .hero-sub-description {
        font-size: 1.15rem;
    }

    .hero-search-card {
        padding: 30px 20px;
    }

    .hero-trust-bar {
        gap: 20px;
        padding: 16px 32px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width:768px) {
    .search-controls-wrapper {
        flex-direction: column;
        border-radius: 16px;
    }

    .type-control {
        border-right: none;
        border-bottom: 1px solid #f0f0f5;
        width: 100%;
    }

    .search-main-inputs {
        flex-direction: column;
    }

    .input-set {
        flex-direction: column;
    }

    .search-field {
        width: 100%;
        border-bottom: 1px solid #f0f0f5;
        padding: 10px 0;
    }

    .search-field:last-child {
        border-bottom: none;
    }

    .search-swap-btn {
        margin: 10px 0;
        transform: rotate(90deg);
    }

    .search-swap-btn:hover {
        transform: rotate(270deg);
    }

    .premium-search-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        margin-top: 10px;
    }
}

@media (max-width:640px) {
    .hero-redesign {
        padding-top: 100px;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-sub-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-quick-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .action-btn {
        width: 100%;
        text-align: center;
    }

    .hero-trust-bar {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;
        align-items: center;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Bus Search Section - Integrated in Hero */
/* Integrated Hero Search Styles Refinement */
.hero-search-card .search-bar-form {
    display: none;
    /* Handled by search-form-premium */
}

/* Home Page Autocomplete Dropdown */
.home-ac-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
    max-height: 280px;
    overflow-y: auto;
    display: none;
}

.home-ac-item {
    padding: 12px 18px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #1c1c1e;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f2f2f7;
    transition: all 0.2s ease;
}

.home-ac-item:last-child {
    border-bottom: none;
}

.home-ac-item:hover,
.home-ac-item.active {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
}

.home-ac-item svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.home-ac-loading {
    padding: 16px;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

.search-bar-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    gap: 0;
    position: relative;
    flex-wrap: nowrap;
}

/* Search Type Dropdown */
.search-type-select {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-right: 1.5px solid #e0e0e0;
}

.search-type-select select {
    appearance: none;
    background: transparent;
    border: none;
    outline: none;
    padding: 18px 42px 18px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.search-type-select .select-arrow {
    position: absolute;
    right: 14px;
    pointer-events: none;
    color: #666;
}

/* Search Inputs Group */
.search-inputs-group {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0;
}

.search-text-input {
    border: none;
    outline: none;
    padding: 18px 16px;
    font-size: 1rem;
    color: #1a1a2e;
    background: transparent;
    font-family: inherit;
    flex: 1;
    min-width: 0;
}

.search-text-input::placeholder {
    color: #aaa;
}

.search-text-input.full-width {
    width: 100%;
}

/* Swap Button */
.swap-btn {
    background: #f2f2f7;
    border: 1px solid #e5e5ea;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: all 0.25s ease;
    margin: 0 4px;
}

.swap-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: rotate(180deg);
}

/* Vertical Divider between from/to */
.search-inputs-group .search-text-input+.swap-btn {
    border-left: 1px solid #eee;
}

/* Submit Button */
.search-submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    border-radius: 0 12px 12px 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-submit-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Divider between inputs and submit */
.search-bar-form>.search-inputs-group+.search-submit-btn,
.search-bar-form>.search-type-select~.search-submit-btn {
    border-left: 1.5px solid rgba(255, 255, 255, 0.2);
}

/* Search Header */
.search-header {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .search-bar-form {
        flex-wrap: wrap;
        border-radius: 14px;
        overflow: hidden;
    }

    .search-type-select {
        width: 100%;
        border-right: none;
        border-bottom: 1.5px solid #e0e0e0;
    }

    .search-type-select select {
        width: 100%;
    }

    .search-inputs-group {
        width: 100%;
        border-bottom: 1.5px solid #e0e0e0;
    }

    .search-submit-btn {
        width: 100%;
        justify-content: center;
        border-radius: 0 0 12px 12px;
    }

    .hero-search-wrapper {
        max-width: 100%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (min-width: 769px) {
    .hero-search-card .search-bar-form {
        flex-wrap: nowrap;
    }
}


.bus-search-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, transparent 70%);
    z-index: 0;
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-card-wrapper {
    position: relative;
    padding: 2px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: 32px;
    margin-top: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
}

.search-card {
    background: #ffffff;
    /* Clean white */
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(var(--primary-rgb), 0.05);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.search-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8e8e93;
    /* Subtle label color */
    margin-left: 5px;
}

/* Custom Searchable Select - Light Version */
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    background: #f2f2f7;
    /* iOS-style light input */
    border: 1px solid #e5e5ea;
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.select-trigger:focus-within {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1);
}

.select-trigger input {
    background: transparent;
    border: none;
    outline: none;
    color: #1a1a2e;
    font-size: 1.1rem;
    width: 100%;
    font-family: inherit;
    font-weight: 500;
}

.select-trigger input::placeholder {
    color: #b0b0b8;
}

.select-trigger .chevron {
    color: #8e8e93;
    transition: transform 0.3s ease;
}

.custom-select.active .chevron {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 16px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-select.active .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option-item {
    padding: 14px 20px;
    color: #1c1c1e;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f2f2f7;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item:hover,
.option-item.highlighted {
    background: #f2f2f7;
    color: var(--primary);
    padding-left: 25px;
}

.options-loader,
.no-options {
    padding: 20px;
    text-align: center;
    color: #8e8e93;
    font-size: 0.9rem;
}

/* Swap Button - Light Version */
.search-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.divider-circle {
    width: 48px;
    height: 48px;
    background: #f2f2f7;
    border: 1px solid #e5e5ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #8e8e93;
    transition: all 0.3s ease;
}

.divider-circle:hover {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(180deg);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Submit Button - Light/App Version */
.search-submit {
    align-self: center;
    min-width: 250px;
    height: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--primary);
    color: #ffffff;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

/* Enhanced Results UI - Light Mode */
.search-results-container {
    margin-top: 60px;
    animation: fadeIn 0.5s ease;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5ea;
    padding-bottom: 20px;
}

.results-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1c1c1e;
    margin: 0;
}

.results-meta {
    font-size: 0.9rem;
    color: #8e8e93;
}

.bus-result-card {
    background: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    gap: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.bus-result-card:hover {
    background: #fafafa;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.bus-result-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bus-result-card:hover::before {
    opacity: 1;
}

.bus-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bus-info h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1c1c1e;
    letter-spacing: -0.5px;
}

.bus-meta {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #8e8e93;
}

.bus-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bus-times {
    display: flex;
    gap: 40px;
    align-items: center;
}

.time-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1c1c1e;
    font-variant-numeric: tabular-nums;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-top: 15px;
}

.status-on-time {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-delayed {
    background: #fff3e0;
    color: #ef6c00;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar styling for options - Light */
.select-options::-webkit-scrollbar {
    width: 6px;
}

.select-options::-webkit-scrollbar-track {
    background: transparent;
}

.select-options::-webkit-scrollbar-thumb {
    background: #e5e5ea;
    border-radius: 10px;
}


/* Modern Hero Responsive Fixes */
@media (max-width: 992px) {
    .hero-clean-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-clean {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-clean-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .clean-search-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }

    .clean-input-group,
    .clean-main-inputs {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-right: none;
        width: 100%;
        padding: 12px 15px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .type-select-group select {
        padding: 5px 0;
        font-size: 0.95rem;
    }

    .clean-input-group {
        min-width: 100%;
    }

    .clean-main-inputs {
        padding: 5px;
    }

    .clean-input-field {
        width: 100%;
        padding: 12px 15px;
    }

    .clean-input-field:not(:last-child) {
        border-bottom: 1px solid #f0f0f5;
    }

    .clean-swap-btn {
        display: none;
        /* Hide swap on small mobile for simplicity */
    }

    .clean-submit-btn {
        width: 100%;
        height: 54px;
        font-size: 1.1rem;
        margin-top: 8px;
        border-radius: 12px;
    }

    .hero-popular-stoppages {
        margin-top: 35px;
    }

    .popular-label {
        font-size: 0.8rem;
    }

    .stoppage-chip {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .minimal-orb {
        filter: blur(50px);
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero-clean-title {
        font-size: 1.8rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .search-inputs {
        flex-direction: column;
        gap: 10px;
    }

    .search-divider {
        margin: 10px 0;
    }

    .search-card {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .bus-result-card {
        flex-direction: column;
        gap: 20px;
    }

    .bus-times {
        width: 100%;
        justify-content: space-between;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .time-value {
        font-size: 1.2rem;
    }
}

/* Local Services Catalog Styling */
/* Local Services Marquee Styling */
.local-catalog {
    padding: 50px 0;
    background: #f8fafc;
    /* Subtle light background */
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.catalog-header {
    margin-bottom: 25px;
    text-align: center;
}

.local-catalog .section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.local-catalog .section-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Reduced gap between rows */
    padding: 10px 0;
    /* Reduced space for hover scaling as cards are smaller now */
}

.marquee-wrapper {
    display: flex;
    overflow: visible;
    /* Allows hover scaling */
    user-select: none;
    padding: 15px 0;
    /* Space for hover scaling */
    mask-image: linear-gradient(to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 10%,
            hsl(0 0% 0% / 1) 90%,
            hsl(0 0% 0% / 0));
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 24px;
    padding: 0 12px;
}

/* Animations */
.scroll-left .marquee-content {
    animation: scroll-left 40s linear infinite;
}

.scroll-right .marquee-content {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(calc(-50% - 12px));
    }

    to {
        transform: translateX(0);
    }
}

/* Pause on Hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.catalog-card {
    width: 340px;
    min-width: 340px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: left;
}

.catalog-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.08);
    transform: scale(1.02);
}

.card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bus-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card-info {
    flex: 1;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.card-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: #f59e0b;
    font-size: 0.8rem;
}

.rating-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .catalog-card {
        width: 280px;
        min-width: 280px;
        padding: 16px;
        gap: 12px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .card-title {
        font-size: 0.95rem;
    }
}