*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #9a1319;
    border-radius: 3px;
}

.display {
    font-family: 'Cormorant Garamond', serif;
}

:root {
    --red: #9a1319;
    --gold: #d4a017;
    --dark: #0d0d0d;
    --darkred: #1a0608;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, .4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 160, 23, 0);
    }
}

.fade-up {
    animation: fadeUp .7s ease forwards;
}

.fade-up-1 {
    animation: fadeUp .7s .1s ease both;
}

.fade-up-2 {
    animation: fadeUp .7s .2s ease both;
}

.fade-up-3 {
    animation: fadeUp .7s .3s ease both;
}

.fade-up-4 {
    animation: fadeUp .7s .4s ease both;
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .4s ease;
}

#navbar .nav-brand img {
    margin-top: 5px;
    height: 52px;
}

#navbar .nav-links .nav-link {
    color: #9a1319 !important;
}

#navbar {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .1);
    border-bottom: 1px solid #f0f0f0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.nav-logo-box {
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-box span {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    transition: color .3s;
}

.nav-brand img {
    height: 62px;
    margin-top: 40px;
}

.nav-tag {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 4px 0;
    transition: color .2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s;
}

.btn-nav:hover {
    background: #7a0f14;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all .3s;
}

#navbar .hamburger span {
    background: var(--red);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-open .nav-inner {
    background-color: #fff;
}

.menu-open .nav-logo .nav-tag {
    display: none;
}

.menu-open .nav-logo .nav-brand img {
    margin-top: 5px;
    height: 52px;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 16px 24px 24px;
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-link.active {
    color: var(--red);
}

.btn-mobile {
    margin-top: 16px;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-tag {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--red);
}

.section-title.light {
    color: #fff;
}

.section-sub {
    font-size: 16px;
    color: #6b6b6b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-sub.light {
    color: rgba(255, 255, 255, .65);
}

.gold-bar {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 18px auto 0;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: #7a0f14;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(154, 19, 25, .35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .35);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s;
    cursor: pointer;
}

.btn-gold:hover {
    background: #b88a12;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s;
    cursor: pointer;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
}

/* ═══ HERO — BG IMAGE ═══ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('./img/banner.webp');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 2, 3, .90) 0%, rgba(26, 6, 8, .82) 45%, rgba(10, 2, 3, .65) 100%);
}

.hero-grid-pat {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 160, 23, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 160, 23, .04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow-r {
    position: absolute;
    right: 0;
    top: 10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(154, 19, 25, .25) 0%, transparent 70%);
}

.hero-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: .5;
    animation: pulse 2.5s infinite;
}

.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 24px 80px;
    width: 100%;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, .14);
    border: 1px solid rgba(212, 160, 23, .35);
    border-radius: 24px;
    padding: 6px 16px;
    margin-bottom: 28px;
}

.hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-pill-text {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-h1 {
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-p {
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hs-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.hs-l {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.hero-scroll-ind {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(212, 160, 23, .5), transparent);
}

.hero-scroll-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ═══ INTRO ═══ */
.intro-sec {
    padding: 96px 24px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.intro-tag {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.intro-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 22px;
}

.intro-h2 em {
    color: var(--red);
    font-style: normal;
}

.intro-bar {
    width: 56px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 24px;
}

.intro-p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

.ichk {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.ichk-mark {
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
}

.ichk-txt {
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.intro-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.isc {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 26px 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgb(0 0 0 / 10%);
    transition: transform .3s, box-shadow .3s;
}

.isc:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(154, 19, 25, .12);
}

.isc-ico {
    font-size: 26px;
    margin-bottom: 8px;
}

.isc-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--red);
}

.isc-l {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* ═══ PRODUCTS — WITH IMAGE ═══ */
.prod-sec {
    padding: 96px 24px;
    background: #f8f6f3;
}

.prod-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.prod-tab {
    padding: 10px 22px;
    border-radius: 24px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s;
    cursor: pointer;
}

.prod-tab.active {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

.prod-card-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, .10);
    animation: fadeIn .4s ease;
}

.prod-img-col {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.prod-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.prod-img-col:hover img {
    transform: scale(1.06);
}

.prod-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 2, 3, .65) 0%, transparent 55%);
}

.prod-img-tags {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.prod-img-tag {
    background: rgba(255, 255, 255, .92);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

.prod-info-col {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prod-cat-n {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.prod-ttl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.prod-br {
    width: 46px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 18px;
}

.prod-ds {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 22px;
}

.prod-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.prod-item-r {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prod-item-arr {
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
}

.prod-item-nm {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.prod-pkg {
    padding: 12px 16px;
    background: #fdf9f1;
    border: 1px solid #e8d8b0;
    border-radius: 10px;
    font-size: 13px;
    color: #8a6d20;
    font-weight: 500;
}

.prod-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.prod-dot {
    height: 8px;
    border-radius: 4px;
    background: #ddd;
    cursor: pointer;
    transition: all .3s;
}

.prod-dot.active {
    width: 24px;
    background: var(--red);
}

.prod-dot:not(.active) {
    width: 8px;
}

/* ═══ WHY CHOOSE US — BENTO GRID ═══ */
.why-sec {
    padding: 96px 24px;
    background: #fff;
}

.why-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* big image card */
.why-big-card {
    grid-row: 1/3;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 540px;
}

.why-big-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-big-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 2, 3, .88) 0%, rgba(10, 2, 3, .2) 55%, transparent 100%);
}

.why-big-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 30px;
}

.why-big-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-big-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    margin-bottom: 18px;
}

.why-big-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.why-big-badge {
    background: rgba(212, 160, 23, .18);
    border: 1px solid rgba(212, 160, 23, .4);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 12px;
}

/* stats strip */
.why-stats-strip {
    background: var(--red);
    border-radius: 22px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
}

.wss-item {
    text-align: center;
}

.wss-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold);
}

.wss-l {
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* feature list */
.why-feat-list {
    background: #f8f6f3;
    border-radius: 22px;
    padding: 28px 26px;
}

.wfl-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.wfl-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wfl-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red), #7a0f14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    min-width: 42px;
    box-shadow: 0 4px 12px rgba(154, 19, 25, .3);
}

.wfl-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.wfl-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.55;
}

/* ═══ BULK SUPPLY & EXPORT — WITH IMAGE ═══ */
.export-sec {
    padding: 96px 24px;
    background: #f8f6f3;
}

.export-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 60px rgba(0, 0, 0, .12);
}

.exp-img-col {
    position: relative;
    min-height: 580px;
}

.exp-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, rgba(10, 2, 3, .5) 100%);
}

.exp-img-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 20px;
}

.exp-img-stat {
    position: absolute;
    bottom: 32px;
    left: 28px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
}

.exp-img-stat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--red);
}

.exp-img-stat-l {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.exp-content-col {
    background: #fff;
    padding: 56px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-tag {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.exp-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 8px;
}

.exp-h2 em {
    color: var(--red);
    font-style: normal;
}

.exp-bar {
    width: 46px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 12px 0 20px;
}

.exp-p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 26px;
}

.exp-feat-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.exp-feat-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    min-width: 44px;
}

.exp-feat-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.exp-feat-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.exp-panel {
    margin-top: 26px;
    background: linear-gradient(135deg, #1a0608, #2d0a10);
    border-radius: 14px;
    padding: 20px 22px;
}

.exp-panel-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.exp-panel-row:last-child {
    border-bottom: none;
}

.exp-panel-tick {
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
}

.exp-panel-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

/* ═══ MARKETS ═══ */
.markets-sec {
    padding: 96px 24px;
    background: #fff;
}

.markets-globe {
    background: linear-gradient(135deg, #1a0608 0%, #2d0a10 100%);
    border-radius: 24px;
    padding: 56px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.markets-globe-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 160, 23, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 160, 23, .04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.mglobeico {
    font-size: 72px;
    margin-bottom: 20px;
    position: relative;
}

.mbadges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.mbadge {
    background: rgba(212, 160, 23, .15);
    border: 1px solid rgba(212, 160, 23, .3);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
}

/* ═══ WHO SHOULD CONTACT — WITH IMAGES ═══ */
.clients-sec {
    padding: 96px 24px;
    background: #f8f6f3;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.client-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    transition: transform .3s, box-shadow .3s;
    background: #fff;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(154, 19, 25, .18);
}

.client-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.client-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.client-card:hover .client-img-wrap img {
    transform: scale(1.07);
}

.client-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 2, 3, .6) 0%, transparent 55%);
}

.client-ico-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.client-body {
    background: #fff;
    padding: 20px 20px 22px;
}

.client-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.client-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.client-pill {
    display: inline-block;
    margin-top: 10px;
    background: #fdf0f0;
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 10px;
    border: 1px solid rgba(154, 19, 25, .15);
}

/* wide CTA */
.client-cta {
    grid-column: 1/-1;
    background: linear-gradient(135deg, var(--red) 0%, #7a0f14 100%);
    border-radius: 20px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
}

.client-cta-left h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.client-cta-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    max-width: 480px;
    line-height: 1.65;
}

.client-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ═══ CTA SECTION ═══ */
.cta-sec {
    padding: 96px 24px;
    background: linear-gradient(135deg, var(--red) 0%, #7a0f14 100%);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-h2 em {
    color: var(--gold);
    font-style: normal;
}

.cta-p {
    font-size: 17px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--dark);
    color: #fff;
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.flogo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.flogo-box {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flogo-box span {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.flogo-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fbadge {
    font-size: 10px;
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, .3);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .5px;
}

.fcol-title {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.flink {
    display: block;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    padding: 5px 0;
    text-align: left;
    transition: color .2s;
    cursor: pointer;
}

.flink:hover {
    color: #fff;
}

.ftext {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    padding: 4px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.fcopy {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
}

/* ═══ PAGE HEADER ═══ */
.page-header {
    background: linear-gradient(135deg, #1a0608, #2d0a10);
    padding: 152px 24px 64px;
    text-align: center;
}

.phtag {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.phh1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.phsub {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    max-width: 480px;
    margin: 0 auto 20px;
}

.phbar {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0 auto;
}

/* ═══ ABOUT PAGE ═══ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.about-bar {
    width: 46px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 20px;
}

.about-p {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}

.mvvc {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    margin-bottom: 16px;
    transition: transform .3s, box-shadow .3s;
}

.mvvc:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(154, 19, 25, .1);
}

.mvvc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.mvvc-ico {
    font-size: 22px;
}

.mvvc-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--red);
}

.mvvc-text {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.cert-c {
    background: #fff;
    border: 2px solid #efefef;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    transition: transform .3s, border-color .3s;
}

.cert-c:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.cert-ico {
    font-size: 34px;
    margin-bottom: 12px;
}

.cert-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
}

.cert-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

/* ═══ SERVICES PAGE ═══ */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.srv-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 20px;
    padding: 34px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    transition: transform .3s, box-shadow .3s;
}

.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(154, 19, 25, .15);
}

.srv-ico-box {
    width: 52px;
    height: 52px;
    background: #fdf0f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: background .3s;
}

.srv-card:hover .srv-ico-box {
    background: var(--red);
}

.srv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.srv-bar {
    width: 34px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 14px;
}

.srv-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 16px;
}

.srv-pts {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.srv-pt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spt-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    min-width: 5px;
}

.spt-text {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.proc-list {
    display: flex;
    flex-direction: column;
}

.proc-item {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #eee;
}

.proc-item:last-child {
    border-bottom: none;
}

.proc-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    color: rgba(154, 19, 25, .12);
    min-width: 56px;
}

.proc-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.proc-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.65;
}

/* ═══ CONTACT PAGE ═══ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 52px;
    align-items: start;
}

.ctc-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ctc-bar {
    width: 46px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 22px;
}

.ctc-p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ctc-info {
    display: flex;
    gap: 14px;
    padding: 15px 17px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 10px;
}

.ctc-info-ico {
    font-size: 20px;
}

.ctc-info-lbl {
    font-size: 10px;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ctc-info-val {
    font-size: 15px;
    color: var(--red);
    font-weight: 600;
}

.ctc-badges {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ctc-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    background: #fdf0f0;
    border: 1px solid rgba(154, 19, 25, .15);
    padding: 5px 12px;
    border-radius: 4px;
}

.ctc-form {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
}

.form-h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.form-sub {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 28px;
}

.fgrp {
    margin-bottom: 15px;
}

.flbl {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.finput,
.ftarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border .2s;
    background: #fafafa;
    font-family: 'DM Sans', sans-serif;
}

.finput:focus,
.ftarea:focus {
    border-color: var(--red);
}

.ftarea {
    resize: vertical;
}

.btn-submit {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all .3s;
}

.btn-submit:hover {
    background: #7a0f14;
    transform: translateY(-2px);
}

.form-success {
    text-align: center;
    padding: 40px 0;
    display: none;
}

.form-success.show {
    display: block;
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {
    .why-bento {
        grid-template-columns: 1fr;
    }

    .why-big-card {
        grid-row: auto;
        min-height: 320px;
    }

    .why-stats-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:900px) {

    .intro-grid,
    .export-layout,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .exp-img-col {
        min-height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .clients-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .prod-card-wrap {
        grid-template-columns: 1fr !important;
    }

    .prod-img-col {
        min-height: 260px;
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .intro-sec,
    .prod-sec,
    .why-sec,
    .export-sec,
    .markets-sec,
    .clients-sec,
    .cta-sec {
        padding: 64px 24px;
    }

    .wss-n {
        font-size: 26px !important;
    }

    .clients-grid {
        grid-template-columns: 1fr !important;
    }

    .client-cta {
        flex-direction: column;
        padding: 26px 22px !important;
    }

    .exp-content-col {
        padding: 36px 26px !important;
    }
}

@media(max-width:480px) {

    .intro-checks,
    .intro-stat-grid {
        grid-template-columns: 1fr !important;
    }

    .ctc-form {
        padding: 22px 16px !important;
    }

    .why-stats-strip {
        grid-template-columns: 1fr 1fr !important;
    }

}

.hero-center {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-center-bg {
    /* position: absolute;
        inset: 0;
        background-image: url('./img/shipping-container-handling-port.jpg') center/cover no-repeat;
        z-index: 1; */
    position: absolute;
    inset: 0;
    background-image: url('./img/shipping-container-handling-port.jpg');
    background-size: cover;
    background-position: center;
}

/* Dark overlay for readability */
.hero-center::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75));
    z-index: 2;
}

.hero-center-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
    color: #fff;
}

/* Title */
.hero-center-title {
    font-size: clamp(36px, 4.8vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-center-title span {
    color: #d4a017;
}

/* Description */
.hero-center-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}