
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo h2 {
    color: #2E7D32;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #2E7D32;
}

.nav-link.cta-button {
    background: #2E7D32;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-link.cta-button:hover {
    background: #1B5E20;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-menu .nav-link:hover {
    background: #f8fffe;
    color: #2E7D32;
}

.dropdown-menu .nav-link.active {
    background: #2E7D32;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: #2E7D32;
    font-size: 1.25rem;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Buttons */
.cta-main {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-main:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Machine Types Section */
.machine-types {
    padding: 5rem 0;
    background: #fff;
}

.machine-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 3rem;
}

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

.machine-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.machine-card:hover {
    transform: translateY(-5px);
}

.machine-card.featured {
    border: 3px solid #2E7D32;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2E7D32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.machine-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.machine-card h3 {
    font-size: 1.5rem;
    color: #1B5E20;
    margin-bottom: 1rem;
}

.machine-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.machine-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.machine-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

.machine-cta {
    background: #f8f9fa;
    color: #2E7D32;
    border: 2px solid #2E7D32;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.machine-cta:hover {
    background: #2E7D32;
    color: white;
}

/* Industries Section */
.industries {
    padding: 5rem 0;
    background: #f8fffe;
}

.industries h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 3rem;
}

.industry-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.industry-slide {
    display: none;
    text-align: center;
    padding: 2rem;
}

.industry-slide.active {
    display: block;
}

.industry-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.industry-slide h3 {
    font-size: 1.8rem;
    color: #1B5E20;
    margin-bottom: 1rem;
}

.carousel-controls {
    text-align: center;
    margin-top: 2rem;
}

.carousel-btn {
    background: #2E7D32;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: #1B5E20;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    color: #1B5E20;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-main {
    background: white;
    color: #2E7D32;
}

.cta-section .cta-main:hover {
    background: #f0f0f0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

/* Form Styles */
.lead-form, .landing-form {
    margin-top: 2rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

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

.form-group.half {
    width: 48%;
    display: inline-block;
    margin-right: 4%;
}

.form-group.half:last-child {
    margin-right: 0;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2E7D32;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn {
    background: #2E7D32;
    color: white;
}

.form-btn:hover {
    background: #1B5E20;
}

.form-btn.secondary {
    background: #f0f0f0;
    color: #333;
}

.form-btn.secondary:hover {
    background: #e0e0e0;
}

/* Landing Page Specific Styles */
.urgency-banner {
    background: #FF5722;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

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

.location-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.2);
}

.location-card.selected {
    border-color: #2E7D32;
    background: white;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.location-card .machine-cta {
    margin-top: auto;
}

.machine-options {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-card:hover {
    border-color: #2E7D32;
    background: #f8fffe;
}

.radio-card input[type="radio"]:checked + .radio-content {
    color: #2E7D32;
}

.radio-card input[type="radio"]:checked {
    accent-color: #2E7D32;
}

.contact-info {
    display: flex;
    gap: 1rem;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #2E7D32;
    color: white;
}

.progress-step.completed {
    background: #4CAF50;
    color: white;
}

.trust-section {
    padding: 3rem 0;
    background: white;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.trust-item i {
    font-size: 2rem;
    color: #2E7D32;
    flex-shrink: 0;
}

.trust-item h4 {
    color: #1B5E20;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1B5E20;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4CAF50;
}

.footer-section p {
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #2E7D32;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

.landing-footer {
    background: #1B5E20;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.landing-footer a {
    color: #4CAF50;
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
    background: #f8fffe;
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 3rem;
}

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

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #1B5E20;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1B5E20;
}

.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2E7D32;
}

.contact-form textarea {
    min-height: 120px;
}

.form-submit-btn {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
}

.form-submit-btn:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.faq-section {
    padding: 5rem 0;
    background: #f8fffe;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #1B5E20;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

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

.schedule-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.schedule-form input,
.schedule-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.schedule-form input:focus,
.schedule-form select:focus {
    outline: none;
    border-color: #2E7D32;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hide the dropdown toggle text in mobile */
    .dropdown-toggle {
        display: none;
    }
    
    /* Show dropdown menu items directly in mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        margin: 0;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block !important;
        padding: 0;
    }
    
    .dropdown-menu .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .landing-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .location-types {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .form-group.half {
        width: 100%;
        margin-right: 0;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .machine-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .landing-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 2rem 1rem;
    }
}
