/* =========================================================
   Unikoll Exporters — Interport Global Style
   Fonts: Utendo (headings, local) + Manrope (body)
   Colors: Unikoll Logo Brand Palette
   ========================================================= */

/* Utendo — via CDN provided by Unikoll */
@import url('https://fonts.cdnfonts.com/css/utendo');

:root {
    /* ─── Unikoll Logo Brand Colors ─── */
    --teal: #00d2d3;
    /* Primary teal from logo */
    --teal-dark: #01a3a4;
    /* Hover / darker teal    */
    --teal-light: #e0fafb;
    /* Subtle tint backgrounds */
    --navy: #1b2e3c;
    /* Deep navy (Unikoll secondary dark) */
    --navy-mid: #2d3e4e;
    --green: #00b894;
    /* Accent (complementary to teal)   */

    /* ─── Neutrals ─── */
    --white: #ffffff;
    --off-white: #f4f7f9;
    --grey-100: #eef1f4;
    --grey-300: #cbd5e1;
    --grey-500: #64748b;
    --text-dark: #0f1c27;
    /* Almost-black for headings */
    --text-muted: #526070;

    /* ─── Typography — Utendo headings + Manrope body ─── */
    --font-display: 'Utendo', sans-serif;
    /* Local Utendo font for headings */
    --font-body: 'Utendo', sans-serif;
    /* Manrope for body copy          */

    /* ─── Spacing ─── */
    --container: 1280px;
}

/* ─────────────── Reset ─────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 1rem;
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

::selection {
    background: var(--teal);
    color: #fff;
}

/* ─────────────── Layout ─────────────── */
.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

/* ─────────────── Typography ─────────────── */
/* Interport uses massive uppercase tracking labels */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 16px;
}

/* --- Interport-style BIG heading --- */
.title-xl {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.title-lg {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

.title-md {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.body-lg {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.text-teal {
    color: var(--teal);
}

/* ─────────────── Buttons ─────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
}

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.btn-navy:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--grey-300);
}

.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ─────────────── Navbar ─────────────── */
/* Interport: white navbar, no drop shadow until scroll */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-100);
    transition: all 0.3s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-cta {
    margin-left: 8px;
}

/* Mobile nav toggle */
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy);
}

/* ─────────────── Hero ─────────────── */
/* Full-bleed image, text overlay */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* The photo itself fills the entire section */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    will-change: transform, scale;
    animation: slowZoom 20s ease-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        scale: 1;
    }

    100% {
        scale: 1.12;
    }
}

/* Dark gradient so text is readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(15, 28, 39, 0.82) 0%,
            rgba(15, 28, 39, 0.55) 60%,
            rgba(15, 28, 39, 0.25) 100%);
    z-index: 1;
}

/* Wrapper inherits container width — NO max-width override here */
.hero-text-wrap {
    position: relative;
    z-index: 2;
    padding: 160px 0 120px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    /* pin to left */
}

/* The actual text column — left-aligned, stops at 55% of the viewport */
.hero-text-box {
    text-align: left;
    max-width: 580px;
}

.hero-title {
    margin: 16px 0 28px;
}

.hero-desc {
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* ─────────────── Marquee Ticker ─────────────── */
/* Interport has a scrolling ticker strip */
.ticker {
    background: var(--navy);
    color: var(--white);
    padding: 18px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-inner span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 30px;
    color: var(--teal);
}

.ticker-inner span.dot {
    color: rgba(255, 255, 255, 0.3);
    padding: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─────────────── Stats Bar ─────────────── */
.stats-section {
    background: var(--teal);
    padding: 60px 0;
}

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

.stat-item .num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy);
    opacity: 0.75;
}

/* ─────────────── About / Mission Section ─────────────── */
.mission-section {
    padding: 140px 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.mission-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 560px;
}

.mission-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Teal badge inside image */
.mission-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: var(--teal);
    padding: 20px 28px;
    border-radius: 10px;
    text-align: center;
}

.mission-badge .big {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
}

.mission-badge .small {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--navy);
    text-transform: uppercase;
}



.mission-text .title-lg {
    margin: 16px 0 24px;
}

.about-points {
    margin: 36px 0 0;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-100);
}

.about-points li:last-child {
    border-bottom: none;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.point-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ─────────────── Services ─────────────── */
.services-section {
    padding: 140px 0;
    background: var(--off-white);
}

.services-header {
    max-width: 640px;
    margin-bottom: 80px;
}

.services-header .title-lg {
    margin: 16px 0 20px;
}

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

.service-card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: 12px;
    border: 1px solid var(--grey-100);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    transform: translateY(-6px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--teal-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.6rem;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: var(--teal);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─────────────── Products Grid (8 cards) ─────────────── */
.products-section {
    padding: 140px 0;
    background: var(--off-white);
}

.products-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.products-header .title-lg {
    margin: 16px 0 16px;
}

/* 4-column auto-fit grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Individual card */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--grey-100);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
}

/* Image container — fixed height for visual consistency */
.product-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.9);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Category chip */
.product-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--teal);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

/* Text block below image */
.product-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.25s ease;
}

.product-link:hover {
    gap: 12px;
}



/* ─────────────── Sectors / Products — alternating full-bleed rows ─────────────── */
.sectors-section {
    padding: 100px 0 0;
    background: var(--white);
}

.sectors-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.sectors-header .title-lg {
    margin: 16px 0;
}

/* Each full-width row: image fills left half, dark text panel right half */
.sector-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
    margin-bottom: 6px;
    /* thin gap between rows */
}

/* Reverse by flipping column order */
.sector-row.reverse {
    direction: rtl;
}

.sector-row.reverse>* {
    direction: ltr;
}

.sector-img {
    position: relative;
    overflow: hidden;
}

.sector-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.sector-row:hover .sector-img img {
    transform: scale(1.06);
}

.sector-body {
    background: var(--navy);
    padding: 72px 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.sector-body .eyebrow {
    color: var(--teal);
}

.sector-body h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
}

.sector-body p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 460px;
}

.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.25s ease;
}

.sector-link:hover {
    gap: 16px;
}

/* ─────────────── Contact Section ─────────────── */
.contact-section {
    padding: 140px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal);
}

.info-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--off-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 210, 211, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* ─────────────── Footer ─────────────── */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 24px;
    /* invert logo so it shows white on dark bg */
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 300px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─────────────── Animations ─────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger delays via inline style is used in HTML */

/* ─────────────── Responsive ─────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {

    .hero-grid,
    .mission-grid,
    .sector-row {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 48px;
    }

    .mission-grid {
        gap: 48px;
    }

    .sector-row {
        direction: ltr !important;
        border-radius: 16px;
        min-height: auto;
    }

    .sector-img {
        height: 320px;
    }

    .sector-body {
        padding: 44px 36px;
    }

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

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-stat-card {
        position: static;
        margin-top: 24px;
        display: inline-block;
    }
}