/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    overflow-x: hidden;
    position: relative;
}

/* Cucumber Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 187, 106, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(102, 187, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Floating Cucumber Elements */
.cucumber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.cucumber-bg-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float-bg 8s ease-in-out infinite;
}

.cucumber-bg-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cucumber-bg-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.cucumber-bg-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.cucumber-bg-element:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.cucumber-bg-element:nth-child(5) {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.cucumber-bg-element:nth-child(6) {
    top: 40%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float-bg {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 100%;
}


/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 2rem;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(76, 175, 80, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 50px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #2d5a2d;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: white;
    background: rgba(76, 175, 80, 0.8);
    transform: translateY(-1px);
}

/* Main Content */
main {
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
    padding-bottom: 2rem;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding: 6rem 0 6rem 0;
    margin-bottom: 4rem;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4caf50;
    border: 2px solid #4caf50;
}

.btn-secondary:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.cucumber-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.cucumber-slice {
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.slice-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.slice-2 {
    top: 60%;
    left: 70%;
    animation-delay: 0.5s;
}

.slice-3 {
    top: 80%;
    left: 30%;
    animation-delay: 1s;
}

.slice-4 {
    top: 40%;
    left: 80%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-20px) rotate(15deg) scale(1.1);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d5a2d;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Roadmap */
.roadmap-container {
    margin-top: 3rem;
    position: relative;
    padding: 2rem 0;
}

.roadmap-steps {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 1rem;
    position: relative;
    width: 100%;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    min-width: 0;
}

.roadmap-step {
    position: relative;
}

.roadmap-step:nth-child(odd) .step-number {
    transform: translateY(-20px);
}

.roadmap-step:nth-child(even) .step-number {
    transform: translateY(20px);
}

.roadmap-step:nth-child(odd) .step-content {
    transform: translateY(-20px);
}

.roadmap-step:nth-child(even) .step-content {
    transform: translateY(20px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.step-content {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 180px;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d5a2d;
}

.step-content p {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.85rem;
}

/* Contact Section */
.contact-text {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

#contact {
    margin-bottom: 4rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 2rem 0;
    margin-top: 10rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 10;
    clear: both;
    min-height: 200px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 11;
    min-height: 120px;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-label {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    opacity: 0.9;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

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

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-text:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        min-height: 70vh;
        padding: 4rem 0 6rem 0;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .header {
        padding: 0.5rem 1rem;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        max-width: 400px;
    }
    
    .nav {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .roadmap-container {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .roadmap-steps {
        gap: 0;
        padding: 0 0.5rem;
    }

    .roadmap-step {
        min-width: 0;
    }



    .roadmap-step:nth-child(odd) .step-number,
    .roadmap-step:nth-child(even) .step-number {
        transform: translateY(0);
    }

    .roadmap-step:nth-child(odd) .step-content,
    .roadmap-step:nth-child(even) .step-content {
        transform: translateY(0);
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .step-content {
        padding: 1rem;
        max-width: 160px;
    }

    .footer {
        padding: 2rem 0;
        margin-top: 8rem;
        min-height: 180px;
    }

    #contact {
        margin-bottom: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
        min-height: 140px;
    }
    
    .social-section {
        align-items: center;
        gap: 1rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .footer-text {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }

    .cucumber-animation {
        width: 250px;
        height: 250px;
    }

    .cucumber-slice {
        width: 50px;
        height: 50px;
        font-size: 40px;
    }

    .popup-content {
        width: 95%;
        max-width: 350px;
        margin: 1rem;
    }

    .popup-header {
        padding: 1.2rem;
    }

    .popup-header h3 {
        font-size: 1.3rem;
    }

    .popup-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 3rem 0 5rem 0;
        min-height: 60vh;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 250px;
    }

    .header {
        padding: 0.4rem 0.8rem;
        top: 5px;
        width: calc(100% - 1.6rem);
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .cucumber-animation {
        width: 200px;
        height: 200px;
    }

    .cucumber-slice {
        width: 40px;
        height: 40px;
        font-size: 35px;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .roadmap-container {
        margin-top: 1.5rem;
        padding: 1rem 0;
    }

    .roadmap-steps {
        gap: 0;
        padding: 0 0.25rem;
    }

    .roadmap-step {
        min-width: 0;
    }



    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .step-content {
        padding: 0.8rem;
        max-width: 140px;
    }

    .step-content h3 {
        font-size: 0.9rem;
    }

    .step-content p {
        font-size: 0.75rem;
    }

    .popup-content {
        width: 98%;
        max-width: 300px;
        margin: 0.5rem;
    }

    .popup-header {
        padding: 1rem;
    }

    .popup-header h3 {
        font-size: 1.2rem;
    }

    .popup-body {
        padding: 1.2rem;
    }

    .footer {
        padding: 1.5rem 0;
        margin-top: 6rem;
        min-height: 160px;
    }

    #contact {
        margin-bottom: 2.5rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 10px;
        min-height: 120px;
    }

    .social-section {
        gap: 0.75rem;
    }

    .social-icons {
        gap: 1.25rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .footer-text {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}

/* Coming Soon Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.popup-header {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 2rem;
    text-align: center;
}

.popup-body p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.6;
}

.popup-body p:last-child {
    margin-bottom: 0;
    color: #4caf50;
    font-weight: 500;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

