/* Modern CSS variables for sleek theming */
:root {
    --denim-primary: #1E3A8A;
    --denim-light: #3B82F6;
    --denim-dark: #0F172A;
    
    --nature-primary: #10B981;
    --nature-light: #34D399;
    --nature-dark: #047857;
    
    --bg-main: #FAFAFA;
    --bg-surface: #FFFFFF;
    --bg-alt: #F3F4F6;
    
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Enhancements */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--denim-primary), var(--nature-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 6rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.25rem;
    max-width: 600px;
}

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

.text-center .section-desc {
    margin: 0 auto;
}

/* Navbar - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

.logo a {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--denim-dark);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--nature-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn-primary) {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1.05rem;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--nature-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--denim-primary);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--denim-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(30, 58, 138, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-text {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    padding: 1rem;
}

.btn-text:hover {
    color: var(--nature-primary);
}

/* Modern Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(30, 58, 138, 0.05) 0%, transparent 40%);
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--nature-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-visuals {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 1rem;
    background: white;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg);
}

.hero-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--denim-dark);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--nature-primary);
    font-size: 1.25rem;
}

.top-left {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.bottom-right {
    bottom: 30px;
    right: -30px;
    animation-delay: 2s;
}

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

/* About Bento Section */
.about-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.bento-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

.bento-large .bento-content {
    padding: 3rem;
}

.bento-large h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--denim-dark);
}

.bento-large p {
    font-size: 1.15rem;
}

.bento-large .bento-image {
    width: 100%;
    height: 350px;
}

.bento-large .bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.bento-small {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-small h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.bento-small p {
    color: rgba(255,255,255,0.9);
}

.bento-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.bg-green {
    background: linear-gradient(135deg, var(--nature-primary), var(--nature-dark));
    color: white;
}

.bg-blue {
    background: linear-gradient(135deg, var(--denim-light), var(--denim-primary));
    color: white;
}

/* Products Section */
.products {
    background-color: var(--bg-surface);
}

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

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-btn {
    background: white;
    color: var(--denim-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.product-info p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nature-primary);
    font-weight: 600;
}

/* Process / Infographic */
.bg-light {
    background-color: var(--bg-main);
}

.process-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-wrapper {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-text p {
    font-size: 1.15rem;
}

.contact-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-alt);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.social-card.whatsapp .icon-wrapper {
    background: #25D366;
}

.social-card.instagram .icon-wrapper {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-title {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.social-handle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.external-icon {
    margin-left: auto;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.social-card:hover {
    background: var(--bg-surface);
    box-shadow: var(--shadow-md);
    transform: translateX(-5px);
}

.social-card.whatsapp:hover {
    border-color: #25D366;
}

.social-card.instagram:hover {
    border-color: #bc1888;
}

.social-card:hover .external-icon {
    transform: translateX(5px);
    color: var(--denim-primary);
}

/* Footer */
.footer {
    background: var(--denim-dark);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.footer-brand span {
    color: var(--nature-primary);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-copyright p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-wrapper {
        flex-direction: column;
        padding: 3rem 2rem;
    }
    
    .hero {
        padding-top: 7rem;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-links, .contact-text {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .product-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scrollbar-width: none; /* Firefox */
        -webkit-overflow-scrolling: touch;
    }
    
    .product-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .product-grid .product-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .btn-large {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-text {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .about-bento {
        gap: 0.75rem;
    }
    .bento-card {
        padding: 1rem;
    }
    .bento-large .bento-content {
        padding: 1rem;
    }
    .bento-large h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .bento-large p {
        font-size: 0.85rem;
    }
    .bento-large .bento-image {
        height: 180px;
    }
    .bento-small h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .bento-small p {
        font-size: 0.8rem;
    }
    .bento-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .social-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .social-title {
        font-size: 1rem;
    }
    
    .social-handle {
        font-size: 0.85rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .top-left { top: -10px; left: -10px; }
    .bottom-right { bottom: 10px; right: -10px; }
}
