/* ===== ANP ECOPACK Website Styles ===== */

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

:root {
    --primary-green: #1a5f3f;
    --accent-green: #7cb342;
    --gold: #d4af37;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* === Header === */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-green);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
}

.hero-feature i {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #c09a2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

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

.btn-secondary:hover {
    background: var(--light-gray);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* === Stats Section === */
.stats {
    padding: 60px 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 5px;
}

/* === Certifications Banner === */
.certifications-banner {
    padding: 40px 0;
    background: var(--primary-green);
}

.cert-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cert-logos {
    display: flex;
    gap: 40px;
}

.cert-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.cert-logo img {
    height: 80px;
}

.cert-logo i {
    font-size: 4rem;
    color: var(--gold);
}

.cert-text {
    color: var(--white);
}

.cert-text h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.cert-text p {
    opacity: 0.9;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* === Products Overview === */
.products-overview {
    padding: 80px 0;
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,95,63,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    color: var(--dark);
}

.product-features i {
    color: var(--accent-green);
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* === Why Choose Us === */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Footer === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-green);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* === Scroll to Top === */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-green);
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.95;
}

/* === Company Story === */
.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .lead {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--gray);
    margin-bottom: 20px;
}

.story-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* === Mission & Vision === */
.mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--gray);
}

/* === Infrastructure === */
.infrastructure {
    padding: 80px 0;
}

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

.infra-card {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.infra-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.infra-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.infra-card p {
    color: var(--gray);
}

/* === Manufacturing === */
.manufacturing {
    padding: 80px 0;
    background: var(--light-gray);
}

.machine-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.machine-category {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.machine-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.machine-category i {
    color: var(--accent-green);
}

.machine-category ul {
    list-style: none;
    color: var(--gray);
}

.machine-category ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.machine-category ul li:last-child {
    border-bottom: none;
}

/* === Team & Values === */
.team-values {
    padding: 80px 0;
}

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

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray);
}

/* === Product Detail Pages === */
.division-header {
    padding: 60px 0;
    background: linear-gradient(to right, var(--light-gray), var(--white));
}

.division-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.division-text .lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin: 15px 0 30px;
}

.division-stats {
    display: flex;
    gap: 40px;
}

.dstat {
    display: flex;
    flex-direction: column;
}

.dstat strong {
    font-size: 2rem;
    color: var(--primary-green);
    font-family: 'Montserrat', sans-serif;
}

.dstat span {
    color: var(--gray);
    font-size: 0.9rem;
}

.product-detail {
    padding: 80px 0;
}

.product-detail.alternate {
    background: var(--light-gray);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.product-gsm {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.product-detail-info h2 {
    margin-bottom: 15px;
}

.product-detail-info h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.product-detail-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    color: var(--dark);
}

.feature-list i {
    color: var(--accent-green);
    margin-top: 3px;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
}

.size-list {
    list-style: none;
    color: var(--gray);
}

.size-list li {
    padding: 5px 0 5px 20px;
    position: relative;
}

.size-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* === Customization Section === */
.customization-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.custom-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.custom-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.custom-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.custom-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* === Mono Cartons === */
.mono-cartons-section {
    padding: 80px 0;
}

.mono-content {
    max-width: 900px;
    margin: 0 auto;
}

.mono-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

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

.mono-stat strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-green);
    font-family: 'Montserrat', sans-serif;
}

.mono-stat span {
    color: var(--gray);
}

.mono-cta {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

/* === Certifications Page === */
.certifications-showcase {
    padding: 80px 0;
}

.cert-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cert-card-large {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.cert-badge {
    text-align: center;
    margin-bottom: 20px;
}

.cert-badge img {
    height: 120px;
    margin: 0 auto;
}

.cert-badge.iso {
    font-size: 5rem;
    color: var(--primary-green);
}

.cert-card-large h2 {
    text-align: center;
    margin-bottom: 15px;
}

.cert-number {
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cert-org {
    text-align: center;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.cert-card-large > p {
    color: var(--gray);
    line-height: 1.8;
}

.cert-features {
    margin-top: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.cert-features h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cert-features ul {
    list-style: none;
}

.cert-features li {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 8px 0;
    color: var(--dark);
}

.cert-features i {
    color: var(--accent-green);
    margin-top: 3px;
}

/* === Quality Process === */
.quality-process {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    position: relative;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin: 20px 0;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* === Quality Standards === */
.quality-standards {
    padding: 80px 0;
}

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

.standard-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
}

.standard-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.standard-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.standard-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* === Why Certifications === */
.why-certifications {
    padding: 80px 0;
    background: var(--light-gray);
}

.importance-points {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.imp-point {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
}

.imp-point i {
    font-size: 2.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.imp-point h4 {
    margin-bottom: 5px;
}

.imp-point p {
    color: var(--gray);
}

/* === Export Pages === */
.export-highlights {
    padding: 60px 0;
}

.export-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.export-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
}

.export-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.export-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.export-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 5px 0;
}

.export-card strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* === Incoterms === */
.incoterms-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.incoterms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.incoterm-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.incoterm-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.incoterm-card i {
    color: var(--accent-green);
}

.incoterm-card p {
    color: var(--gray);
    margin-bottom: 10px;
}

.incoterm-best {
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 10px;
}

/* === Payment Section === */
.payment-section {
    padding: 80px 0;
}

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

.payment-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.payment-card > p {
    color: var(--gray);
    margin-bottom: 15px;
}

.payment-card ul {
    list-style: none;
    color: var(--dark);
}

.payment-card ul li {
    padding: 5px 0 5px 20px;
    position: relative;
}

.payment-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* === Documentation === */
.documentation-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.doc-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.doc-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.doc-item i {
    font-size: 2rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.doc-item h4 {
    margin-bottom: 5px;
}

.doc-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* === Countries Section === */
.countries-section {
    padding: 80px 0;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.region-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
}

.region-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.region-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.region-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* === Export Advantages === */
.export-advantages {
    padding: 80px 0;
    background: var(--light-gray);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 25px 15px;
}

.advantage-item i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.advantage-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.advantage-item p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* === Sustainability Page === */
.sustainability-hero {
    padding: 80px 0;
}

.sust-badge-large {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.sust-badge-large img {
    height: 80px;
}

.sust-badge-large span {
    font-weight: 600;
    color: var(--primary-green);
}

.eco-features {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.eco-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.eco-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.eco-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.eco-card p {
    color: var(--gray);
}

/* === Plastic Alternative === */
.plastic-alternative {
    padding: 80px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-col {
    padding: 40px;
    border-radius: 15px;
}

.comparison-col.paper {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.comparison-col.plastic {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
}

.comparison-col h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comparison-col.paper h3 {
    color: var(--accent-green);
}

.comparison-col.plastic h3 {
    color: #c62828;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 10px 0;
    color: var(--dark);
}

.comparison-col.paper .comparison-list i {
    color: var(--accent-green);
    margin-top: 3px;
}

.comparison-col.plastic .comparison-list i {
    color: #c62828;
    margin-top: 3px;
}

/* === Environmental Impact === */
.environmental-impact {
    padding: 80px 0;
    background: var(--light-gray);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.impact-stat {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.impact-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

.impact-stat p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* === Contact Page === */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-info-wrapper h2 {
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--dark);
    margin: 5px 0;
}

.info-card a {
    color: var(--primary-green);
    font-weight: 600;
}

.info-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

.business-hours {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid var(--light-gray);
}

.business-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.business-hours ul {
    list-style: none;
}

.business-hours ul li {
    padding: 8px 0;
    color: var(--dark);
}

.hours-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 10px;
}

/* === Map Section === */
.map-section {
    padding: 40px 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.map-section p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* === FAQ Section === */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item i {
    color: var(--accent-green);
    margin-top: 2px;
}

.faq-item p {
    color: var(--gray);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .stats-grid,
    .features-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid,
    .infra-grid,
    .customization-grid,
    .eco-grid,
    .values-grid,
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .export-cards,
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-list a {
        display: block;
        padding: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content,
    .story-content,
    .product-detail-content,
    .cert-cards,
    .mv-grid,
    .comparison-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image,
    .product-detail.alternate .product-detail-image {
        order: -1;
    }
    
    .stats-grid,
    .products-grid,
    .features-grid,
    .infra-grid,
    .machine-categories,
    .customization-grid,
    .eco-grid,
    .values-grid,
    .incoterms-grid,
    .payment-grid,
    .doc-items,
    .standards-grid,
    .export-cards,
    .regions-grid,
    .advantages-grid,
    .impact-stats,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
}

/* === Lead Class === */
.lead {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* === Print Styles === */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .scroll-top {
        display: none;
    }
}