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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 450px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.25rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #40916c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #40916c;
    transition: width 0.3s ease;
}

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


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(64, 145, 108, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #40916c;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
                url('assets/images/Green Leaf.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 360px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}


/* Ensure high quality images on high DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
                          url('assets/images/Green Leaf.jpg');
    }
    
    .growing-background {
        background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%),
                          url('assets/images/PGF 1.jpg');
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    display: block;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 13.5px 26.25px;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 0.825rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(64, 145, 108, 0.9),
        rgba(82, 183, 136, 0.9),
        rgba(0, 78, 100, 0.9),
        rgba(64, 145, 108, 0.9)
    );
    background-size: 400%;
    filter: blur(5px);
    border-radius: 14px;
    z-index: -1;
    animation: glowing 14s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(64, 145, 108, 0.25);
    box-shadow: 0 15px 40px rgba(64, 145, 108, 0.35);
    border-color: rgba(64, 145, 108, 0.5);
}

.cta-button:hover::before {
    opacity: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/Green Leaf.jpg') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #40916c, #52b788);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(64, 145, 108, 0.3);
    transition: all 0.3s ease;
}

.benefit-icon i,
.benefit-icon .fa-solid {
    display: inline-block !important;
    font-size: 2.2rem !important;
    color: white !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(64, 145, 108, 0.4);
}

.benefit-card h3 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.benefit-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Growing Process Section */
.growing-process-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.growing-background {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%),
                url('assets/images/PGF 1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.growing-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.growing-text {
    max-width: 600px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.growing-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    text-align: center;
}

.growing-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.process-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.process-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.process-feature i {
    font-size: 2rem;
    color: #40916c;
    width: 50px;
    text-align: center;
    text-shadow: 0 0 10px rgba(64, 145, 108, 0.5);
    display: inline-block;
}

.process-feature h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.process-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/Green Leaf.jpg') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-section > .container > p {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-left {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(64, 145, 108, 0.9),
        rgba(82, 183, 136, 0.9),
        rgba(0, 78, 100, 0.9),
        rgba(64, 145, 108, 0.9)
    );
    background-size: 400%;
    filter: blur(5px);
    border-radius: 17px;
    z-index: -1;
    animation: glowing 14s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    z-index: -1;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(64, 145, 108, 0.5);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover::after {
    background: rgba(255, 255, 255, 0.95);
}

.contact-item i {
    font-size: 2rem;
    color: #40916c;
    width: 50px;
    text-align: center;
    display: inline-block;
    text-shadow: 0 0 10px rgba(64, 145, 108, 0.5);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item p {
    color: #555;
    font-weight: 500;
}

.contact-item * {
    text-decoration: none !important;
    position: relative;
    z-index: 2;
}

/* Location Map */
.location-map {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.location-map:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-map h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.location-icon {
    font-size: 2rem;
    color: #40916c;
    width: 50px;
    text-align: center;
    display: inline-block;
    text-shadow: 0 0 10px rgba(64, 145, 108, 0.5);
    margin: 0 auto 1rem;
}

.indiana-map {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.indiana-map:hover {
    transform: scale(1.02);
}

.location-map p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Character counter removed */

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.form-group select {
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #40916c;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #40916c;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.submit-btn {
    background: linear-gradient(135deg, #40916c, #52b788);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.submit-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(97, 167, 15, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: transparent;
    color: white;
    text-align: center;
    padding: 2.25rem 0;
    min-height: 112px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/Green%20Leaf.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5) 0%, rgba(52, 73, 94, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer p {
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        border-top: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 1rem;
    }
    
    .nav-link {
        display: block;
        margin: 0 auto;
        max-width: 200px;
        font-size: 1rem;
    }

    .hero-logo-img {
        height: 200px;
    }


    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .benefits-section h2 {
        font-size: 2.2rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .contact-content {
        gap: 2rem;
        align-items: center;
    }

    .contact-left {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: center;
    }

    .contact-info {
        gap: 1.5rem;
        width: 100%;
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    .contact-item i {
        margin: 0 auto;
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .location-map {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .location-map h3 {
        text-align: center;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .indiana-map {
        max-width: 250px;
    }

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

    .process-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .process-feature {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.8rem;
    }

    .process-feature i {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .growing-background {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero {
        background-attachment: scroll;
    }

    .growing-content {
        padding: 60px 20px;
    }

    .growing-text h2 {
        font-size: 1.8rem;
    }

    .growing-text p {
        font-size: 0.95rem;
    }

    .process-feature {
        padding: 1.2rem;
        gap: 1rem;
    }

    .process-feature i {
        font-size: 1.5rem;
        width: 40px;
    }

    .process-feature h4 {
        font-size: 1rem;
    }

    .process-feature p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-section > .container > p {
        font-size: 1rem;
    }

    .logo-img {
        height: 70px;
        max-width: 350px;
    }
}

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

    .hero-logo-img {
        height: 175px;
    }


    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .benefits-section h2 {
        font-size: 1.8rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-section > .container > p {
        font-size: 0.9rem;
    }

    .contact-item h4 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.8rem;
    }

    .contact-left {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Ensure proper centering for all cards */
    .contact-content {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .contact-item i {
        margin: 0 auto;
        font-size: 2.2rem;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .location-map {
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .location-map h3 {
        text-align: center;
    }

    .location-icon {
        font-size: 2.2rem;
        width: 55px;
        height: 55px;
        margin: 0 auto 1rem;
    }

    .logo-img {
        height: 60px;
        max-width: 300px;
    }

    .growing-background {
        min-height: 70vh;
    }

    .growing-content {
        padding: 40px 15px;
    }

    .growing-text h2 {
        font-size: 1.5rem;
    }

    .growing-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .process-feature {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .process-feature i {
        font-size: 1.3rem;
        width: 30px;
    }

    .process-feature h4 {
        font-size: 0.9rem;
    }

    .process-feature p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .nav-menu {
        top: 60px;
    }
}

/* Extra small mobile devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-logo-img {
        height: 150px;
    }


    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .benefits-section h2 {
        font-size: 1.6rem;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .growing-text h2 {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 55px;
        max-width: 275px;
    }

    .contact-form {
        padding: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .nav-container {
        height: 55px;
        padding: 0 10px;
    }

    .nav-menu {
        top: 55px;
    }

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

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

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

/* Loading animation for form submission */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
