@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #0b3d30;      /* Deep Forest Green */
    --color-primary-light: #166e57;/* Vibrant Leaf Green */
    --color-primary-dark: #072a21; /* Rich Dark Green */
    --color-accent: #f5a623;       /* Golden Amber Sun */
    --color-accent-hover: #d98f16;
    --color-bg-dark: #090e0c;      /* Earthy Dark Olive-Grey */
    --color-bg-card: rgba(15, 30, 24, 0.65); /* Glassmorphism Green-Dark */
    --color-bg-light: #f7faf8;     /* Off-white warm background */
    --color-text-light: #ffffff;
    --color-text-dark: #1f2d29;
    --color-text-muted: #738a83;
    --color-border-glass: rgba(255, 255, 255, 0.08);
    --color-border-glass-light: rgba(11, 61, 48, 0.1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--color-accent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-light .section-subtitle {
    color: #4a5c56;
}

/* Glassmorphism card utility */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    gap: 10px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    border: 1px solid var(--color-border-glass);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-text-light);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 999;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(9, 14, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-glass);
    height: 70px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(22, 110, 87, 0.4);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, #88cfa9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    padding: 5px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-normal);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Hamburger Trigger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* Hamburger active states */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(15, 61, 48, 0.2) 0%, rgba(9, 14, 12, 1) 90%);
}

/* Geometric background glows */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 110, 87, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(22, 110, 87, 0.2);
    border: 1px solid rgba(22, 110, 87, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #88cfa9;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge svg {
    margin-right: 8px;
    fill: currentColor;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-accent), #fff8ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--color-border-glass);
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating 3D Device Showcase */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-out forwards;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    padding: 20px;
    border: 1px solid var(--color-border-glass);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.hero-image {
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform var(--transition-slow);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

/* Floating badge info on image */
.hero-floating-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: rgba(9, 14, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-badge .icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-badge .info h5 {
    font-size: 1rem;
    font-weight: 700;
}

.hero-floating-badge .info p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(22, 110, 87, 0.2), rgba(245, 166, 35, 0.1));
    border: 1px solid rgba(22, 110, 87, 0.3);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    color: #000;
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(22, 110, 87, 0.3);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.benefit-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES / SOLUTIONS SECTION
   ========================================================================== */
.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* High-end glass cards with grid layout spanning */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    font-weight: 700;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    transition: var(--transition-normal);
}

.service-card:hover .service-number {
    color: rgba(245, 166, 35, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.service-features li svg {
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
    flex-shrink: 0;
}

.service-cta {
    margin-top: auto;
    width: 100%;
}

/* Spanning logic to make grid beautiful */
.services-grid > .service-card:nth-child(4),
.services-grid > .service-card:nth-child(5) {
    grid-column: span 1.5; /* 2 items on the bottom row */
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid > .service-card:nth-child(4),
    .services-grid > .service-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SHOWCASE SECTION (VENDING MACHINES GALLERY)
   ========================================================================== */
.showcase-slider-wrapper {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.showcase-track {
    display: flex;
    transition: transform var(--transition-slow);
    gap: 30px;
}

.showcase-slide {
    min-width: calc(50% - 15px);
    flex-shrink: 0;
}

.machine-display-card {
    background: #0f1c16;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-glass);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 420px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.machine-display-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
}

.machine-visual {
    position: relative;
    overflow: hidden;
}

.machine-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.machine-display-card:hover .machine-visual img {
    transform: scale(1.05);
}

.machine-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: #000;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.machine-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.machine-details h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.machine-tagline {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.machine-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.machine-specs {
    list-style: none;
    margin-bottom: 30px;
}

.machine-specs li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    padding-bottom: 6px;
}

.machine-specs li span {
    color: var(--color-text-muted);
}

.showcase-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.slider-btn:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background: var(--color-accent);
    width: 25px;
    border-radius: 5px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDIONS)
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(22, 110, 87, 0.4);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text-muted);
    transition: transform var(--transition-normal);
}

.faq-item.active {
    background: rgba(22, 110, 87, 0.08);
    border-color: var(--color-primary-light);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    fill: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
    padding: 0 30px 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(22, 110, 87, 0.2);
    border: 1px solid rgba(22, 110, 87, 0.4);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.info-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-details p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Form Styles */
.form-container {
    position: relative;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-sm);
    padding: 15px 20px;
    transition: var(--transition-normal);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Spinner & Success State overlays */
.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 14, 12, 0.9);
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity var(--transition-normal);
}

.form-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(22, 110, 87, 0.2);
    border-top: 4px solid var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.success-message {
    text-align: center;
    padding: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.success-message h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.success-message p {
    color: var(--color-text-muted);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    border-top: 1px solid var(--color-border-glass);
    padding: 80px 0 30px;
    background: #060908;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo-container {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-btn:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   RESPONSIVENESS (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    .hero-image-wrapper {
        margin-top: 20px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation Drawer Menu */
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(9, 14, 12, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: right var(--transition-normal);
        border-left: 1px solid var(--color-border-glass);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-actions {
        display: none; /* Hide secondary desktop button in mobile nav */
    }
    
    /* Slides mobile */
    .showcase-slide {
        min-width: 100%;
    }
    .machine-display-card {
        grid-template-columns: 1fr;
        height: auto;
    }
    .machine-visual {
        height: 250px;
    }
    .machine-details {
        padding: 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}
