:root {
    --primary: #76B947;
    --primary-dark: #5da035;
    --secondary: #FF9F0A;
    --dark: #1F2937;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --gray: #6B7280;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.section {
    padding: 6rem 0;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(118, 185, 71, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo .dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn-primary) {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(118, 185, 71, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid #E5E7EB;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Composition */
.hero-composition {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(118, 185, 71, 0.2), rgba(255, 159, 10, 0.1));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-bounce 8s infinite ease-in-out;
    z-index: 1;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1F2937;
    border-radius: 40px;
    border: 8px solid #374151;
    position: relative;
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #F3F4F6;
    position: relative;
    overflow: hidden;
}

.app-header-sm {
    background: var(--primary);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.map-view {
    height: 350px;
    background: #E5E7EB;
    position: relative;
    overflow: hidden;
}

.route-line {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 4px;
    background: var(--primary);
    transform: rotate(-15deg);
    border-radius: 2px;
}

.drone-marker {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: move-drone 4s infinite linear;
}

.loc-marker {
    position: absolute;
    top: 55%;
    right: 20%;
    color: var(--secondary);
    font-size: 1.5rem;
}

.delivery-card-sm {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.driver-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.driver-info b {
    display: block;
    font-size: 0.9rem;
}

.driver-info small {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
}

.float-item {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 6;
    object-fit: cover;
}

.food-1 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 0;
    animation: float 5s ease-in-out infinite;
}

.food-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: -20px;
    animation: float 6s ease-in-out infinite 1s;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 7;
}

.glass-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.glass-card span {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
}

.glass-card strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.stat-card-1 {
    top: 20%;
    left: -40px;
    animation: float 4s ease-in-out infinite 0.5s;
}

.stat-card-2 {
    bottom: 30%;
    right: -30px;
    animation: float 4s ease-in-out infinite 1.5s;
}

.floating-slow {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes blob-bounce {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: scale(1);
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1.05);
    }
}

@keyframes move-drone {
    0% {
        left: 20%;
        top: 40%;
    }

    50% {
        left: 50%;
        top: 48%;
    }

    100% {
        left: 20%;
        top: 40%;
    }
}

/* Benefits */
.benefits {
    background: white;
}

.section-header {
    margin-bottom: 4rem;
}

.subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid #F3F4F6;
}

.card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.green {
    background: rgba(118, 185, 71, 0.1);
    color: var(--primary);
}

.orange {
    background: rgba(255, 159, 10, 0.1);
    color: var(--secondary);
}

.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.red {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14B8A6;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    background: #F0FDF4;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 10px rgba(118, 185, 71, 0.2);
}

.step-line {
    flex: 1;
    height: 2px;
    background: #D1D5DB;
    margin-top: 30px;
}

/* App Features */
.app-features {
    overflow: hidden;
}

.row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.col-6 {
    flex: 1;
}

.align-center {
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--dark);
    border-radius: 40px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 4px solid #374151;
}

.screen {
    background: #F3F4F6;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-header {
    background: var(--primary);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    position: relative;
}

.notch {
    width: 100px;
    height: 20px;
    background: var(--dark);
    position: absolute;
    top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.app-body {
    padding: 1rem;
}

.map-placeholder {
    height: 200px;
    background: #E5E7EB;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    margin-bottom: 1rem;
}

.order-card {
    background: white;
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.food-icon {
    font-size: 2rem;
}

.order-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price {
    font-weight: 700;
    color: var(--primary);
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Vision */
.vision {
    background: var(--dark);
    color: white;
    position: relative;
    padding: 8rem 0;
}

.vision-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(118, 185, 71, 0.2), transparent 70%);
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.vision h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vision .lead {
    font-size: 1.5rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.vision p {
    color: #9CA3AF;
}

/* About */
.image-stack {
    position: relative;
    height: 400px;
}

.img-1,
.img-2 {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.img-1 {
    width: 80%;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-2 {
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 5px solid white;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    padding-bottom: 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cta-card {
    padding: 3rem;
    border-radius: var(--radius);
    color: white;
    text-align: center;
}

.partner {
    background: linear-gradient(135deg, #1F2937, #374151);
}

.rider {
    background: linear-gradient(135deg, var(--primary), #5da035);
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Download */
.download {
    padding: 6rem 0;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.store-btn {
    display: flex;
    align-items: center;
    background: var(--dark);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.store-btn:hover {
    transform: scale(1.05);
}

.store-btn i {
    font-size: 2rem;
    margin-right: 1rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text span:first-child {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.store-name {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    text-align: center;
    color: #6B7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-composition {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        overflow: visible;
    }

    .hero-composition {
        transform: scale(0.7);
        height: 500px;
        margin-top: -50px;
        width: 100%;
    }

    .blob-bg {
        width: 350px;
        height: 350px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .grid-3,
    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .row {
        flex-direction: column;
        gap: 3rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step-line {
        display: none;
    }

    .image-stack {
        height: 300px;
        margin-top: 2rem;
    }
}
/* Form Styles */
.page-header {
    background: var(--dark);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.form-container {
    max-width: 800px;
    margin: -3rem auto 4rem;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.upload-box {
    border: 2px dashed #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-box:hover {
    border-color: var(--primary);
    background: #F9FAFB;
}

.upload-box i {
    font-size: 2rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.upload-box p {
    font-size: 0.9rem;
    color: var(--gray);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-pending {
    background: #FEF3C7;
    color: #D97706;
}

.status-success {
    background: #D1FAE5;
    color: #059669;
}

.status-error {
    background: #FEE2E2;
    color: #DC2626;
}


/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-control {
    padding: 0.8rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(118, 185, 71, 0.1);
}

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

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
