/* Custom Properties */
:root {
    --primary: #2e7d32;     /* Lush Green */
    --primary-light: #60ad5e;
    --primary-dark: #005005;
    --accent: #ffb300;      /* Sunlight Yellow/Orange */
    --accent-glow: rgba(255, 179, 0, 0.4);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);

    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #121212;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background — agro & seeds: field bands, crop greens, golden grain, soil */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a3328;
    background-image:
        repeating-linear-gradient(
            95deg,
            transparent 0,
            transparent 72px,
            rgba(0, 0, 0, 0.04) 72px,
            rgba(0, 0, 0, 0.04) 74px
        ),
        radial-gradient(ellipse 90% 55% at 50% -5%, rgba(180, 220, 255, 0.22) 0%, transparent 42%),
        radial-gradient(circle at 78% 12%, rgba(255, 214, 120, 0.45) 0%, transparent 22%),
        radial-gradient(ellipse 120% 70% at 50% 100%, rgba(62, 39, 18, 0.55) 0%, transparent 50%),
        linear-gradient(
            168deg,
            #1e4d38 0%,
            #2d6a45 14%,
            #3d7f3a 28%,
            #5a9428 42%,
            #7fad2a 54%,
            #a4b82e 66%,
            #c4a84a 78%,
            #7d5c2e 90%,
            #3d2814 100%
        );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.overlay-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        165deg,
        rgba(12, 35, 22, 0.5) 0%,
        rgba(20, 55, 30, 0.35) 45%,
        rgba(35, 28, 12, 0.55) 100%
    );
    z-index: -1;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.1); }
}

/* Particles Container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.leaf-particle {
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2360ad5e"><path d="M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 7,11.5 7,11.5C7,11.5 9,10 17,8Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    animation: floatLeaf linear infinite;
}

/* Wheat / seed grain silhouette */
.seed-particle {
    position: absolute;
    width: 14px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath fill='%23e8c547' d='M12 2c-2 4-4 10-4 16 0 6 2 10 4 14 2-4 4-8 4-14 0-6-2-12-4-16z'/%3E%3Cpath fill='%23c9a227' d='M12 6c-1 3-2 7-2 11 0 5 1 9 2 12 1-3 2-7 2-12 0-4-1-8-2-11z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.45;
    animation: floatSeed linear infinite;
}

@keyframes floatLeaf {
    0% { transform: translateY(-10vh) rotate(0deg) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(110vh) rotate(360deg) translateX(100px); opacity: 0; }
}

@keyframes floatSeed {
    0% { transform: translateY(-8vh) rotate(0deg) translateX(0); opacity: 0; }
    12% { opacity: 0.55; }
    88% { opacity: 0.55; }
    100% { transform: translateY(110vh) rotate(-280deg) translateX(-60px); opacity: 0; }
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 3rem 1.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Hero Content */
.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
}

.company-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #ffffff, #dcedc8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.company-name span {
    font-weight: 400;
    font-size: 2.5rem;
}

.subheading {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.badge-container {
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    animation: subtlePulse 2s infinite;
}

.leaf-icon {
    color: var(--primary-light);
}

@keyframes subtlePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.description {
    max-width: 600px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto;
}

/* Notify Section */
.notify-section {
    width: 100%;
    max-width: 600px;
}

.notify-form {
    width: 100%;
}

.input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(96, 173, 94, 0.2);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.6);
    background: linear-gradient(135deg, #1b5e20, var(--primary));
}

/* Ripple effect container */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple .ripple-element {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background-color: rgba(255, 255, 255, 0.3);
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Info Section */
.info-section {
    width: 100%;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover .icon-box {
    background: var(--accent);
    color: #000;
    transform: rotate(5deg) scale(1.05);
}

.detail-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.detail-text strong {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.detail-text p, .detail-text a {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    word-break: normal;
    overflow-wrap: anywhere;
}

.hover-link {
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.hover-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.hover-link:hover {
    color: var(--accent);
}

.hover-link:hover::after {
    width: 100%;
}

/* Footer */
.site-footer {
    width: 100%;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    margin-top: auto;
    z-index: 1;
}

.tagline {
    font-family: var(--font-heading);
    color: var(--primary-light);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Responsive Design */
@media screen and (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .company-name span {
        font-size: 1.8rem;
    }
    
    .subheading {
        font-size: 1.1rem;
    }

    .input-group {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 1rem;
    }

    .input-group input {
        border-radius: 50px;
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid var(--glass-border);
    }

    .contact-details {
        flex-direction: column;
    }
}
