:root {
    --primary-color: #1BAC4B; /* New Green */
    --primary-light-color: #e8f7ee;
    --primary-dark-color: #148f3c;
    --secondary-color: #F39C12; /* Warm Orange - Keeping variable but removing from gradients */
    --accent-color: #3498DB; /* Friendly Blue */
    --text-color: #2c3e50;
    --text-light-color: #5a6c7d;
    --text-muted-color: #8492a6;
    --bg-color: #ffffff;
    --bg-light-color: #f8fafc; /* Lighter, cooler grey */
    --bg-dark-color: #2c3e50;
    --border-color: #e2e8f0;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 15px 35px rgba(0, 0, 0, 0.15);
    --font-family: 'Urbanist', sans-serif;
    --container-width: 1200px;
    --section-padding: 100px 0;
    --border-radius: 16px;
    --border-radius-large: 24px;

    /* Glass Effect Variables */
    --glass-background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
    --glass-border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    --glass-blur: 10px; /* Blur amount */
    --glass-shadow: var(--shadow-medium); /* Shadow for glass effect */
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    scroll-behavior: smooth;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 800; 
    letter-spacing: -0.02em;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700; 
    text-align: center; 
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}
h3 { 
    font-size: clamp(1.25rem, 2.5vw, 1.5rem); 
    font-weight: 600; 
}
h4 { 
    font-size: 1.25rem; 
    font-weight: 600; 
}

p { 
    color: var(--text-light-color); 
    margin-bottom: 1.5rem; 
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light-color);
}

.bg-dark {
    background-color: var(--bg-dark-color);
    color: white;
}

/* Header & Nav - Enhanced */
#main-header {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly less transparent */
    backdrop-filter: blur(var(--glass-blur));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--border-color);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
}

#main-header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

#main-header nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

#main-header nav ul li a:hover {
    color: var(--primary-color);
}

#main-header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#main-header nav ul li a:hover::after {
    width: 100%;
}

.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark-color));
    color: #fff;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, var(--primary-dark-color), var(--primary-color));
}

.btn-secondary {
    background-color: var(--primary-light-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Enhanced Hero Section */
.hero-section {
    background: radial-gradient(ellipse at 30% 20%, rgba(27, 172, 75, 0.1), transparent 50%),
                linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 120px 0 80px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

.hero-text h1 { 
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p { 
    font-size: 1.3rem; 
    margin-bottom: 2.5rem; 
    color: var(--text-light-color);
    max-width: 90%;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

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

.user-avatars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--glass-background); /* Border color updated */
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    margin-left: -10px;
}

.mini-avatar:first-child {
    margin-left: 0;
}

.plus-more {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    font-weight: 600;
    margin-left: 0.5rem;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.app-download-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.app-download-badges img {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-download-badges img:hover {
    transform: scale(1.05);
}

.hero-action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-action-buttons .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.scroll-indicator {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-muted-color);
    font-size: 0.9rem;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Enhanced Hero Visuals */
.hero-visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    max-width: 50%;
}

.hero-mockup {
    max-width: 35%;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-large);
    position: absolute;
    width: 320px;
    height: auto;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(255, 255, 255, 0.8); /* Already has glass-like border */
    backdrop-filter: blur(var(--glass-blur)); /* Already has blur */
}

.hero-mockup:nth-child(1) { /* Intro image */
    z-index: 3;
    transform: scale(1.1) translateY(-10px);
}
.hero-mockup:nth-child(2) { /* Rider mockup */
    z-index: 2;
    transform: translateX(-160px) rotate(-12deg) scale(0.9);
}
.hero-mockup:nth-child(3) { /* Store mockup */
    z-index: 1;
    transform: translateX(160px) rotate(12deg) scale(0.9);
}

.hero-visuals:hover .hero-mockup:nth-child(1) { /* Intro image */
    transform: scale(1.15) translateY(-20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.hero-visuals:hover .hero-mockup:nth-child(2) { /* Rider mockup */
    transform: translateX(-180px) rotate(-15deg) scale(1.0);
    box-shadow: var(--shadow-large);
}
.hero-visuals:hover .hero-mockup:nth-child(3) { /* Store mockup */
    transform: translateX(180px) rotate(15deg) scale(1.0);
    box-shadow: var(--shadow-large);
}

/* Enhanced Stats Section */
.impact-stats-section {
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark-color)); /* Changed gradient */
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* Enhanced How It Works */
.how-it-works-section {
    padding: 5rem 0;
}

.user-flows-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.user-flow-card {
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.user-flow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark-color)); /* Changed gradient */
}

.user-flow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.flow-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.flow-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.flow-header h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.user-flow-card .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light-color);
    border-radius: calc(var(--border-radius) - 4px);
}

.user-flow-card .step img {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    filter: hue-rotate(0deg) saturate(1.2);
}

.user-flow-card .step p {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Enhanced Features Section */
.key-features-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    border: var(--glass-border); /* Use glass border */
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark-color)); /* Changed gradient */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: block;
}

.feature-item h3 { 
    font-size: 1.3rem; 
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light-color);
    line-height: 1.6;
}

/* Enhanced App Preview Section / Onboarding */
.app-preview-section {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 3rem;
    color: var(--text-light-color);
    font-size: 1.2rem;
}

.app-preview-carousel .swiper-slide {
    text-align: center;
    padding: 1rem;
}

.app-preview-carousel .swiper-slide img {
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-large);
    max-height: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.app-preview-carousel .swiper-slide:hover img {
    transform: scale(1.05);
}

.slide-caption {
    padding: 0 1rem;
}

.slide-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.slide-caption p {
    font-size: 1rem;
    color: var(--text-light-color);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
    opacity: 1;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--border-color);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Enhanced Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    border-bottom: 3px solid var(--border-color);
    gap: 1rem;
}

.tab-button {
    background: none;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-light-color);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    border-radius: calc(var(--border-radius) - 4px) calc(var(--border-radius) - 4px) 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: var(--primary-light-color);
    transform: translateY(-2px);
}

.tab-button:hover:not(.active) {
    color: var(--primary-color);
    background: var(--bg-light-color);
    transform: translateY(-1px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content ul {
    list-style: none; /* Can use custom checkmark icons */
    padding-left: 0;
}

.tab-content ul li {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px dashed var(--border-color);
    transition: all 0.3s ease;
}

.tab-content ul li:last-child {
    border-bottom: none;
}

.tab-content ul li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.tab-content ul li:hover {
    padding-left: 1rem;
    color: var(--primary-color);
}

/* Enhanced Testimonials Section - Grid Layout */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    text-align: center;
    border: var(--glass-border); /* Use glass border */
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-light-color);
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-color);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    object-fit: cover;
    border: 4px solid var(--primary-light-color);
}

.testimonial-card p { 
    font-style: italic; 
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light-color);
}

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

.rating { 
    color: #fbbf24; 
    font-size: 1.3rem; 
    margin-bottom: 0;
}

/* Enhanced Why Choose Us Section */
.why-choose-us-section {
    padding: 5rem 0;
}

.value-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-point {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
    transition: all 0.3s ease;
}

.value-point:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: block;
}

.value-point h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-point p {
    color: var(--text-light-color);
    line-height: 1.6;
}

/* Enhanced Security Section */
.security-section {
    padding: 5rem 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.security-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.security-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: block;
}

.security-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.security-item p {
    color: var(--text-light-color);
    line-height: 1.6;
}

/* Enhanced Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4 / 3;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); /* Keep original background */
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Enhanced Blog Section */
.blog-section {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.blog-post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-post-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: var(--primary-light-color);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--primary-dark-color);
}

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

/* Enhanced FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: var(--font-family); /* Apply Urbanist font */
}

.faq-question:hover {
    background: var(--bg-light-color);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-question.active {
    background: var(--primary-light-color);
    color: var(--primary-color);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-light-color);
}

.faq-answer p { 
    padding: 0 2rem 1.5rem 2rem; 
    font-size: 1rem;
    color: var(--text-light-color);
    line-height: 1.7;
    font-family: var(--font-family); /* Apply Urbanist font */
}

/* Enhanced Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Available Cities Section */
.available-cities-section {
    text-align: center;
    padding: 5rem 0;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.cities-grid span {
    background: var(--glass-background); /* Glass effect */
    backdrop-filter: blur(var(--glass-blur)); /* Glass effect */
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--glass-shadow); /* Use glass shadow */
    border: var(--glass-border); /* Use glass border */
    transition: all 0.3s ease;
    color: var(--text-color);
}

.cities-grid span:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-light-color);
    color: var(--primary-color);
}

.request-city p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Enhanced Partner Section */
.partner-section {
    padding: 5rem 0;
    background: var(--bg-dark-color);
    color: white;
}

.partner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.partner-text {
    flex: 2;
}

.partner-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.partner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.partner-logos {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.partner-logos span { /* Placeholder styles */
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Enhanced Final CTA Section */
.final-cta-section {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.final-cta-section .cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(var(--glass-blur)); /* Already has blur */
    background: rgba(255, 255, 255, 0.2); /* Add subtle background for glass */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Add subtle border */
    box-shadow: var(--shadow-large); /* Keep existing shadow */
}

.final-cta-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 800;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

/* Enhanced Footer */
.main-footer {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark-color));
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.app-badges img {
    height: 45px;
    transition: transform 0.3s ease;
}

.app-badges img:hover {
    transform: scale(1.05);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2); /* Glass-like background */
    backdrop-filter: blur(var(--glass-blur)); /* Glass-like blur */
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: white; /* White icons on glass background */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-icons img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    filter: invert(0%); /* Make images their original color */
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Separator line */
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0; /* Remove default paragraph margin */
}

.footer-legal {
    display: flex;
    flex-direction: column; /* Always stack brand and copyright */
    align-items: center;
    gap: 0.5rem; /* Space between brand and copyright */
    margin-bottom: 0; /* Ensure no extra margin below */
}

.footer-brand {
    display: flex;
    flex-direction: column; /* Stack brand name and powered by */
    align-items: center;
    /* Adjust gap below if needed, or rely on flex gap */
}

.footer-brand strong {
    color: white;
    font-size: 1.2rem;
    line-height: 1.2; /* Adjust line height */
    margin-bottom: 0.2rem; /* Add small margin below strong */
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.2; /* Adjust line height */
}

.footer-logo-img {
    height: 40px; /* Adjust as needed */
    width: auto;
    filter: brightness(0) invert(1); /* This makes the logo white */
}

/* Enhanced Floating Chat Button */
.floating-chat-btn {
    display: none;
}

.floating-chat-btn:hover {
    display: none;
}

.floating-chat-btn img {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-content {
        gap: 3rem;
    }

    .hero-mockup {
        width: 45%;
    }

    .partner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .partner-text h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .container {
        padding: 0 15px;
    }

    #main-header {
        padding: 0.8rem 0;
    }

    #main-header nav ul {
        display: none; /* Hide for mobile menu */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95); /* Glass effect for mobile menu */
        backdrop-filter: blur(var(--glass-blur));
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        padding: 1rem 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-top: none;
    }

    #main-header nav ul.active {
        display: flex;
    }

    #main-header nav ul li {
        margin: 0;
        text-align: center;
    }

    #main-header nav ul li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    #mobile-menu-toggle {
        display: block;
    }

    .header-cta {
        display: none; /* Can move this into the mobile menu or keep it based on design */
    }

    .hero-section {
        padding: 100px 0 60px;
        min-height: 100vh;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-visuals {
        max-width: 100%;
        min-height: 400px;
        order: 2;
    }

    .hero-mockup {
        width: 75%; /* Made hero section mobile images larger */
    }

    .hero-mockup:nth-child(1) { /* Intro image */
        transform: scale(1.1);
    }

    .hero-mockup:nth-child(2) { /* Rider mockup */
        transform: translateX(-30%) rotate(-8deg) scale(0.95); /* Adjusted scale */
    }

    .hero-mockup:nth-child(3) { /* Store mockup */
        transform: translateX(30%) rotate(8deg) scale(0.95); /* Adjusted scale */
    }

    .hero-cta-buttons {
        align-items: center;
    }

    .app-download-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .selector-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .selector-btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid, .features-grid, .value-points-grid, .testimonials-grid, .security-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 1.5rem;
    }

    .user-flows-container {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0;
    }

    .tab-button {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }

    .tab-button.active {
        border-bottom-color: transparent;
        border-left-color: var(--primary-color);
    }

    .tab-button:hover:not(.active) {
        color: var(--primary-color);
        background: var(--bg-light-color);
        transform: translateY(-1px);
    }

    .final-cta-section h2 { 
        font-size: 2rem; 
    }

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

    .cta-buttons .btn { 
        width: 80%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .social-icons, .app-badges {
        justify-content: center;
    }

    .hero-action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-action-buttons .btn {
        width: 100%;
        min-width: auto;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }

    .hero-text > p {
        font-size: 1.1rem;
    }

    .trust-badge {
        padding: 0.75rem 1.25rem;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .mini-avatar {
        width: 35px;
        height: 35px;
    }

    .app-download-badges {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }

    .app-download-badges img {
        height: 45px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-icon,
    .value-icon,
    .security-icon {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .tabs-container {
        padding: 2rem 1rem;
    }

    .footer-logo-img { /* Ensure it scales down on smaller screens if needed */
        height: 35px;
    }
}