:root {
    --primary: #8ec23f;
    --accent: #ffb703;
    --dark: #090a0c;
    --light: #fefcfb;
    --sand: #f5f1ed;
    --gray: #888888;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Noto Sans Tamil', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.5;
}

#v5-ambient-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.v5-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.v5-accent {
    color: var(--primary);
}

/* Nav v5 */
.v5-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.v5-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.v5-logo-official {
    width: 60px;
    height: 60px;
    background: url('https://lh3.googleusercontent.com/ogw/AF2bZyjsVs7hK1MBljnminwzhAuFhX49kg2kBM-5FkDmNjMU_w=s512-c-mo');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 10px rgba(142, 194, 63, 0.4));
}

.v5-nav-links {
    display: flex;
    gap: 4rem;
}

.v5-nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

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

.v5-nav-action {
    display: flex;
    align-items: center;
}

.v5-btn-pill {
    background: var(--primary);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 10px 20px rgba(142, 194, 63, 0.2);
    white-space: nowrap;
}

.v5-btn-ghost {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.v5-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero v5 */
.v5-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.v5-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.v5-badge-glow {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.v5-hero-text h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    font-weight: 900;
}

.v5-hero-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 480px;
}

.v5-hero-cta {
    display: flex;
    gap: 2.5rem;
}

.v5-main-btn {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 1.5rem 3.5rem;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v5-sec-btn {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 3.5rem;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.3s ease;
}

.v5-sec-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.v5-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.v5-floating-dish {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
    z-index: 2;
    position: relative;
}

.v5-hero-aura {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(142, 194, 63, 0.1), transparent 70%);
    z-index: 1;
}

/* Benefits v5 */
.v5-benefits {
    padding: 15rem 4rem;
    background: var(--sand);
    color: var(--dark);
}

.v5-section-title {
    text-align: center;
    margin-bottom: 8rem;
}

.v5-section-title h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    line-height: 1;
}

.v5-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.v5-benefit-card {
    text-align: center;
    padding: 4rem 2rem;
}

.v5-icon-box {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.v5-benefit-card h3 {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.v5-benefit-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Logistics v5 */
.v5-logistics {
    padding: 15rem 4rem;
}

.v5-logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.v5-bike-img {
    width: 100%;
    max-width: 650px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    transform: rotate(-3deg);
}

.v5-logistics-text h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 2.5rem;
}

.v5-logistics-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 480px;
}

.v5-stat-row {
    display: flex;
    gap: 4rem;
}

.v5-stat {
    display: flex;
    flex-direction: column;
}

.v5-num, .v5-range {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    font-weight: 900;
}

.v5-lab {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}

/* Contact v5 */
.v5-contact {
    padding: 10rem 4rem;
    background: var(--light);
    color: var(--dark);
}

.v5-contact-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1;
    margin-bottom: 4rem;
}

.v5-contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.v5-contact-col label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #666;
    margin-bottom: 1.5rem;
}

.v5-contact-col a {
    text-decoration: none;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    transition: color 0.3s ease;
}

.v5-contact-col a:hover {
    color: var(--primary);
}

.v5-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5rem;
    border-top: 1px dotted rgba(0,0,0,0.1);
}

.v5-footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.v5-footer-bottom p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #888;
}

/* Responsive v5 */
@media (max-width: 1024px) {
    .v5-nav { padding: 2rem; }
    .v5-container { padding: 0 2rem; }
    .v5-nav-links { gap: 2rem; }
}

@media (max-width: 768px) {
    .v5-nav {
        background: rgba(9, 10, 12, 0.9);
        backdrop-filter: blur(10px);
        padding: 1rem 1.5rem;
    }

    .v5-logo-official { width: 40px; height: 40px; }
    .v5-logo { font-size: 1.2rem; gap: 0.5rem; }

    .v5-nav-links { display: none; }
    
    .v5-nav-action {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }

    .v5-btn-ghost {
        margin-right: 0;
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }

    .v5-btn-pill {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }

    .v5-hero { padding-top: 120px; text-align: center; }
    .v5-hero-grid { grid-template-columns: 1fr; gap: 4rem; }
    .v5-hero-text h1 { font-size: 3.5rem; margin: 0 auto 2rem; }
    .v5-hero-text p { margin: 0 auto 4rem; }
    .v5-hero-cta { flex-direction: column; gap: 1.5rem; align-items: stretch; }
    .v5-main-btn, .v5-sec-btn { padding: 1.2rem 2rem; }

    .v5-benefits, .v5-logistics, .v5-contact { padding: 8rem 1.5rem; }
    .v5-benefit-grid, .v5-logistics-grid, .v5-contact-links {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .v5-section-title { margin-bottom: 4rem; }
    .v5-section-title h2 { font-size: 2.5rem; }

    .v5-bike-img { transform: rotate(0deg); }
    .v5-logistics-text { text-align: center; }
    .v5-logistics-text h2 { font-size: 2.5rem; }
    .v5-logistics-text p { margin: 0 auto 3rem; }
    .v5-stat-row { justify-content: center; gap: 2rem; }

    .v5-contact-header h2 { font-size: 2rem; text-align: center; }
    .v5-contact-col { text-align: center; }
    .v5-contact-col a { font-size: 1.8rem; }

    .v5-footer-bottom { 
        flex-direction: column; 
        gap: 2rem; 
        text-align: center;
        padding-top: 3rem;
    }
}

@media (max-width: 480px) {
    .v5-hero-text h1 { font-size: 2.8rem; }
    .v5-btn-ghost, .v5-btn-pill { width: 100%; text-align: center; }
    .v5-nav-action { width: auto; max-width: 155px; }
}

/* Food Rain Effect */
#v5-food-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 500;
    overflow: hidden;
}

.v5-falling-food {
    position: absolute;
    font-size: 2rem;
    user-select: none;
    opacity: 0.8;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}
