/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #08872e;
    --primary-dark: #066a22;
    --success: #66BB6A;
    --white: #FFFFFF;
    --black: #000000;
    --text: #1C1C1E;
    --text-light: #6A6A6A;
    --background: #F9F9F9;
    --card: #FFFFFF;
    --border: #E5E5E5;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 200px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background-image: url('assets/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(8, 135, 46, 0.4) 100%);
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -50px) scale(1.1); }
}

.charging-animation {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.charge-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s ease-out infinite;
}

.charge-pulse.delay-1 {
    animation-delay: 0.5s;
}

.charge-pulse.delay-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ev-car-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-body {
    animation: carGlow 2s ease-in-out infinite;
}

@keyframes carGlow {
    0%, 100% {
        opacity: 0.9;
        filter: drop-shadow(0 0 5px rgba(8, 135, 46, 0.5));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(8, 135, 46, 0.8));
    }
}

.wheel {
    animation: wheelRotate 3s linear infinite;
    transform-origin: center;
}

@keyframes wheelRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.charging-port {
    animation: portPulse 1.5s ease-in-out infinite;
}

@keyframes portPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.charging-indicator {
    animation: indicatorBlink 1s ease-in-out infinite;
}

@keyframes indicatorBlink {
    0%, 100% {
        opacity: 1;
        r: 3;
    }
    50% {
        opacity: 0.3;
        r: 4;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.title-line {
    display: block;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(8, 135, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 135, 46, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

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

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-section {
    position: absolute;
    bottom: 150px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.partners-scroll {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.partners-track {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 70px;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.partner-logo svg,
.partner-logo img {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--background);
}

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

.highlight-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(8, 135, 46, 0.1);
    border-color: var(--primary);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.highlight-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(8, 135, 46, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: var(--border);
    margin-top: 30px;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -10px;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Drivers Section */
.drivers {
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.02) 0%, rgba(8, 135, 46, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.drivers::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.drivers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.drivers-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features-list {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(8, 135, 46, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(8, 135, 46, 0.15);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(8, 135, 46, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.1) 0%, rgba(8, 135, 46, 0.15) 100%);
    border-radius: 14px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(8, 135, 46, 0.8) 100%);
    color: white;
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.drivers-visual {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    position: relative;
    background: var(--background);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    transition: transform 0.3s ease;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.phone-mockup:hover {
    transform: translateY(-10px) scale(1.02);
}

.phone-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: contain;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: var(--background);
}

.app-header {
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.app-status-bar {
    height: 20px;
    background: var(--background);
    border-radius: 8px 8px 0 0;
}

.app-content {
    padding: 2rem;
    height: calc(100% - 80px);
}

.map-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    border-radius: 16px;
    position: relative;
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    border: 3px solid var(--primary);
    animation: pulse 2s ease-out infinite;
}

.map-marker:nth-child(1) {
    top: 30%;
    left: 40%;
}

.map-marker:nth-child(2) {
    top: 60%;
    left: 60%;
    animation-delay: 0.5s;
}

.map-marker:nth-child(3) {
    top: 45%;
    left: 25%;
    animation-delay: 1s;
}

/* Owners Section */
.owners {
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.02) 0%, rgba(8, 135, 46, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.owners::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.owners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.owners-text {
    animation: fadeInLeft 0.8s ease-out;
}

.owners-visual {
    animation: fadeInRight 0.8s ease-out;
}

.dashboard-mockup {
    background: var(--background);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    margin: 0 auto;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.dashboard-mockup:hover {
    transform: translateY(-10px) scale(1.02);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: contain;
}

.dashboard-screen {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-header {
    background: var(--gradient);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.dashboard-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.dashboard-content {
    padding: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 150px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
}

/* Screenshots Section */
.screenshots {
    background: var(--background);
}

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

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

.screenshot-mockup {
    background: var(--card);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.screenshot-screen {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.screenshot-content {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.8;
}

.map-view {
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
}

.charging-view {
    background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
}

.wallet-view {
    background: linear-gradient(135deg, var(--primary) 0%, #4CAF50 100%);
}

.screenshot-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.screenshot-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Download Section */
.download-section {
    background: var(--gradient);
    color: var(--white);
    padding: 6rem 0;
}

.download-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.download-text {
    flex: 1;
    text-align: left;
}

.download-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.download-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.download-btn-image {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.download-btn-image:hover {
    transform: translateY(-4px) scale(1.05);
}

.store-badge {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.download-btn-image:hover .store-badge {
    filter: brightness(1.1);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.download-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-platform {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.download-note {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

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

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.scroll-to-top {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(8, 135, 46, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-to-top:not(.hidden) {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(8, 135, 46, 0.4);
}

.scroll-to-top.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }
    .hero-title {
        font-size: 3rem;
    }

    .drivers-content,
    .owners-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }


    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 50px;
        margin: 1rem auto;
    }

    .step-connector::after {
        content: '↓';
        right: -8px;
        top: auto;
        bottom: -10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .charging-animation {
        display: none;
    }

    .drivers-content {
        gap: 3rem;
    }

    .feature-item {
        padding: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .hero {
        padding-bottom: 180px;
    }

    .partners-section {
        bottom: 70px;
        padding: 1.25rem 0;
    }

    .partner-logo {
        min-width: 110px;
        height: 55px;
        padding: 0.625rem 1.25rem;
    }

    .partner-logo svg,
    .partner-logo img {
        max-width: 100px;
        max-height: 35px;
    }

    .partners-track {
        gap: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .form-group {
        flex-direction: column;
    }

    .form-group input,
    .form-group select {
        width: 100%;
    }

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

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

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

    .download-subtitle {
        font-size: 1rem;
    }

    .download-buttons {
        gap: 1rem;
        justify-content: center;
    }

    .store-badge {
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

