* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f6f8;
    color: #333;
}
/* ===== HEADER ===== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0b2c3d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 42px;
    width: auto;
    display: block;
}

/* NAV */
.main-nav a {
    color: #ffffff;
    margin-left: 22px;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #cfe8f3;
}

/* Underline animation */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

header {
    background: #0b2c3d;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}


header nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 30px;
    text-align: center;
}

/* ===== HERO IMPROVED ===== */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Background layer already handled by parallax */

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

/* Logo */
.hero-logo {
    width: 140px;
    margin-bottom: 20px;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.5));
}

/* Small tag */
.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #cfe8f3;
    margin-bottom: 12px;
}

/* Title */
.hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* Subtitle */
.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 35px;
    color: #e6f2f7;
}

/* CTA Button */
.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    background: #ffffff;
    color: #0b2c3d;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.35s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.65s; }
.hero-content > *:nth-child(5) { animation-delay: 0.8s; }

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.content {
    padding: 60px;
    max-width: 1200px;
    margin: auto;
}

.content h2 {
    margin-bottom: 20px;
    color: #0b2c3d;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.grid img, .card img {
    width: 100%;
    border-radius: 5px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
    background: #0b2c3d;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

.faq li {
    margin-bottom: 15px;
}

/* ===== Animations Globales ===== */

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hero animation */
.hero-text {
    animation: heroFade 1.2s ease-out forwards;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header animation */
header {
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image zoom on hover */
.grid img, .card img {
    transition: transform 0.4s ease;
}

.grid img:hover, .card img:hover {
    transform: scale(1.05);
}

/* Nav underline animation */
header nav a {
    position: relative;
}

header nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

/* ===== HERO MULTI-LAYER PARALLAX (FINAL) ===== */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Base layer */
.hero-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
}

/* Background image */
.hero-bg {
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-overlay {
    background: linear-gradient(
        rgba(11, 44, 61, 0.35),
        rgba(11, 44, 61, 0.7)
    );
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    will-change: transform;
}

/* Logo */
.hero-logo {
    width: 140px;
    max-width: 60vw;
    margin-bottom: 20px;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.5));
    animation: logoFadeIn 1.6s ease forwards;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile safety */
@media (max-width: 768px) {
    .hero-bg,
    .hero-overlay,
    .hero-content,
    .hero-logo {
        transform: none !important;
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
    padding: 40px 60px;
    background: #ffffff;
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0b2c3d;
}

.btn {
    background: #0b2c3d;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #144d6d;
}

.values {
    background: #f4f6f8;
    padding: 60px;
}

.values ul {
    max-width: 600px;
    margin: auto;
    list-style: none;
}

.values li {
    margin-bottom: 15px;
    font-size: 18px;
}
/* ===== PRODUITS ===== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* ===== PRODUCTS SECTION ===== */

.products-section {
    background: #f4f6f8;
    padding: 90px 20px;
}

.products-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-tag {
    display: inline-block;
    background: #0b2c3d;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.products-header h2 {
    font-size: 34px;
    color: #0b2c3d;
    margin-bottom: 15px;
}

.products-header p {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Card */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Image zone (same size for all) */
.product-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ffffff, #f1f3f5);
}

.product-image img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
}

/* Content */
.product-content {
    padding: 25px;
    text-align: center;
}

.product-content h3 {
    color: #0b2c3d;
    margin-bottom: 10px;
    font-size: 20px;
}

.product-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* ===== ABOUT SECTION WITH IMAGE ===== */

.about-section {
    background: linear-gradient(to right, #f4f6f8, #ffffff);
    padding: 90px 20px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* TEXTE */
.about-text {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-tag {
    display: inline-block;
    background: #0b2c3d;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 32px;
    color: #0b2c3d;
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-points {
    margin-top: 25px;
    list-style: none;
    padding: 0;
}

.about-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
    object-fit: cover;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 35px;
    }

    .about-text h2 {
        font-size: 26px;
    }
}
/* ===== STATS SECTION ===== */

.stats-section {
    background: #0b2c3d;
    color: #ffffff;
    padding: 90px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.stats-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.stats-header p {
    max-width: 700px;
    margin: auto;
    color: #dce6ec;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* CARD */
.stat-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.stat-card p {
    font-size: 14px;
    color: #e2edf4;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .stats-header h2 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 34px;
    }
}
/* ===== VALUES SECTION ===== */

.values-section {
    background: linear-gradient(to right, #ffffff, #f4f6f8);
    padding: 90px 20px;
}

.values-container {
    max-width: 1200px;
    margin: auto;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-tag {
    display: inline-block;
    background: #0b2c3d;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.values-header h2 {
    font-size: 34px;
    color: #0b2c3d;
    margin-bottom: 15px;
}

.values-header p {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* Card */
.value-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 20px;
    color: #0b2c3d;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}
@media (max-width: 768px) {
    .values-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }

    .main-nav a {
        margin-left: 0;
        margin-right: 20px;
    }

    .logo img {
        height: 36px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        width: 110px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* ===== FOOTER ===== */

.site-footer {
    background: #0b2c3d;
    color: #dce6ec;
    padding-top: 60px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

/* Brand */
.footer-brand img {
    width: 120px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #cfe8f3;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    color: #dce6ec;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Contact */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 18px 20px;
    background: #082231;
    font-size: 13px;
    color: #b9d4e2;
}

/* ===== PRODUITS PAGE ===== */
/* ===== HERO PRODUITS PREMIUM ===== */

.products-hero {
    position: relative;
    height: 55vh;
    min-height: 420px;
    overflow: hidden;
}

/* Background image */
.products-hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/products-hero.jpg") center / cover no-repeat;
    transform: scale(1.05);
    will-change: transform;
}

/* Overlay */
.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(11, 44, 61, 0.45),
        rgba(11, 44, 61, 0.85)
    );
}

/* Content */
.products-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* Tag */
.products-hero-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #cfe8f3;
    margin-bottom: 12px;
}
.products-hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: productsHeroReveal 1s ease forwards;
}

.products-hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.products-hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.products-hero-content > *:nth-child(3) { animation-delay: 0.6s; }

@keyframes productsHeroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Title */
.products-hero-content h1 {
    font-size: clamp(34px, 5vw, 50px);
    margin-bottom: 18px;
}

/* Subtitle */
.products-hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #e6f2f7;
}
@media (max-width: 768px) {
    .products-hero {
        height: 45vh;
        min-height: 360px;
    }

    .products-hero-content p {
        font-size: 16px;
    }
}


/* Containers */
.products-container {
    max-width: 1200px;
    margin: auto;
    padding: 0px 20px;
}

/* ===== PRODUCTS INTRO ===== */

.products-intro {
    background: #ffffff;
    text-align: center;
    padding: 50px 20px 20px; /* ⬇ moins d’espace en bas */
    margin-bottom: 0;
}

.products-intro-tag {
    display: inline-block;
    background: #0b2c3d;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.products-intro h2 {
    font-size: 34px;
    color: #0b2c3d;
    margin-bottom: 20px;
}
.products-section-header h2 {
    margin-top: 0;
}
.products-intro p {
    margin-bottom: 0;
}
.products-intro-text {
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}
@media (max-width: 768px) {
    .products-intro h2 {
        font-size: 26px;
    }

    .products-intro-text {
        font-size: 16px;
    }
}

/* ===== PRODUCTS CATALOG SECTION ===== */

.products-section {
    background: #f4f6f8;
    padding: 40px 20px; /* ⬇ section catalogue plus compacte */
    margin-top: 0;
}

.products-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.products-section-tag {
    display: inline-block;
    background: #0b2c3d;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.products-section-header h2 {
    font-size: 34px;
    color: #0b2c3d;
    margin-bottom: 18px;
}

.products-section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}
@media (max-width: 768px) {
    .products-section-header h2 {
        font-size: 26px;
    }

    .products-section-header p {
        font-size: 16px;
    }
}
/* ===== PRODUCT CARDS ===== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* ⬇ cartes plus fines */
    gap: 30px; /* ⬇ moins d’espace entre cartes */
}

/* Card */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Image zone — SAME SIZE FOR ALL */
.product-image {
    height: 260px; /* ⬇ images plus compactes */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ffffff, #f1f3f5);
}

.product-image img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
}

/* Content */
.product-content {
    padding: 22px; /* ⬇ un peu plus compact */
    text-align: center;
}

.product-content h3 {
    font-size: 18px;
    color: #0b2c3d;
    margin-bottom: 12px;
}

.product-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


/* Bouton */
.cta-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #e0b973;
    color: #1b1b1b;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.products-cta {
    padding: 80px 20px 60px; /* bottom reduced */
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    text-align: center;
    color: #fff;
}

.products-cta-box {
    max-width: 720px;
    margin: auto;
    padding: 45px 40px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.products-cta h2 {
    margin-top: 0;
    margin-bottom: 12px;
}

.products-cta p {
    margin-bottom: 28px;
    opacity: 0.9;
}



/* ===== FACTORY HERO (IMPROVED) ===== */

.factory-hero {
    position: relative;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image */
.factory-hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/usine-hero.jpg") center / cover no-repeat;
    transform: scale(1.05);
    will-change: transform;
}

/* Overlay */
.factory-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(11, 44, 61, 0.45),
        rgba(11, 44, 61, 0.85)
    );
}

/* Content */
.factory-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

/* Small tag */
.factory-hero-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Title */
.factory-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
    text-shadow: 0 14px 35px rgba(0,0,0,0.55);
}

/* Subtitle */
.factory-hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #e6f2f7;
}
.factory-hero-content > * {
    opacity: 0;
    transform: translateY(22px);
    animation: factoryHeroReveal 1s ease forwards;
}

.factory-hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.factory-hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.factory-hero-content > *:nth-child(3) { animation-delay: 0.6s; }

@keyframes factoryHeroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .factory-hero {
        height: 60vh;
        min-height: 380px;
    }

    .factory-hero-content p {
        font-size: 16px;
    }
}

/* ===== PROCESS SECTION ===== */

.process-section {
    background: #f5f7f8;
    padding: 90px 20px;
}

.process-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.process-tag {
    display: inline-block;
    background: #0b2c3d;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.process-header h2 {
    font-size: 34px;
    color: #0b2c3d;
    margin-bottom: 16px;
}

.process-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

/* CARD */
.process-step {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.14);
}

/* NUMBER */
.process-number {
    font-size: 42px;
    font-weight: 700;
    color: rgba(11, 44, 61, 0.15);
    display: block;
    margin-bottom: 10px;
}

/* TEXT */
.process-step h3 {
    font-size: 20px;
    color: #0b2c3d;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}
@media (max-width: 768px) {
    .process-header h2 {
        font-size: 26px;
    }

    .process-header p {
        font-size: 16px;
    }
}

/* ===== FACTORY GALLERY ===== */

.factory-gallery {
    padding: 90px 20px;
    background: #ffffff;
}

/* Header */
.gallery-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.gallery-tag {
    display: inline-block;
    background: #0b2c3d;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 16px;
}

.gallery-header h2 {
    font-size: 34px;
    color: #0b2c3d;
    margin-bottom: 16px;
}

.gallery-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.08);
}
@media (max-width: 768px) {
    .gallery-header h2 {
        font-size: 26px;
    }

    .gallery-header p {
        font-size: 16px;
    }
}

/* ===== CONTACT SECTION ===== */

.contact-section {
    padding: 90px 20px;
    background: #0f2027;
    color: #ffffff;
}

.contact-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* INFO */
.contact-info {
    background: rgba(255,255,255,0.06);
    padding: 45px 40px;
    border-radius: 18px;
    backdrop-filter: blur(6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.contact-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

/* LIST */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
}

.contact-icon {
    font-size: 20px;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 35px 30px;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }
}


