/* Landing Page Styles using Terms Dark Theme */
:root {
    --primary-gradient: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    --secondary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --light-blue-gradient: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
    --primary-color: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #0ea5e9;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Ensure the gradient covers the entire page */
.landing-wrapper {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    min-height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    padding-top: 80px; /* Add padding to prevent content from going under fixed navigation */
    z-index: 1; /* Ensure content is below navigation */
}

/* Ensure all sections are properly positioned */
section {
    position: relative;
    background: inherit;
    z-index: 1; /* Ensure sections are below navigation */
}

/* Hero section specific positioning */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 1; /* Ensure it's below navigation */
    margin-top: 0; /* Remove any top margin */
}

/* Container and layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1rem;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 1rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1rem;
}

.col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 1rem;
}

/* Section spacing */
.hero-section,
.about-section,
.services-section,
.app-download-section {
    padding: 4rem 0;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.about-section {
    padding: 6rem 0;
}

.services-section {
    padding: 6rem 0;
}

.app-download-section {
    padding: 6rem 0;
}

/* Remove all container padding that creates breaks */
.container {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Remove all row spacing */
.row {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Remove any default Bootstrap spacing */
.col-lg-6,
.col-lg-12,
.col-md-6,
.col-sm-12 {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Ensure no gaps between sections */
.hero-section,
.about-section,
.services-section,
.app-download-section {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
}

/* Force remove any remaining spacing */
.about-content,
.about-visual,
.services-cta {
    margin: 0;
    padding: 0;
}

/* Remove any default spacing from Bootstrap classes */
.text-center,
.align-items-center {
    margin: 0;
    padding: 0;
}

/* Ensure content flows without breaks */
.about-section .container,
.services-section .container,
.app-download-section .container {
    margin: 0 auto;
    padding: 2rem 2rem;
    max-width: 1400px;
    width: 100%;
}

/* Add subtle content spacing without breaking the gradient flow */
.section-title {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    font-size: 2.8rem;
}

.section-subtitle {
    margin-bottom: 3rem;
    font-size: 1.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-title {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}

.about-features {
    margin-bottom: 2rem;
}

.about-features .feature-item {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.visual-grid {
    gap: 1.5rem;
    padding: 1rem;
}

.visual-card {
    margin-bottom: 0;
    padding: 2rem 1.5rem;
    min-height: 180px;
}

.visual-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.visual-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Remove any remaining section spacing */
.about-section+.services-section,
.services-section+.app-download-section {
    margin-top: 0;
    padding-top: 0;
}

.landing-wrapper {
    position: relative;
}

/* Modern Navigation */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: block;
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(91, 115, 232, 0.5);
}

/* Mobile Navigation Styles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    width: 100vw;
    height: 100vh;
    visibility: hidden; /* Hide completely when not active */
    opacity: 0; /* Fade out when not active */
}

.mobile-nav.active {
    transform: translateX(0);
    display: block;
    visibility: visible; /* Show when active */
    opacity: 1; /* Fade in when active */
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
}

/* Ensure mobile navigation is completely hidden on desktop */
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

.mobile-nav-content {
    padding: 6rem 2rem 2rem 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.mobile-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(91, 115, 232, 0.5);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1); /* Add subtle background */
    backdrop-filter: blur(10px);
}

/* Ensure mobile menu toggle is visible on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 1002;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    /* Ensure toggle button doesn't interfere with content */
    .nav-container {
        position: relative;
        z-index: 1002;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 1; /* Ensure it's below navigation */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 1;
    animation: float 20s infinite linear;
}

.hero-particles .particle:nth-child(1) {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-duration: 18s;
    animation-delay: -2s;
}

.hero-particles .particle:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.hero-particles .particle:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 30%;
    animation-duration: 16s;
    animation-delay: -8s;
}

.hero-particles .particle:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 80%;
    animation-duration: 24s;
    animation-delay: -12s;
}

.hero-particles .particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 50%;
    animation-duration: 20s;
    animation-delay: -15s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--light-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: none;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: var(--text-primary);
    text-decoration: none;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 3;
}

.floating-card.card-2 {
    animation-delay: -3s;
}

.floating-card i {
    font-size: 1.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card:nth-child(1) {
    top: 10%;
    right: 10%;
}

.floating-card:nth-child(2) {
    bottom: 20%;
    left: 5%;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.car-image {
    position: relative;
    z-index: 2;
}

.car-placeholder {
    width: 300px;
    height: 200px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.car-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
}

/* Section Styles */
.about-section,
.services-section,
.contact-section {
    padding: 0;
    margin: 0;
}

.about-section {
    background: inherit;
}

.services-section {
    background: inherit;
}

.contact-section {
    background: inherit;
}

.section-header {
    margin: 0;
    padding: 2rem 0 1rem 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    padding-right: 3rem;
    padding-left: 1rem;
}

.about-visual {
    padding-left: 2rem;
    padding-right: 1rem;
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.learn-more-btn {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.learn-more-btn:hover {
    gap: 1rem;
    color: var(--accent-color);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.visual-card i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.visual-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.visual-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services Section */
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 2rem;
    text-align: left;
}

.service-features .feature {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(91, 115, 232, 0.3);
}

/* Custom 5-column grid */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Compact Service Cards */
.service-card.compact {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.service-card.compact .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card.compact .service-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-card.compact .service-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.service-card.compact .service-features {
    margin-bottom: 0;
}

.service-card.compact .service-features .feature {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.service-card.compact:hover {
    transform: translateY(-5px);
}

.service-card.compact.featured {
    transform: scale(1.02);
}

.service-card.compact.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.services-cta {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.services-cta h3 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(91, 115, 232, 0.3);
    color: white;
}

/* Mobile App Download Section */
.app-download-section {
    padding: 4rem 0;
    background: inherit;
    position: relative;
    overflow: hidden;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.app-badge i {
    font-size: 1.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.app-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
}

.app-features {
    margin-bottom: 2.5rem;
}

.app-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.app-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
}

.download-btn.app-store {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.download-btn.google-play {
    background: linear-gradient(135deg, #00c853 0%, #4caf50 100%);
    color: white;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.download-btn i {
    font-size: 2rem;
}

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

.download-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.app-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-stats .stat-item {
    text-align: center;
}

.app-stats .stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* App Visual */
.app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.app-mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.app-mockup-image:hover {
    transform: translateY(-10px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card.download-card {
    top: 5%;
    right: -15%;
    animation-delay: -2s;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: 1px solid #16a34a;
    border-radius: 25px;
    color: white;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.floating-card.download-card i {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.floating-card.feature-card {
    bottom: 15%;
    left: -15%;
    animation-delay: -4s;
}

.floating-card.feature-card i {
    color: #fbbf24;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

/* Footer */
.modern-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    color: var(--text-light);
    padding: 3rem 2rem 1rem 2rem;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 64, 175, 0.95) 100%);
    z-index: 1;
}

.modern-footer>.container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .about-visual {
        padding-left: 0;
        padding-right: 0;
    }

    .visual-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info {
        position: static;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        max-width: 100%;
    }

    /* Responsive padding for mobile */
    .about-section .container,
    .services-section .container,
    .app-download-section .container {
        padding: 2rem 1rem;
    }

    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .app-download-section {
        padding: 4rem 0;
    }

    .app-title {
        font-size: 2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .app-stats {
        justify-content: center;
    }

    .phone-mockup {
        width: 240px;
        height: 420px;
        margin-top: 2rem;
    }

    .floating-card {
        display: none;
    }

    .phone-mockup-simple {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .contact-form-card {
        padding: 2rem 1rem;
    }

    .service-card {
        padding: 2rem 1rem;
    }

    /* Extra small device padding */
    .about-section .container,
    .services-section .container,
    .app-download-section .container {
        padding: 1.5rem 0.75rem;
    }

    .hero-content {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .app-title {
        font-size: 1.8rem;
    }

    .app-description {
        font-size: 1rem;
    }

    .phone-mockup {
        width: 200px;
        height: 360px;
    }
}

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

/* Loading Animation */
.landing-wrapper {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ripple Effect Animation */
@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Utility Classes */
.text-danger {
    color: #dc2626 !important;
}

.min-vh-100 {
    min-height: 100vh;
}

.mt-5 {
    margin-top: 3rem;
}

.text-md-end {
    text-align: right;
}

@media (max-width: 767.98px) {
    .text-md-end {
        text-align: center;
    }
} 

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    
    .landing-wrapper {
        overflow-x: hidden;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: 100vh;
    }
    
    .hero-content .container {
        padding: 0 1rem;
    }
    
    .hero-content .row {
        min-height: calc(100vh - 80px);
        flex-direction: column;
    }
    
    .hero-content .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto 2rem auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .image-container {
        height: 300px;
    }
    
    .floating-card {
        display: none;
    }
    
    .car-placeholder {
        width: 250px;
        height: 150px;
    }
    
    .car-placeholder i {
        font-size: 3rem;
    }
    
    /* About section mobile */
    .about-section .container,
    .services-section .container,
    .app-download-section .container {
        padding: 2rem 1rem;
    }
    
    .about-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .about-text {
        max-width: 100%;
        margin: 0 auto 2rem auto;
    }
    
    .about-visual {
        padding-left: 0;
        padding-right: 0;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
} 

/* Ensure smooth mobile experience */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Ensure all content fits within viewport */
    .landing-wrapper {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Fix any potential overflow issues */
    .hero-section,
    .about-section,
    .services-section,
    .app-download-section,
    .modern-footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ensure proper mobile spacing */
    .hero-content {
        padding: 0 1rem;
        width: 100%;
    }
    
    .hero-content .container {
        padding: 0;
        width: 100%;
    }
    
    .hero-content .row {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .hero-content .col-lg-6 {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    /* Fix mobile navigation */
    .modern-nav {
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-container {
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure mobile menu is properly positioned */
    .mobile-nav {
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
    }
    
    /* Fix mobile button layout */
    .hero-buttons {
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: none;
        margin: 0 0 1rem 0;
    }
    
    /* Fix mobile stats layout */
    .hero-stats {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
} 

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .landing-wrapper {
        padding-top: 60px; /* Further reduce padding for very small devices */
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Ensure proper mobile navigation */
    .nav-container {
        padding: 0.75rem;
    }
    
    .nav-logo {
        height: 32px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    /* Mobile menu content adjustments */
    .mobile-nav-content {
        padding: 5rem 1.5rem 2rem 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 1.25rem 0;
        max-width: 280px;
    }
    
    /* Ensure content sections don't overlap with navigation */
    .about-section,
    .services-section,
    .app-download-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Fix hero section spacing on mobile */
    .hero-section {
        min-height: calc(100vh - 60px); /* Account for navigation height */
        padding-top: 0;
        padding-bottom: 2rem;
    }
} 

/* Section content styling */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.about-features {
    margin-bottom: 2rem;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.about-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.visual-card i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.visual-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.visual-card p {
    color: var(--text-muted);
    line-height: 1.6;
} 

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .landing-wrapper {
        padding-top: 70px; /* Reduce padding for mobile */
    }
    
    .hero-section {
        padding-top: 0; /* Remove extra padding from hero section on mobile */
    }
    
    .modern-nav {
        background: rgba(15, 23, 42, 0.95); /* Make navigation more opaque on mobile */
    }
    
    /* Ensure mobile menu is properly positioned */
    .mobile-nav {
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
        top: 0; /* Ensure it starts from the very top */
    }
    
    /* Fix mobile button layout */
    .hero-buttons {
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: none;
        margin: 0 0 1rem 0;
    }
    
    /* Fix mobile stats layout */
    .hero-stats {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
} 

/* Ensure mobile navigation doesn't interfere with page content */
@media (max-width: 768px) {
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        overflow: hidden; /* Prevent scrolling issues */
        pointer-events: none; /* Initially disable pointer events */
    }
    
    .mobile-nav.active {
        pointer-events: auto; /* Enable pointer events when active */
    }
    
    .mobile-nav-content {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        padding-top: 5rem; /* Reduce top padding on mobile */
        pointer-events: auto; /* Always enable pointer events for content */
    }
    
    /* Ensure mobile navigation links are properly spaced */
    .mobile-nav-link {
        margin: 0.5rem 0;
        padding: 1rem 0;
    }
    
    /* Prevent body scroll when mobile nav is open */
    body.mobile-nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
} 

/* Mobile hero section fixes */
@media (max-width: 768px) {
    .hero-section {
        min-height: calc(100vh - 70px);
        padding-top: 1rem;
        margin-top: 0;
    }
    
    .hero-content {
        padding-top: 0;
        margin-top: 0;
    }
    
    .hero-text {
        padding-top: 0;
        margin-top: 0;
    }
    
    /* Ensure hero content doesn't overlap with navigation */
    .hero-title,
    .hero-description,
    .hero-buttons,
    .hero-stats {
        position: relative;
        z-index: 1;
    }
} 

/* Responsive design for hero buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 280px;
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
} 