﻿/* ===============================
   EU PREMIUM HERO
================================ */

.hero-eu-premium {
    position: relative;
    width: 100vw;
    /* 👇 KEY FIX */
    height: calc(100vh - 130px);
    min-height: 620px;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background-color: #0f1b18;
}


/* FULL IMAGE */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/images/hero-img.png") center center / cover no-repeat;
    filter: brightness(0.85);
}

    /* SOFT DEPTH OVERLAY */
    .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at left bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.05) 100% );
    }

/* CONTENT */
.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 6vw 12vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

/* LABEL */
.hero-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #9dd5c6;
    font-weight: 600;
    margin-bottom: 18px;
}

/* TITLE */
.hero-inner h1 {
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.12;
    font-weight: 600;
    margin-bottom: 22px;
}

/* SUBTEXT */
.hero-inner p {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.65;
    color: #e4f1ee;
    margin-bottom: 38px;
}

/* CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* PRIMARY */
.btn-solid {
    background: #1f7f5c;
    color: #fff;
    padding: 15px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-solid:hover {
        background: #17644a;
    }

/* SECONDARY */
.btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #ffffff;
    padding: 15px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.15);
    }

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

    .hero-inner {
        padding: 0 6vw 10vh;
    }

        .hero-inner h1 {
            font-size: 32px;
        }

        .hero-inner p {
            font-size: 15.5px;
        }

    .hero-cta {
        flex-direction: column;
    }

    .btn-solid,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .hero-eu-premium {
        height: calc(100vh - 110px);
        min-height: 520px;
    }
}


/* ===============================
   EU TECHNOLOGY SECTION
================================ */

.eu-tech {
    background: #ffffff;
    padding: 30px 0;
}

.tech-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 6vw;
}

/* LABEL */
.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: #1f7f5c;
    margin-bottom: 18px;
}

/* TITLE */
.eu-tech h2 {
    font-size: 36px;
    font-weight: 600;
    color: #122b26;
    margin-bottom: 12px;
    max-width: 700px;
}

/* INTRO */
.section-intro {
    max-width: 720px;
    font-size: 16.5px;
    line-height: 1.7;
    color: #4f6b64;
    margin-bottom: 56px;
}

/* GRID */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

/* CARD */
.tech-card {
    border-top: 3px solid #1f7f5c;
    padding-top: 26px;
}

    .tech-card h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #153e35;
    }

    .tech-card p {
        font-size: 15.5px;
        line-height: 1.65;
        color: #5d7771;
    }

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 600px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .eu-tech h2 {
        font-size: 28px;
    }

    .section-intro {
        font-size: 15px;
    }
}

/* TECH ICON */
.tech-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
}

    .tech-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0.85;
    }


/* ===============================
   EU SAFE SCROLL ANIMATIONS
================================ */

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
    will-change: opacity, transform;
}

    .reveal.reveal-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Slight delay helpers */
.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

/* Mobile: even softer */
@media (max-width: 768px) {
    .reveal {
        transform: translateY(8px);
        transition-duration: 0.8s;
    }
}

/* ===============================
   PRODUCT PORTFOLIO
================================ */

.eu-products {
    padding: 110px 0;
    background: #ffffff;
}

.products-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 6vw;
}

.eu-products h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.product-card {
    background: #f9fbfa;
    border-radius: 18px;
    padding: 36px 32px;
    text-decoration: none;
    color: #0f1b18;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

    .product-card h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .product-card p {
        font-size: 15.5px;
        line-height: 1.6;
        color: #4c5f5a;
        margin-bottom: 22px;
    }

.product-link {
    font-size: 14px;
    font-weight: 500;
    color: #1f7f5c;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.products-cta {
    margin-top: 70px;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}



/* ===============================
   WHY GEOLIFE EUROPE
================================ */

.why-geolife {
    padding: 30px 0;
    background: #f9fbfa;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 6vw;
    text-align: center;
}

    .why-container h2 {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 600;
        margin-bottom: 24px;
    }

.why-intro {
    max-width: 650px;
    margin: 0 auto 80px;
    font-size: 16.5px;
    line-height: 1.7;
    color: #4f6660;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
}

.why-item {
    text-align: left;
}

.why-number {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #1f7f5c;
    font-weight: 600;
    margin-bottom: 14px;
}

.why-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e2f2b;
}

.why-item p {
    font-size: 15px;
    line-height: 1.65;
    color: #556e68;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-geolife {
        padding: 90px 0;
    }

    .why-intro {
        margin-bottom: 60px;
    }
}


/* ===============================
   PARTNER CTA
================================ */

.partner-cta {
    padding: 120px 0;
    background: linear-gradient( 180deg, #f7fbfa 0%, #ffffff 100% );
}

.partner-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 6vw;
}

.partner-content {
    max-width: 720px;
}

    .partner-content h2 {
        font-size: clamp(28px, 4vw, 40px);
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 22px;
    }

    .partner-content p {
        font-size: 16.5px;
        line-height: 1.7;
        color: #516963;
        margin-bottom: 42px;
    }

.partner-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* subtle text link */
.btn-link {
    font-size: 15px;
    font-weight: 500;
    color: #1f7f5c;
    text-decoration: none;
}

    .btn-link:hover {
        text-decoration: underline;
    }

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

    .partner-cta {
        padding: 90px 0;
    }

    .partner-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ===============================
   EU STATEMENT STRIP SECTION
================================ */

.eu-statement {
    background: #ffffff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

/* TOP STRIP */
.eu-statement-strip {
    padding: 50px 6vw 90px;
    text-align: center;
    background: linear-gradient(180deg, #1f7f5c, #2b8f6a);
}

    .eu-statement-strip h2 {
        font-size: 34px;
        font-weight: 500;
        line-height: 1.25;
        color: #ffffff;
        max-width: 900px;
        margin: auto;
    }

/* CONTENT AREA */
.eu-statement-container {
    max-width: 1240px;
    margin: -80px auto 0;
    padding: 0 6vw 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* CONTENT */
.eu-statement-content {
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.section-label {
    font-size: 13px;
    letter-spacing: 1.6px;
    font-weight: 600;
    color: #1f7f5c;
    display: inline-block;
    margin-bottom: 12px;
}

.eu-statement-content p {
    font-size: 16.5px;
    line-height: 1.75;
    color: #4f6b64;
    margin-bottom: 28px;
}

/* IMAGE */
.eu-statement-image {
    height: 420px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35)), url("/images/12.jpeg") center / cover no-repeat;
    box-shadow: 0 25px 60px rgba(0,0,0,0.14);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .eu-statement-container {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: -40px;
    }

    .eu-statement-image {
        height: 340px;
    }
}

@media (max-width: 600px) {
    .eu-statement-strip h2 {
        font-size: 30px;
    }

    .eu-statement-container {
        padding-bottom: 80px;
    }

    .eu-statement-content {
        padding: 36px;
    }
}
/* ===============================
   SUBTLE TEXT REVEAL ANIMATION
================================ */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* DELAYS (NATURAL FLOW) */
.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.35s;
}

.reveal-delay-3 {
    transition-delay: 0.55s;
}

.hero-spacer {
    height: 80px;
    background: #ffffff;
}
