/* Custom styles for VendingExchange progress bar */
.web-progress-bar, .w-bar-magic {
    background: var(--primary);
    color: var(--light);
    /* font-weight: 600;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 1rem;
    text-align: center;
    transition: width 0.4s var(--transition);
    margin-bottom: 1.2em;
    letter-spacing: 0.5px; */
}

/* .web-progress-bar[role="progressbar"], .w-bar-magic[role="progressbar"] {
    min-width: 40px;
    max-width: 100%;
    display: block;
} */
/* Fix for .webbtn-primary typo and ensure text is visible on white */
.webbtn-primary.web-button2-btn, .web-btn.webbtn-primary, .webbtn-primary {
    /* color: var(--primary-dark) !important;
    background: var(--light) !important;
    border: 2px solid var(--primary-dark);
    font-weight: 600; */
    
}
.web-progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
   background-color: var(--primary) !important;
}

.webbtn-primary.web-button2-btn.isSelected, .web-btn.webbtn-primary.isSelected, .webbtn-primary.isSelected {
    /* color: var(--light) !important;
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark); */
}
/* Custom styles for VendingExchange radio button labels */
.web-btn.web-btn-primary, .web-btn.web-button2-btn {
    display: inline-flex;
    align-items: center;
    min-width: 130px;
    padding: 0.75rem 2.2rem !important;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--primary-dark);
    /* background: var(--light) !important; */
    color: var(--primary-dark) !important;
    box-shadow: var(--box-shadow);
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 0.5em;
    margin-right: 0.5em;
    position: relative;
}

.web-btn.web-btn-primary.isSelected, .web-btn.web-button2-btn.isSelected {
    background: var(--primary-dark) !important;
    color: var(--light) !important;
    border-color: var(--primary-dark);
}

.web-btn-label {
    display: inline-block;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.web-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
/* Custom styles for VendingExchange navigation buttons */
.web-btn, .web-btn-dark, .web-btn.previous, .web-btn-dark.previous {
    min-width: 130px;
    padding: 0.75rem 2.2rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    background: var(--primary-dark) !important;
    color: var(--light) !important;
    box-shadow: var(--box-shadow);
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.web-btn:hover, .web-btn-dark:hover, .web-btn.previous:hover, .web-btn-dark.previous:hover {
    background: var(--primary) !important;
    color: var(--light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
/* VendingExchange Embedded Form/Button Customization */
#ve-form-magic button, #ve-form button, .ve-magic-btn, .ve-magic-form button, .ve-magic-form input[type="submit"] {
    background: var(--primary) !important;
    color: var(--light) !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 0.75em 2em !important;
    box-shadow: var(--box-shadow) !important;
    transition: var(--transition) !important;
    cursor: pointer !important;
}

#ve-form-magic button:hover, #ve-form button:hover, .ve-magic-btn:hover, .ve-magic-form button:hover, .ve-magic-form input[type="submit"]:hover {
    background: var(--primary-dark) !important;
    color: var(--light) !important;
}

#ve-form-magic input, #ve-form input, .ve-magic-form input, .ve-magic-form textarea, .ve-magic-form select {
    border-radius: 6px !important;
    border: 1px solid var(--mid-gray) !important;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
    font-size: 1rem !important;
    padding: 0.5em 1em !important;
    background: var(--light) !important;
    color: var(--dark) !important;
    margin-bottom: 1em !important;
}

#ve-form-magic, #ve-form, .ve-magic-form {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
    color: var(--dark) !important;
}
/* Snackspur LLC - Modern, catchy, and SEO-optimized styles */
:root {
    --primary: #ff9800;
    --primary-dark: #e65100;
    --primary-light: #ffe0b2;
    --secondary: #fff3e0;
    --dark: #222;
    --light: #fff;
    --light-gray: #f9fafb;
    --mid-gray: #e0e0e0;
    --box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
}
header {
    background: var(--light);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1.5rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}
.hero {
    background: linear-gradient(120deg, var(--primary) 0%, #ffc107 100%);
    color: var(--light);
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: 10%;
}

.hero-image {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cta-btn {
    background: var(--light);
    color: var(--primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.cta-btn-light {
    background: var(--light);
    color: var(--primary);
}

.cta-btn-light:hover {
    background: var(--light);
    color: var(--primary-dark);
}

.machine-cta {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.machine-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

#about, #services, #machines, #testimonials, #faq, #contact {
    background: var(--light);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    margin-bottom: 4rem;
    padding: 3rem 2rem;
}

/* About section */
.about-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-image {
    flex: 1;
    max-width: 40%;
}

.about-content {
    flex: 1.5;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.rounded-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    background: var(--secondary);
    border-radius: 10px;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}
/* Services section */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.service-item {
    flex: 1 1 220px;
    background: var(--secondary);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    transition: var(--transition);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    font-size: 0.95rem;
}

/* Machines section */
.machines-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.machine-item {
    flex: 1 1 300px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.machine-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.machine-image {
    width: 100%;
    height: 70%;
    /* object-fit: cover; */
    background: #fff;
}

.machine-item h3 {
    color: var(--primary-dark);
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
}

.machine-item p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
}

/* How It Works section */
.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    background: var(--light);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: var(--box-shadow);
    flex: 1 1 200px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    max-width: 250px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 1rem 0 1.5rem;
}

.process-step h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-connector {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 0 0.5rem;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Why Choose Us section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--primary);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    height: 60px;
    width: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials section */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-item {
    flex: 1 1 300px;
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote-mark {
    font-size: 2.5rem;
    color: var(--primary-light);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    margin: 2rem 0;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* FAQ section */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background: var(--light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}
/* Contact section */
.contact-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1.5;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    background: var(--primary-light);
    color: var(--primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1.5rem;
}

.contact-item h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

input, textarea {
    padding: 1rem;
    border: 1px solid var(--mid-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

button[type="submit"] {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: 0.5rem;
}

button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#form-message {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 1rem;
    border-radius: 8px;
    display: none;
}
/* CTA Banner section */
#cta-banner {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

#cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

#cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer section */
footer {
    background: var(--secondary);
    color: var(--dark);
    font-size: 1rem;
    padding: 4rem 2rem 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: var(--primary-dark);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
/* Media Queries */
@media (max-width: 1024px) {
    .hero-content {
        margin-left: 5%;
    }
    
    .about-container,
    .contact-container {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 101;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 100;
        padding: 4rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero {
        flex-direction: column;
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .hero-image {
        order: 1;
        margin: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 0 auto 2rem;
    }
    
    section {
        padding: 0 1rem;
        margin: 3rem auto;
    }
    
    #about, #services, #how-it-works, #machines, #testimonials, #faq, #contact {
        padding: 2rem 1.5rem;
    }
    
    .process-container {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .process-connector {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

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

.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Add scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--light);
    border-radius: 50%;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { top: 10px; opacity: 1; }
    70% { top: 25px; opacity: 0.7; }
    100% { top: 10px; opacity: 1; }
}

/* No scroll class */
.no-scroll {
    overflow: hidden;
}

@media (max-width: 480px) {
    .services-list,
    .machines-container,
    .testimonials-container {
        flex-direction: column;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}
