* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #228B22;
    --black: #000000;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: var(--black);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(34, 139, 34, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(0, 0, 0, 1) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(34, 139, 34, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--green);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(34, 139, 34, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1a6b1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-secondary:hover {
    background-color: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Who We Are */
.who-we-are {
    text-align: center;
}

.who-we-are p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* What We Do */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 139, 34, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--white);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.how-it-works .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--green);
    margin-bottom: 0.5rem;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 1.5rem;
    border-left: 4px solid var(--green);
    background: rgba(34, 139, 34, 0.05);
    border-radius: 5px;
}

.feature h3 {
    color: var(--green);
    margin-bottom: 0.5rem;
}

/* Become a Driver */
.become-driver {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(0, 0, 0, 1) 100%);
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.become-driver .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.become-driver p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Get in Touch */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-details {
    padding: 1rem;
}

.contact-details h3 {
    color: var(--green);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: block;
}

.contact-item a:hover {
    color: var(--green);
}

.contact-item p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--green);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(34, 139, 34, 0.3);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Google Map Section */
.map-section {
    width: 100%;
    max-width: 100% !important;
    padding: 3rem 2rem;
    margin: 0;
    display: block;
    box-sizing: border-box;
}

.map-container {
    max-width: 1200px;
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
    margin: 0 auto;
    display: block;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.map-link .btn {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.map-link .btn:hover {
    background-color: var(--green);
    color: var(--white);
}

/* Download Apps */
.download-apps {
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.download-apps .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.app-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.4);
}

.app-store-img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}

.app-btn:hover .app-store-img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--black);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(34, 139, 34, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--green);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--green);
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(34, 139, 34, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.copyright a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s;
}
.copyright a:hover {
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(34, 139, 34, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .hero-wrapper,
    .section-container {
        padding: 0 1.5rem;
    }

    .how-it-works .section-container,
    .become-driver .section-container,
    .download-apps .section-container {
        padding: 3rem 1.5rem;
    }

    .services-grid,
    .steps,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-details {
        order: 1;
    }

    .contact-form {
        order: 2;
    }

    .map-section {
        padding: 2rem 1.5rem;
    }

    .map-container {
        height: 350px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}