/*
Theme Name: Atacama Aceitunas
Author: Antigravity
Version: 1.0
Description: Custom theme for Atacama Aceitunas
*/

:root {
    /* Color Palette - Premium & Earthy */
    --color-primary: #2C3E25;
    /* Darker, richer olive */
    --color-primary-light: #4A633F;
    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #B59020;
    --color-bg: #FDFBF7;
    /* Warm white */
    --color-bg-alt: #F3F0EB;
    --color-text: #2D2D2D;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-black: #0F0F0F;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*,
*::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);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img,
video {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 1px solid var(--color-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover {
    color: var(--color-secondary);
}

.btn:hover::after {
    height: 100%;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section-title span {
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color: var(--color-secondary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition-smooth);
    background-color: transparent;
    /* Transparent initially */
}

header.scrolled {
    background-color: rgba(44, 62, 37, 0.95);
    /* Dark Olive with opacity */
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 55px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--color-white);
    z-index: 1002;
    position: relative;
    /* Crucial for z-index */
    background: none;
    border: none;
    padding: 5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    transition: var(--transition-smooth);
}

.nav-links a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    opacity: 0.9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(44, 62, 37, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    /* Ensures no scrollbars or overflow */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1.3);
    /* Zoom in to crop black bars */
    object-fit: cover;
    /* Ensures video covers entire area without distortion */
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-top: 80px;
    /* Offset for header */
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* About Section - Image Left, Text Right */
.about {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 6rem;
    align-items: start;
}

.about-left {
    position: relative;
}

.about-products-mini {
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.about-products-mini img {
    width: 60%;
    max-width: 340px;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.about-products-mini img:hover {
    transform: scale(1.05);
}

.about-img-main {
    position: relative;
    overflow: hidden;
}

.about-img-main::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-img-main img {
    position: relative;
    width: 100%;
    height: 550px;
    object-fit: cover;
    z-index: 1;
}

.about-text {
    padding: 0;
}

.about-text .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 4rem 0 0;
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

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

.stat-inline h3 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 300;
}

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

/* Process Section - Sticky Layout */
.process-sticky-wrapper {
    position: relative;
    background-image: url('assets/DSC03283.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.process-sticky-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.process-sticky-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.process-left {
    position: sticky;
    top: 150px;
    /* Adjust based on header height */
    height: fit-content;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.process-left h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.process-left p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.process-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-image-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.process-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.process-image-card:hover img {
    transform: scale(1.05);
}

.process-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.process-card-icon {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.process-card-icon svg {
    width: 32px;
    height: 32px;
}

.process-image-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.process-image-card p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 80%;
}

@media (max-width: 1024px) {
    .process-sticky-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .process-left {
        position: relative;
        top: 0;
        text-align: center;
    }

    .process-left .btn {
        margin: 0 auto;
    }
}

/* Products Section - Elegant Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    overflow: hidden;
    height: 400px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 2rem;
    text-align: center;
    background-color: var(--color-white);
    position: relative;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.product-info p {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* Brands Section - Simple Logo Display */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.brand-logo img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-logo:hover {
    transform: translateY(-10px);
}

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

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .brand-logo img {
        max-width: 200px;
    }
}

/* Quality Policy Section */
.quality-section {
    background-color: var(--color-bg);
}

.quality-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.quality-intro .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quality-intro p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.quality-objectives {
    margin: 5rem 0;
}

.quality-objectives h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.objective-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--color-secondary);
    position: relative;
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--color-primary);
}

.objective-icon {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.objective-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2;
}

.objective-card h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.objective-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Certifications Section */
.quality-certifications {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.certification-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: var(--transition-smooth);
}

.certification-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.certification-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .certification-logo {
        width: 80px;
        height: 80px;
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .certification-logo {
        width: 70px;
        height: 70px;
        padding: 0.5rem;
    }
}

/* Industrial Capacity Section - New Styles */
.export-container-full {
    display: flex;
    z-index:1;
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 0;
}

.export-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.export-header h2 {
    font-size: 3.5rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.export-subtitle {
    font-size: 1.2rem;
    color: #ffffff !important;
    line-height: 1.6;
}

.export-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.export-equipment {
    text-align: center;
    margin-top: 3rem;
}

.export-equipment h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
}

.equipment-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.equipment-icon {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipment-card h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.equipment-value {
    color: var(--color-secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.equipment-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .export-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .export-header h2 {
        font-size: 2.8rem;
    }

    .export-equipment h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .export-container-full {
        gap: 3rem;
        padding: 3rem 0;
    }

    .export-header h2 {
        font-size: 2.2rem;
    }

    .export-subtitle {
        font-size: 1rem;
    }

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

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

    .equipment-card {
        padding: 2rem 1.5rem;
    }

    .equipment-icon svg {
        width: 36px;
        height: 36px;
    }

    .equipment-card h4 {
        font-size: 1.5rem;
    }

    .equipment-value {
        font-size: 1.6rem;
    }

    .export-equipment h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}


.quality-commitment {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 99, 63, 0.1));
    border-radius: 12px;
    border-left: 4px solid var(--color-secondary);
}

.quality-commitment p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quality-commitment p:last-child {
    margin-bottom: 0;
}

.commitment-highlight {
    font-size: 1.2rem !important;
    color: var(--color-primary) !important;
    font-weight: 500;
    font-style: italic;
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quality-objectives h3 {
        font-size: 2rem;
    }

    .objective-card {
        padding: 2rem;
    }

    .quality-commitment {
        padding: 2rem;
    }
}

/* Export Section - Redesign */
.export-section {
    position: relative;
    background-image: url('assets/EXPORTAR.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    color: var(--color-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.export-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.export-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.export-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 400px;
}

.export-left h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 4rem;
    color: var(--color-white);
}

.export-bottom-stats {
    display: flex;
    gap: 4rem;
    margin-top: auto;
}

.bottom-stat h3 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bottom-stat p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.bottom-stat small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    max-width: 250px;
    line-height: 1.4;
}

.export-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glass-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: var(--color-secondary);
}

.glass-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary), #F4D03F);
    border-radius: 4px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Contact Section - Redesign */
.contact-section {
    background-color: #F9F8F6;
}

.contact-info-wrapper,
.contact-form-wrapper {
    padding: 6rem 0;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text-content h2,
.contact-form-content h2 {
    font-size: 3.5rem;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-desc,
.form-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-detail h5 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--color-black);
    font-weight: 600;
    line-height: 1.4;
}

.contact-map iframe {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.modern-form input,
.modern-form textarea {
    padding: 1.2rem;
    border: 1px solid #ddd;
    background-color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.modern-form textarea {
    height: 150px;
    resize: none;
}

.btn-green {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem 2rem;
    border: 1px solid var(--color-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-green::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-green:hover {
    background-color: transparent;
    color: var(--color-secondary);
}

.btn-green:hover::after {
    height: 100%;
}

/* Footer - Modern & Comprehensive */
.site-footer {
    background-color: #1a1a1a;
    color: var(--color-white);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-cta h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--color-white);
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--color-white);
}

.footer-column ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    border: none;
    padding: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid::before {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-info {
        border-right: none;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .export-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .export-left {
        min-height: auto;
        text-align: center;
        align-items: center;
    }

    .export-left h2 {
        margin-bottom: 2rem;
    }

    .export-bottom-stats {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {

    /* Mobile menu handled in main CSS */
    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .about-img-main img {
        height: 400px;
    }

    .about-stats-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .export-bottom-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-image {
        order: -1;
    }

    .contact-image img {
        height: 300px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}