:root {
    /* ===== DESIGN BRIEF COLORS ===== */
    --navy: #03265A;
    /* Deep Navy  — Headlines, nav, primary body emphasis */
    --dark-blue: #03265A;
    --blue: #03265A;
    --orange: #FF770F;
    /* Primary Orange — CTA buttons, active icons, highlights */
    --orange-dark: #D95B00;
    /* Orange Dark — hover state */
    --peach: #FFE9D6;
    /* Soft Peach — icon circles, badges */
    --light-cream: #F3EBDD;
    /* Light Cream — feature bands, section-light BG */
    --warm-ivory: #F9F7F3;
    /* Warm Ivory — large quiet backgrounds */
    --white: #ffffff;
    --light-gray: #F3EBDD;
    /* mapped → Light Cream */
    --soft-gray: #FFE9D6;
    /* mapped → Soft Peach */
    --line: #E6EBF1;
    /* Cool Border Neutral — borders, dividers, fields */
    --text: #03265A;
    /* mapped → Deep Navy */
    --muted: #768692;
    --bg: var(--warm-ivory);
    /* Muted Blue-Gray — secondary copy, captions */
    --shadow: 0 18px 50px rgba(3, 38, 90, 0.10);
    --shadow-soft: 0 10px 28px rgba(3, 38, 90, 0.06);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--warm-ivory);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0;
}

.site-topbar {
    background: var(--warm-ivory);
    color: var(--muted);
    font-size: 14px;
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-links,
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.topbar-item svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.harvest-logo {
    width: 180px;
    height: auto;
    display: block;
    flex: 0 0 auto;
}

.logo-blue {
    color: var(--dark-blue);
}

.logo-orange {
    color: var(--orange);
}

.logo-dark {
    color: #1b2635;
}

.logo-white .logo-blue,
.logo-white .logo-orange,
.logo-white .logo-dark {
    color: var(--white);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--text);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
}

.main-nav a {
    position: relative;
    padding: 10px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-btn {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--white);
    transition:
        border-color 180ms ease,
        color 180ms ease,
        background 180ms ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
    border-color: var(--orange);
    color: var(--orange-dark);
    background: #fff8f1;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.menu-toggle {
    display: none;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 12px 18px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 14px 28px rgba(255, 119, 15, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-primary.active {
    background: var(--orange-dark) !important;
    border-color: var(--orange-dark) !important;
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}

.btn-dark {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.btn-dark:hover,
.btn-dark:focus-visible {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

.hero {
    min-height: 78vh;
    color: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--warm-ivory);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 96px;
    background: linear-gradient(180deg,
            rgba(3, 38, 90, 0),
            rgba(3, 38, 90, 0.18));
    pointer-events: none;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    background-position: center;
    background-size: cover;
    transition:
        opacity 900ms ease,
        transform 5200ms ease;
    will-change: opacity, transform;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(249, 247, 243, 0.94) 0%,
            rgba(249, 247, 243, 0.82) 42%,
            rgba(243, 235, 221, 0.52) 100%),
        linear-gradient(0deg, rgba(249, 247, 243, 0.12), rgba(243, 235, 221, 0.04));
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
    padding: 78px 0 108px;
    display: grid;
}

.hero-content {
    grid-area: 1 / 1;
    max-width: 740px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 520ms ease,
        transform 520ms ease,
        visibility 0s linear 0s;
}

.hero-content.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--orange);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.16;
    font-weight: 700;
    /* Heading: Poppins Bold */
}

h3 {
    font-weight: 600;
    /* Sub Heading: Poppins SemiBold */
}

h1 {
    color: var(--navy);
    margin-top: 18px;
    font-size: 56px;
    font-weight: 700;
    max-width: 760px;
}

.hero-copy {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero .btn-outline {
    color: var(--navy);
    border-color: rgba(3, 38, 90, 0.35);
    background: rgba(255, 255, 255, 0.65);
}

.hero .btn-outline:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
    gap: 1px;
    margin-top: 120px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(3, 38, 90, 0.06);
}

.metric {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.72);
}

.metric strong {
    display: block;
    color: var(--navy);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
}

.metric span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.hero-controls {
    position: absolute;
    z-index: 3;
    right: max(20px, calc((100vw - var(--container)) / 2));
    bottom: 92px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-arrow,
.hero-dot {
    border: 1px solid rgba(3, 38, 90, 0.12);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(12px);
    transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    transform: translateY(-1px);
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(3, 38, 90, 0.12);
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
}

.hero-dot.is-active {
    width: 28px;
    border-color: var(--orange);
    background: var(--orange);
}

.tracking-section {
    position: relative;
    z-index: 2;
    margin-top: -54px;
    padding-bottom: 52px;
}

.tracking-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.tracking-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.tracking-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--orange);
    background: #FFE9D6;
    flex: 0 0 auto;
}

.tracking-icon svg {
    width: 22px;
    height: 22px;
}

.tracking-title h2 {
    font-size: 22px;
    font-weight: 700;
}

.tracking-title p {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.tracking-form {
    display: grid;
    grid-template-columns: minmax(240px, 360px) auto;
    gap: 10px;
    position: relative;
}

.tracking-form input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 14px;
    color: var(--text);
    background: var(--warm-ivory);
    outline: 0;
}

.tracking-form input:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(21, 84, 140, 0.1);
}

.tracking-message {
    position: absolute;
    bottom: -22px;
    left: 0;
    min-height: 20px;
    color: var(--dark-blue);
    font-size: 13px;
}

.section {
    padding: 88px 0;
}

.section-light {
    background: var(--light-gray);
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 720px;
    margin-bottom: 38px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-items: center;
}

.section-label {
    color: var(--orange);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 700;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 54px;
    align-items: center;
}

.image-stack {
    position: relative;
    min-height: 560px;
}

.image-stack img {
    position: absolute;
    width: 78%;
    height: 310px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-stack img:first-child {
    top: 0;
    left: 0;
    z-index: 1;
}

.image-stack img:nth-of-type(2) {
    top: 235px;
    right: auto;
    bottom: auto;
    left: 26%;
    width: 74%;
    height: 310px;
    /* border: 8px solid var(--white); */
    z-index: 2;
}

.experience-badge {
    position: absolute;
    left: 52px;
    bottom: 32px;
    width: 156px;
    min-height: 132px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 18px;
    color: var(--white);
    border-radius: var(--radius);
    background: var(--orange);
    box-shadow: 0 18px 38px rgba(255, 119, 15, 0.24);
    z-index: 3;
}

.experience-badge strong {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
}

.experience-badge span {
    font-size: 13px;
    line-height: 1.35;
}

.about-copy p {
    margin: 0 0 18px;
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
}

.check-list svg {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    color: var(--orange);
    flex: 0 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.article-card,
.faq-item,
.hub-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-card {
    display: grid;
    gap: 16px;
    min-height: 300px;
    padding: 24px;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 119, 15, 0.45);
    box-shadow: var(--shadow);
}

.service-icon,
.feature-icon,
.process-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--orange);
    background: #FFE9D6;
}

.service-icon svg,
.feature-icon svg,
.process-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 21px;
    font-weight: 600;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-blue);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

.text-link svg {
    width: 17px;
    height: 17px;
    color: var(--orange);
}

.feature-band {
    color: var(--navy);
    background: var(--light-cream);
}

.feature-band .section-heading h2,
.feature-band .section-heading p {
    color: var(--navy);
}

.feature-band .section-heading p {
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-item {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(3, 38, 90, 0.04);
}

.feature-item h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.feature-icon {
    color: var(--orange);
    background: var(--peach);
}

.warehouse-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: stretch;
}

.route-panel {
    min-height: 480px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(3, 38, 90, 0.76), rgba(3, 38, 90, 0.22)),
        url("https://altonex.alton.id/assets/frontend/images/services/05.webp") center / cover no-repeat;
    box-shadow: var(--shadow);
}

.route-panel::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 14%;
    top: 54%;
    border-top: 2px dashed rgba(255, 255, 255, 0.72);
    transform: rotate(-8deg);
}

.route-node {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 8px rgba(255, 119, 15, 0.22);
}

.node-jakarta {
    left: 22%;
    top: 62%;
}

.node-shanghai {
    right: 22%;
    top: 38%;
}

.route-label {
    position: absolute;
    min-width: 172px;
    padding: 12px 14px;
    color: var(--white);
    border-radius: var(--radius);
    background: rgba(3, 38, 90, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(3, 38, 90, 0.22);
}

.route-label strong {
    display: block;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.2;
}

.route-label span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.35;
}

.label-jakarta {
    left: 8%;
    bottom: 18%;
}

.label-shanghai {
    right: 8%;
    top: 22%;
}

.hub-list {
    display: grid;
    gap: 14px;
}

.hub-card {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.hub-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.hub-meta {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}

.hub-meta li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hub-meta svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    margin-top: 3px;
    flex: 0 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    counter-reset: process;
    position: relative;
}

/* Connecting timeline line on desktop */
@media (min-width: 992px) {
    .process-grid::before {
        content: "";
        position: absolute;
        top: 58px;
        /* Centered with the 54px icon */
        left: 8%;
        right: 8%;
        height: 2px;
        background: linear-gradient(to right,
                var(--orange) 0%,
                rgba(255, 119, 15, 0.3) 50%,
                var(--orange) 100%);
        z-index: 0;
        pointer-events: none;
    }
}

.process-step {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(3, 38, 90, 0.02);
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    overflow: hidden;
}

/* Sliding top border on hover */
.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange);
    transition: width 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover::before {
    width: 100%;
}

.process-step::after {
    counter-increment: process;
    content: "0" counter(process);
    position: absolute;
    right: 24px;
    top: 24px;
    color: rgba(3, 38, 90, 0.05);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover::after {
    color: rgba(255, 119, 15, 0.12);
    transform: translateY(-2px) scale(1.05);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(3, 38, 90, 0.08);
    border-color: rgba(255, 119, 15, 0.25);
}

.process-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--orange);
    background: #FFE9D6;
    transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.process-step:hover .process-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 119, 15, 0.25);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 6px;
    font-family: "Poppins", Arial, sans-serif;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14.5px;
}

.cta-band {
    padding: 88px 0;
    color: var(--navy);
    background:
        linear-gradient(90deg, rgba(249, 247, 243, 0.62) 0%, rgba(243, 235, 221, 0.62) 100%),
        url("https://altonex.alton.id/assets/frontend/images/cta/02.webp") center / cover no-repeat;
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 44px;
    align-items: center;
    background: var(--white);
    padding: 56px 64px;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(3, 38, 90, 0.05);
}

.cta-inner h2 {
    color: var(--navy);
    font-size: 36px;
    font-weight: 700;
}

.cta-inner p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.client-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
}

.client-logo {
    height: 108px;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.client-logo img {
    max-height: 54px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.78;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.article-card {
    overflow: hidden;
    display: grid;
}

.article-card img {
    width: 100%;
    height: 220px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.article-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.article-tag {
    color: var(--orange);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
}

.article-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.faq-layout {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.faq-aside {
    position: sticky;
    top: 116px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    border: 0;
    color: var(--navy);
    background: var(--white);
    padding: 18px 20px;
    text-align: left;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    transition: transform 180ms ease;
}

.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--muted);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.site-footer {
    color: var(--navy);
    background: var(--warm-ivory);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 0.85fr 0.9fr;
    gap: 34px;
    padding: 72px 0 44px;
}

.footer-brand .harvest-logo {
    width: 320px;
    max-width: 100%;
}

.footer-main p {
    margin: 20px 0 0;
    max-width: 440px;
}

.footer-main h3 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
}

.footer-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    color: var(--white);
}

.footer-social a:hover,
.footer-social a:focus-visible {
    border-color: var(--orange);
    background: var(--orange);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ══════════════════════════════════════════════════════════════
         lp-footer — disamakan dengan sales.html
      ══════════════════════════════════════════════════════════════ */
.lp-footer {
    background:
        linear-gradient(90deg, rgba(249, 247, 243, 0.94) 0%, rgba(249, 247, 243, 0.88) 100%),
        url("../assets/hero-sea-freight.png") center / cover no-repeat;
    color: var(--navy);
    padding: 64px 0 0;
    font-size: 14px;
    line-height: 1.7;
    position: relative;
    border-top: 1px solid var(--line);
}

.lp-footer-wrap {
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
    gap: 48px 36px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(3, 38, 90, 0.1);
}

.lp-footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.lp-footer-col p:not(.lp-footer-heading),
.lp-footer-col address {
    font-style: normal;
    color: var(--navy);
    margin: 0;
}

.lp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.lp-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--line);
    color: var(--navy);
    transition: background 180ms ease, color 180ms ease;
    flex-shrink: 0;
}

.lp-footer-social a:hover {
    background: var(--orange);
    color: #fff;
}

.lp-footer-social svg {
    display: block;
}

.lp-footer-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    background: #25d366;
    color: #fff !important;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 24px;
    transition: filter 160ms ease;
}

.lp-footer-wa-link:hover {
    filter: brightness(1.1);
}

.lp-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer-col a[href^="https://wa.me/"],
.lp-footer-col a[href^="mailto:"] {
    color: var(--navy) !important;
    transition: color 160ms ease;
    text-decoration: none;
}

.lp-footer-col a[href^="https://wa.me/"]:hover,
.lp-footer-col a[href^="mailto:"]:hover {
    color: var(--orange) !important;
}

.lp-footer-col ul li a {
    color: var(--navy);
    transition: color 160ms ease;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

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

.lp-footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--navy);
}

.lp-footer-bottom a {
    color: var(--navy);
    transition: color 160ms ease;
}

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

/* Responsive lp-footer */
@media (max-width: 900px) {
    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }
}

@media (max-width: 480px) {
    .lp-footer {
        padding: 48px 0 0;
    }

    .lp-footer-wrap {
        width: calc(100% - 28px);
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 18px 0;
    }
}

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 16px;
    color: var(--white);
    border-radius: var(--radius);
    background: var(--orange);
    box-shadow: 0 16px 32px rgba(255, 119, 15, 0.32);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.wa-float svg {
    width: 19px;
    height: 19px;
}

/* ── Floating WhatsApp (Green/Sales version) ── */
.lp-wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    min-height: 50px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.38);
    transition:
        transform 180ms ease,
        background 180ms ease;
    text-decoration: none;
}

.lp-wa-float:hover {
    background: #1ebe58;
    transform: translateY(-3px);
    color: var(--white);
}

.lp-wa-float svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
        clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-soft {
    transform: translate3d(0, 18px, 0);
}

.reveal-left {
    transform: translate3d(-34px, 0, 0);
}

.reveal-right {
    transform: translate3d(34px, 0, 0);
}

.reveal-scale {
    transform: translate3d(0, 24px, 0) scale(0.97);
}

.reveal-scale.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-image {
    clip-path: inset(0 0 16% 0 round var(--radius));
}

.reveal-image.is-visible {
    clip-path: inset(0 0 0 0 round var(--radius));
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-metrics {
    animation: heroLift 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
    animation-delay: 80ms;
}

.hero-copy {
    animation-delay: 160ms;
}

.hero-actions {
    animation-delay: 240ms;
}

.hero-metrics {
    animation-delay: 340ms;
}

@keyframes heroLift {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        clip-path: none;
    }
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 14px;
        font-size: 13px;
    }

    .harvest-logo {
        width: 150px;
    }

    .header-actions .btn {
        padding: 10px 14px;
        font-size: 13px;
        min-height: 40px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .warehouse-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-aside {
        position: static;
    }

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

@media (max-width: 900px) {
    :root {
        --header-h: 78px;
    }

    .site-topbar {
        display: none;
    }

    .header-inner {
        height: var(--header-h);
    }

    /* ── Mobile nav panel ── */
    .main-nav {
        /* Override semua flex desktop */
        flex: none;
        min-width: 0;
        justify-content: flex-start;

        position: fixed;
        left: 0;
        right: 0;
        top: var(--header-h);
        /* Tinggi auto mengikuti konten, max setengah layar */
        height: auto;
        max-height: calc(100dvh - var(--header-h) - 60px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 4px 0 12px;
        background: var(--white);
        border-top: 3px solid var(--orange);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        box-shadow: 0 12px 40px rgba(3, 38, 90, 0.22);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 9999;
    }

    .main-nav.is-open {
        display: flex;
    }

    /* Link langsung (BERANDA, MYFASDELIEXPRESS, FAQ, KONTAK) */
    .main-nav>a {
        display: block;
        padding: 15px 20px;
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        border-bottom: 1px solid var(--soft-gray);
    }

    .main-nav>a:hover,
    .main-nav>a:active {
        background: #FFE9D6;
        color: var(--orange);
    }

    .main-nav a::after {
        display: none !important;
    }

    /* nav-dropdown wrapper */
    .main-nav .nav-dropdown {
        display: block;
        position: static;
        border-bottom: 1px solid var(--soft-gray);
    }

    /* Dropdown toggle button */
    .main-nav .nav-dropdown>a.dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        width: 100%;
        cursor: pointer;
        border: none;
        background: none;
    }

    .main-nav .nav-dropdown>a.dropdown-toggle:hover,
    .main-nav .nav-dropdown>a.dropdown-toggle:active {
        background: #FFE9D6;
        color: var(--orange);
    }

    .main-nav .nav-dropdown>a.dropdown-toggle svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        transition: transform 220ms ease;
    }

    /* Chevron rotate saat terbuka */
    .main-nav .nav-dropdown>a.dropdown-toggle.show svg,
    .main-nav .nav-dropdown>a.dropdown-toggle[aria-expanded="true"] svg {
        transform: rotate(180deg);
    }

    /* Dropdown menu — override Bootstrap positioning */
    .main-nav .nav-dropdown-menu {
        position: static !important;
        float: none !important;
        transform: none !important;
        display: none;
        border: none !important;
        box-shadow: none !important;
        background: var(--white) !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 6px 0 !important;
        min-width: 0 !important;
        width: 100%;
    }

    .main-nav .nav-dropdown-menu.show {
        display: block !important;
    }

    .main-nav .nav-dropdown-menu .dropdown-item {
        padding: 12px 32px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text) !important;
        border-radius: 0;
        white-space: normal;
    }

    .main-nav .nav-dropdown-menu .dropdown-item:hover,
    .main-nav .nav-dropdown-menu .dropdown-item:active {
        background: var(--white) !important;
        color: var(--orange) !important;
        padding-left: 32px !important;
    }

    /* Sembunyikan btn Konsultasi, tampilkan hamburger */
    .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
    }

    h1 {
        font-size: 42px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .hero-controls {
        right: 20px;
        bottom: 58px;
    }

    .tracking-panel {
        grid-template-columns: 1fr;
    }

    .tracking-form {
        grid-template-columns: 1fr;
    }

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

    .image-stack {
        min-height: 500px;
    }

    .feature-grid,
    .article-grid,
    .client-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-h: 64px;
    }

    .container,
    .hero-inner {
        width: calc(100% - 28px);
        max-width: var(--container);
    }

    .harvest-logo {
        width: 140px;
        max-width: 100%;
    }

    .header-inner {
        height: var(--header-h);
        gap: 8px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .icon-btn:not(.menu-toggle) {
        display: none;
    }

    #menuToggle {
        display: inline-grid !important;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
        min-width: 0;
    }

    .hero-inner {
        padding: 64px 0 92px;
    }

    h1 {
        font-size: 34px;
    }

    .hero-copy {
        font-size: 16px;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-actions {
        width: 100%;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-controls {
        left: 14px;
        right: 14px;
        bottom: 36px;
        justify-content: center;
    }

    .hero-arrow {
        display: none;
    }

    .metric {
        padding: 16px;
    }

    .section {
        padding: 66px 0;
    }

    .section-heading h2,
    .cta-inner h2 {
        color: var(--navy);
        font-size: 36px;
        font-weight: 700;
    }

    .tracking-section {
        margin-top: -42px;
    }

    .tracking-panel {
        padding: 18px;
    }

    .tracking-title {
        flex-direction: column;
    }

    .image-stack {
        min-height: 430px;
    }

    .image-stack img {
        width: 82%;
        height: 250px;
    }

    .image-stack img:nth-of-type(2) {
        top: 180px;
        left: 18%;
        width: 78%;
        height: 220px;
        border-width: 6px;
    }

    .experience-badge {
        left: 14px;
        bottom: 18px;
        width: 138px;
        min-height: 112px;
    }

    .service-grid,
    .feature-grid,
    .process-grid,
    .article-grid,
    .client-row,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .route-panel {
        min-height: 360px;
    }

    .label-jakarta,
    .label-shanghai {
        left: 16px;
        right: 16px;
        min-width: 0;
    }

    .label-jakarta {
        bottom: 22px;
    }

    .label-shanghai {
        top: 22px;
    }

    .client-logo {
        height: 92px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .wa-float {
        left: 14px;
        right: 14px;
        justify-content: center;
    }

    .lp-wa-float {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 28px);
        max-width: 400px;
        justify-content: center;
        bottom: 16px;
    }

    .lp-wa-float:hover {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* --- SUBPAGE HERO BANNER --- */
.subpage-hero {
    min-height: 380px;
    background-color: var(--warm-ivory);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--navy);
}

.subpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249, 247, 243, 0.95) 0%, rgba(249, 247, 243, 0.88) 55%, rgba(249, 247, 243, 0.42) 100%);
}

.subpage-hero-inner {
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.subpage-hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    font-family: "Poppins", Arial, sans-serif;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--navy);
    transition: color 180ms ease;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb span {
    color: var(--orange);
}

/* --- SUBPAGE CONTENT & BADGE --- */
.badge-label {
    display: inline-block;
    padding: 6px 18px;
    background: #FFE9D6;
    color: var(--orange);
    border-radius: 999px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.subpage-content {
    padding: 88px 0;
}

.content-box {
    max-width: 920px;
}

.content-box h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    font-family: "Poppins", Arial, sans-serif;
}

.content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 22px;
}

/* --- VISION MISSION GRID --- */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    margin-top: 24px;
}

.vm-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 42px;
    box-shadow: var(--shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 119, 15, 0.45);
}

.vm-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--orange);
    background: #FFE9D6;
    margin-bottom: 28px;
}

.vm-icon svg {
    width: 32px;
    height: 32px;
}

.vm-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.vm-card p,
.vm-card ul {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.vm-card ul {
    margin: 0;
    padding-left: 20px;
}

.vm-card li {
    margin-bottom: 12px;
}

/* --- TEAM GRID --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.team-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--soft-gray);
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: var(--orange);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 500;
}

/* --- GALLERY GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease, opacity 300ms ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 38, 90, 0) 55%, rgba(3, 38, 90, 0.58) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    margin: 0;
    color: var(--white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .subpage-hero h1 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        color: var(--navy);
        font-family: "Poppins", Arial, sans-serif;
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .subpage-hero h1 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        color: var(--navy);
        font-family: "Poppins", Arial, sans-serif;
    }

    .subpage-hero-inner {
        padding: 50px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .content-box h2 {
        font-size: 30px;
    }
}

/* --- GUDANG / WAREHOUSE CARDS --- */
.wh-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    margin-top: 36px;
}

.wh-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.wh-img-box {
    position: relative;
    width: 100%;
    height: 240px;
    background: var(--white);
    overflow: hidden;
}

.wh-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.wh-card:hover .wh-img-box img {
    transform: scale(1.05);
}

.wh-flag-badge {
    position: absolute;
    left: 24px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--white);
    color: var(--navy);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(3, 38, 90, 0.18);
    z-index: 2;
}

.wh-body {
    padding: 36px 36px 42px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.wh-body h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.3;
}

.wh-address {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 32px;
}

.wh-contact-group {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--soft-gray);
}

.wh-contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wh-contact-label {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
}

.wh-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 15px;
}

.wh-contact-row svg {
    width: 18px;
    height: 18px;
    color: var(--muted);
    flex: 0 0 auto;
}

.wh-open-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 15px;
    color: var(--muted);
}

.wh-open-status strong {
    color: var(--text);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
}

.wh-open-status svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .wh-grid {
        grid-template-columns: 1fr;
    }

    .wh-body {
        padding: 28px 24px 32px;
    }
}

/* ==========================================
   NAV & LANG DROPDOWN STYLES
   ========================================== */

/* Language Dropdown in Topbar */
.btn-lang {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.15s ease-in-out;
}

.btn-lang svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex: 0 0 auto;
}

.btn-lang:hover,
.btn-lang:focus {
    color: var(--navy);
}

.btn-lang.dropdown-toggle::after {
    display: none !important;
}

.lang-dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px 0;
    min-width: 160px;
    font-size: 16px;
    z-index: 1050;
}

.lang-dropdown-menu .dropdown-item {
    padding: 8px 16px;
    color: var(--text);
    font-weight: 500;
    transition: all 150ms ease;
}

.lang-dropdown-menu .dropdown-item:hover,
.lang-dropdown-menu .dropdown-item.active {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

/* Main Nav Dropdown */
.main-nav .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.main-nav .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.main-nav .dropdown-toggle::after {
    display: none !important;
}

.main-nav .dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 200ms ease;
}

.main-nav .dropdown-toggle.show svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 200px;
    margin-top: 8px !important;
    font-size: 14px;
    font-family: "Poppins", Arial, sans-serif;
    z-index: 1050;
}

.nav-dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: var(--text);
    font-weight: 500;
    transition: all 150ms ease;
    position: relative;
}

.nav-dropdown-menu .dropdown-item::after {
    display: none !important;
}

.nav-dropdown-menu .dropdown-item:hover,
.nav-dropdown-menu .dropdown-item:focus {
    background-color: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    padding-left: 24px;
}

@media (max-width: 900px) {
    .main-nav .nav-dropdown {
        display: block;
        position: static;
        align-items: stretch;
        flex-direction: column;
    }

    .main-nav .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        display: flex !important;
        padding-right: 20px !important;
    }

    /* Chevron — pastikan tidak keluar layar */
    .main-nav .dropdown-toggle svg {
        flex-shrink: 0;
        margin-left: auto;
    }

    .nav-dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        background-color: var(--white) !important;
        margin: 0 !important;
        padding: 4px 0 !important;
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        float: none !important;
        transform: none !important;
        border-radius: 0 !important;
    }

    .nav-dropdown-menu .dropdown-item {
        padding: 12px 32px;
    }

    .nav-dropdown-menu .dropdown-item:hover {
        background: var(--white) !important;
        color: var(--orange) !important;
        padding-left: 36px;
    }
}

/* ==========================================
   SERVICE SUBPAGE STYLES (UDARA & LAUT)
   ========================================== */
.service-subpage-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.service-subpage-section:nth-child(even) {
    background-color: var(--white);
}

.service-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.service-section-header .badge-label {
    display: inline-block;
    margin-bottom: 12px;
}

.service-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}

.service-step-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.service-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon-circle svg {
    width: 36px;
    height: 36px;
    color: var(--orange);
}

.service-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.service-step-card p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 200ms ease;
}

.rule-item:hover {
    transform: translateX(4px);
}

.rule-item svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex: 0 0 auto;
    margin-top: 2px;
}

.rule-item p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ==========================================
   ARTIKEL, BERITA & DETAIL PAGE STYLES
   ========================================== */
.blog-subpage-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.article-detail-container {
    padding: 80px 0;
    background-color: var(--white);
}

.main-article-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.main-article-card .article-featured-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.main-article-body {
    padding: 40px;
}

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
}

.main-article-body h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.3;
}

.main-article-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 16px;
}

.main-article-body p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.main-article-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background-color: rgba(249, 115, 22, 0.08);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 18px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
}

.article-share-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.article-tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.tag-chip {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--bg);
    color: var(--text);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 200ms ease, color 200ms ease;
}

.tag-chip:hover {
    background-color: var(--orange);
    color: var(--white);
}

.share-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.share-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg);
    color: var(--navy);
    text-decoration: none;
    transition: all 200ms ease;
}

.share-btn:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sidebar Widgets */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 2px;
}

.widget-search-form .input-group {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.widget-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 200ms ease;
}

.widget-category-list li a:hover {
    background-color: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    padding-left: 16px;
}

.widget-category-list li a .cat-count {
    font-size: 13px;
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 12px;
    color: var(--muted);
}

.widget-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 200ms ease;
}

.recent-post-item:hover {
    transform: translateX(4px);
}

.recent-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
}

.recent-post-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-info .post-date {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================
   KONTAK PAGE STYLES
   ========================================== */
.contact-subpage-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 300ms ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: var(--orange);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: var(--orange);
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-form-wrapper p {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 15px;
    background: #F9F7F3;
    transition: all 200ms ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

/* ==========================================
   CUSTOM PAGINATION STYLES (UI/UX PREMIUM)
   ========================================== */
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 60px 0 0;
    list-style: none;
    padding: 0;
}

.custom-pagination li {
    display: inline-flex;
}

.custom-pagination .page-num,
.custom-pagination .page-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--navy);
    background-color: var(--white);
    border: 1px solid var(--line);
    transition: all 200ms ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.custom-pagination .page-num:hover,
.custom-pagination .page-btn:hover:not(.disabled) {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.15);
}

.custom-pagination .page-num.active {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
    transform: none;
}

.custom-pagination .page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    background-color: var(--bg);
    border-color: var(--line);
    box-shadow: none;
}

.custom-pagination .page-btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   MYFASDELI & LOYALTY POINTS STYLES
   ========================================== */
.myfasdeli-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.myfasdeli-header {
    margin-bottom: 36px;
}

.myfasdeli-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.myfasdeli-header .header-line {
    width: 40px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
    margin-bottom: 16px;
}

.myfasdeli-header .myfasdeli-subtitle {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.myfasdeli-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.m-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.m-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    color: var(--orange);
}

.m-feature-icon svg {
    width: 24px;
    height: 24px;
}

.m-feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.m-feature-text p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.phone-mockup-wrapper {
    width: 100%;
    max-width: 260px;
    border: 10px solid var(--line);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.2);
    background-color: var(--white);
}

.phone-mockup-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.myfasdeli-download-box {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.download-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.download-text p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
}

.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--navy);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 200ms ease;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}

.store-btn:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}

.store-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn-text .small-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
    opacity: 0.8;
}

.store-btn-text .big-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

/* Loyalty Card Styles */
.points-banner {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.points-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.8;
    display: block;
    margin-bottom: 8px;
}

.points-number-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.points-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.points-unit {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
}

.points-banner-right .coins-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.loyalty-steps-grid {
    margin-bottom: 40px;
    flex-grow: 1;
}

.loyalty-step-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.l-step-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 37, 64, 0.05);
    border-radius: 16px;
    color: var(--navy);
    margin-bottom: 16px;
    transition: all 200ms ease;
}

.loyalty-step-item:hover .l-step-icon {
    background-color: var(--orange);
    color: var(--white);
    transform: scale(1.05);
}

.l-step-icon svg {
    width: 26px;
    height: 26px;
}

.loyalty-step-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.loyalty-step-item p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

.loyalty-action {
    margin-top: auto;
}

.btn-loyalty {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    border-radius: 14px;
}

@media (max-width: 991px) {
    .myfasdeli-card {
        padding: 28px;
    }

    .points-number {
        font-size: 32px;
    }

    .points-banner {
        padding: 20px;
    }

    .points-banner-right .coins-img {
        width: 70px;
        height: 70px;
    }

    .loyalty-step-item {
        padding: 0 8px;
    }
}

/* ══════════════════════════════════════════
   Section: Testimoni — dynamic slider
══════════════════════════════════════════ */
.testimonial-band {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonial-band::before {
    display: none;
}

.testimonial-band .container {
    position: relative;
    z-index: 1;
}

.testimonial-heading {
    color: var(--navy) !important;
}

.testimonial-subheading {
    color: var(--muted) !important;
    margin: 0;
    font-size: 17px;
}

/* ── Slider layout ── */
.testimonial-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.testimonial-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    gap: 22px;
    transition: transform 420ms cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.testimonial-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

/* ── Nav buttons ── */
.testimonial-nav-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 220ms, border-color 220ms, transform 180ms;
    backdrop-filter: blur(8px);
}

.testimonial-nav-btn:hover:not(:disabled) {
    background: rgba(245, 130, 32, .22);
    border-color: rgba(245, 130, 32, .55);
    transform: scale(1.08);
}

.testimonial-nav-btn:disabled {
    opacity: .32;
    cursor: not-allowed;
}

/* ── Dot indicators ── */
.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: rgba(3, 38, 90, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 260ms, width 260ms, opacity 260ms;
}

.testimonial-dot.is-active {
    width: 28px;
    background: var(--orange);
}

.testimonial-dot:hover:not(.is-active) {
    background: rgba(3, 38, 90, 0.3);
}

/* ── Card (sized by JS via CSS custom prop) ── */
.testimonial-card {
    flex-shrink: 0;
    width: var(--tc-width, 340px);
    display: flex;
    flex-direction: column;
    padding: 34px 30px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
    transition: border-color 260ms, background 260ms, box-shadow 260ms;
    role: listitem;
}

.testimonial-card:hover {
    border-color: rgba(245, 130, 32, .55);
    background: var(--white);
    box-shadow: 0 20px 48px rgba(6, 27, 58, 0.12), 0 0 0 1px rgba(245, 130, 32, 0.18);
}

.testimonial-card--accent {
    border-color: rgba(245, 130, 32, .38);
    background: rgba(245, 130, 32, .07);
    box-shadow: 0 0 0 1px rgba(245, 130, 32, .18) inset;
}

.testimonial-card--accent:hover {
    background: rgba(245, 130, 32, .12);
    border-color: rgba(245, 130, 32, .65);
}

/* ── Card internals ── */
.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-quote-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    line-height: .7;
    color: var(--orange);
    opacity: .75;
    user-select: none;
    flex-shrink: 0;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.testimonial-stars svg {
    width: 17px;
    height: 17px;
    color: var(--orange);
    flex-shrink: 0;
}

.testimonial-text {
    flex: 1;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.72;
    color: var(--text);
    font-style: italic;
}

.testimonial-divider {
    height: 1px;
    background: var(--line);
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* Author section: avatar + name/role in one row, badge on its own row below */
.testimonial-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(245, 130, 32, .38);
}

/* author-info fills the rest of the first row alongside the avatar */
.testimonial-author-info {
    flex: 1;
    min-width: 0;
}

.testimonial-author-info strong {
    display: block;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    /* allow wrapping — no truncation */
    word-break: break-word;
}

.testimonial-author-info span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    word-break: break-word;
}

/* badge always on its own row, indented to align with text (avatar width + gap) */
.testimonial-category-badge {
    flex-basis: 100%;
    margin-left: calc(46px + 14px);
    /* avatar width + gap */
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(3, 38, 90, .08);
    border: 1px solid rgba(3, 38, 90, .12);
    border-radius: 100px;
    padding: 4px 10px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    width: fit-content;
}

.testimonial-category-badge i {
    opacity: .9;
}

/* ── Trust bar ── */
.testimonial-trust-bar {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(3, 38, 90, .1);
    border-radius: 14px;
    background: rgba(3, 38, 90, .04);
    overflow: hidden;
}

.testimonial-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 24px;
    font-size: 14px;
    color: var(--muted);
}

.testimonial-trust-item i {
    color: var(--orange);
    flex-shrink: 0;
}

.testimonial-trust-item strong {
    color: var(--navy);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
}

.testimonial-trust-sep {
    width: 1px;
    height: 40px;
    background: rgba(3, 38, 90, .1);
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-trust-bar {
        flex-direction: column;
    }

    .testimonial-trust-sep {
        width: 80%;
        height: 1px;
    }
}

@media (max-width: 640px) {
    .testimonial-slider-wrapper {
        gap: 8px;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
    }

    .testimonial-card {
        padding: 26px 22px 22px;
    }

    .testimonial-quote-mark {
        font-size: 54px;
    }

    .testimonial-category-badge {
        display: none;
    }

    .testimonial-trust-bar {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .testimonial-trust-sep {
        width: 100%;
        height: 1px;
    }
}

/* ══════════════════════════════════════════
   Section: Liputan Media
══════════════════════════════════════════ */
.media-band {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

/* Ambient glow accents — navy radial */
/* .media-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 8% 40%,  rgba(245,130,32,.065) 0%, transparent 65%),
        radial-gradient(ellipse 55% 65% at 92% 60%,  rgba(21,84,140,.25)   0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(6,27,58,.55)      0%, transparent 70%);
    pointer-events: none;
} */

.media-band .container {
    position: relative;
    z-index: 1;
}

/* ── Heading overrides for dark bg ── */
.media-heading {
    color: var(--navy) !important;
}

.media-subheading {
    color: var(--muted) !important;
    margin: 0;
    font-size: 17px;
}

/* ══ Logo Strip ══════════════════════════ */
.media-logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 56px;
    padding: 28px 32px;
    border: 1px solid rgba(3, 38, 90, .09);
    border-radius: 16px;
    background: rgba(3, 38, 90, .04);
}

.media-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    transition: transform 220ms ease;
    cursor: default;
    user-select: none;
}

.media-logo-item:hover {
    transform: translateY(-2px);
}

/* PNG logo images — white-dimmed by default, brand color on hover */
.media-logo-img {
    height: 30px;
    width: auto;
    display: block;
    /* Turns the logo white at 40% opacity on the dark navy bg */
    filter: brightness(0) opacity(0.6);
    transition: filter 280ms ease, transform 220ms ease;
}

.media-logo-item:hover .media-logo-img {
    /* Remove the white-dim filter → reveals brand color PNG + subtle depth */
    filter: opacity(1) drop-shadow(0 2px 8px rgba(3, 38, 90, .15));
}

.media-logo-sep {
    width: 1px;
    height: 28px;
    background: rgba(3, 38, 90, .1);
    flex-shrink: 0;
    align-self: center;
}

/* ══ Article Card Grid ════════════════════ */
.media-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* ── Card (the whole card is the <a> link) ── */
.media-card {
    display: flex;
    flex-direction: column;
    padding: 28px 26px 24px;
    border: 1px solid rgba(3, 38, 90, .09);
    border-radius: 18px;
    background: rgba(3, 38, 90, .03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    color: inherit;
    transition:
        transform 260ms ease,
        border-color 260ms ease,
        background 260ms ease,
        box-shadow 260ms ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Left accent bar on hover */
.media-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: var(--orange);
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 260ms ease;
}

.media-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 130, 32, .4);
    background: rgba(3, 38, 90, .06);
    box-shadow: 0 22px 52px rgba(6, 27, 58, .38), 0 0 0 1px rgba(245, 130, 32, .15);
}

.media-card:hover::after {
    transform: scaleY(1);
}

/* Featured (middle row card) */
.media-card--featured {
    border-color: rgba(245, 130, 32, .32);
    background: rgba(245, 130, 32, .06);
}

.media-card--featured:hover {
    border-color: rgba(245, 130, 32, .6);
    background: rgba(245, 130, 32, .1);
}

/* ── Card top row: outlet pill + ext icon ── */
.media-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.media-outlet-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(3, 38, 90, .08);
    border: 1px solid rgba(3, 38, 90, .12);
    border-radius: 100px;
    padding: 4px 12px 4px 8px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    transition: background 220ms, border-color 220ms, color 220ms;
}

.media-card:hover .media-outlet-pill {
    background: rgba(3, 38, 90, .13);
    border-color: var(--brand-color, rgba(255, 255, 255, .2));
    color: var(--navy);
}

.media-outlet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-color, var(--orange));
    flex-shrink: 0;
}

.media-card-ext-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(3, 38, 90, .12);
    background: rgba(3, 38, 90, .06);
    display: grid;
    place-items: center;
    color: var(--muted);
    flex-shrink: 0;
    transition: background 220ms, border-color 220ms, color 220ms, transform 220ms;
}

.media-card:hover .media-card-ext-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
}

.media-card-ext-icon i {
    width: 14px;
    height: 14px;
}

/* ── Date ── */
.media-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}

/* ── Title ── */
.media-card-title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.45;
    margin: 0 0 12px;
    flex: 1;
    transition: color 220ms;
}

.media-card:hover .media-card-title {
    color: var(--orange);
}

/* ── Excerpt ── */
.media-card-excerpt {
    font-size: 13.5px;
    line-height: 1.68;
    color: var(--muted);
    margin: 0 0 20px;
}

/* ── Footer CTA ── */
.media-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(3, 38, 90, .1);
}

.media-read-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    transition: gap 220ms, color 220ms;
}

.media-card:hover .media-read-cta {
    gap: 10px;
}

.media-read-cta i {
    width: 15px;
    height: 15px;
}

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

    .media-logo-strip {
        gap: 0;
        padding: 22px 16px;
    }

    .media-logo-item {
        padding: 8px 18px;
    }
}

@media (max-width: 900px) {
    .media-logo-sep {
        height: 22px;
    }
}

@media (max-width: 640px) {
    .media-card-grid {
        grid-template-columns: 1fr;
    }

    .media-logo-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 16px;
    }

    .media-logo-sep {
        display: none;
    }

    .media-logo-item {
        padding: 12px 16px;
        justify-content: center;
    }

    .media-card {
        padding: 22px 20px 20px;
    }
}

/* ==========================================
   CONTACT PAGE ELEGANT MAP CARD OVERLAY STYLES
   ========================================== */
.contact-map-wrapper {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-map-wrapper p {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-map-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.map-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.map-info-icon {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info-icon svg {
    width: 18px;
    height: 18px;
}

.map-info-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.map-info-text strong {
    color: var(--navy);
    display: block;
    margin-bottom: 3px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
}

.map-frame-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    flex-grow: 1;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .contact-map-wrapper {
        padding: 30px;
    }
}





.cta-band .eyebrow {
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

/* ==========================================================================
   WAREHOUSE SHOWCASE SECTION - KONTAK PAGE
   ========================================================================== */
.wh-showcase-section {
    padding: 80px 0;
    background: var(--light-cream);
    border-top: 1px solid var(--line);
}

.wh-showcase-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
}

/* Sidebar List for Desktop */
.wh-sidebar-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.wh-sidebar-title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--line);
}

.wh-sidebar-menu {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar styles for sidebar menu */
.wh-sidebar-menu::-webkit-scrollbar {
    width: 4px;
}

.wh-sidebar-menu::-webkit-scrollbar-track {
    background: transparent;
}

.wh-sidebar-menu::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 2px;
}

.wh-sidebar-group-title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 18px 0 8px 0;
    padding-left: 5px;
}

.wh-sidebar-menu> :first-child {
    margin-top: 0;
}

.wh-sidebar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 3px;
    text-align: left;
}

.wh-sidebar-btn:hover {
    background: var(--peach);
    color: var(--orange-dark);
}

.wh-sidebar-btn.active {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(3, 38, 90, 0.15);
}

.wh-sidebar-btn img.flag-img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Mobile Chips Slider */
.wh-mobile-tabs-container {
    display: none;
    /* Hidden by default on desktop */
}

.wh-display-container {
    min-width: 0;
}

/* Display Card matching reference image */
.wh-display-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wh-display-banner {
    background: var(--line);
    padding: 18px 30px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.wh-display-banner-title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    position: relative;
    z-index: 2;
}

.wh-display-content {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.wh-image-col {
    width: 55%;
    position: relative;
    overflow: hidden;
    background: #eaeaea;
}

.wh-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.wh-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease;
}

.wh-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(3, 38, 90, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.wh-details-col {
    width: 45%;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    border-left: 1px solid var(--line);
}

.wh-details-wrapper {
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(0);
}

.wh-details-wrapper.fade-out {
    opacity: 0;
    transform: translateY(8px);
}

.wh-country-label {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.wh-city-title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Custom separator line: three dots and a bar */
.wh-custom-sep {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.wh-custom-sep .dots {
    color: var(--orange);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
}

.wh-custom-sep .bar {
    height: 3px;
    width: 38px;
    background: var(--orange);
    border-radius: 2px;
}

.wh-address-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 400;
}

.wh-hours-section {
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.wh-hours-title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wh-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wh-hours-list li {
    display: grid;
    grid-template-columns: 18px 170px 1fr;
    align-items: center;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.4;
}

.wh-hours-list .bullet-dot {
    width: 6px;
    height: 6px;
    background-color: var(--orange);
    /* Theme Primary Orange */
    border-radius: 50%;
    grid-column: 1;
}

.wh-hours-list .day-label {
    font-weight: 500;
    color: var(--muted);
    grid-column: 2;
}

.wh-hours-list .time-val {
    font-weight: 600;
    color: var(--navy);
    grid-column: 3;
}

.wh-hours-list .time-val.closed {
    color: var(--orange-dark);
    /* Accent Dark Orange to indicate closed state */
    font-style: italic;
}

/* Tablet fix: keep the desktop side-by-side layout, but tighten spacing so
   the details column does not wrap onto extra lines and grow taller than the
   sidebar (affects widths like iPad Pro portrait 1024px). */
@media (min-width: 993px) and (max-width: 1199px) {
    .wh-showcase-grid {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
    }

    .wh-image-col {
        width: 48%;
    }

    .wh-details-col {
        width: 52%;
        padding: 30px 26px;
    }

    .wh-city-title {
        font-size: 26px;
        margin: 0 0 10px 0;
    }

    .wh-custom-sep {
        margin-bottom: 16px;
    }

    .wh-address-text {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .wh-hours-section {
        padding-top: 16px;
    }

    .wh-hours-title {
        margin-bottom: 10px;
    }

    .wh-hours-list li {
        grid-template-columns: 14px 120px 1fr;
        font-size: 13px;
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .wh-showcase-section {
        padding: 60px 0;
    }

    .wh-showcase-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 25px;
    }

    .wh-sidebar-card {
        display: none;
        /* Hide vertical list on tablets/mobiles */
    }

    .wh-display-container {
        min-width: 0;
    }

    .wh-mobile-tabs-container {
        display: block;
        margin-bottom: 15px;
        width: 100%;
        overflow: hidden;
    }

    .wh-mobile-tabs-scroll {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 5px 2px 15px 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        width: 100%;
    }

    .wh-mobile-tabs-scroll::-webkit-scrollbar {
        display: none;
        /* Safari/Chrome */
    }

    .wh-mobile-chip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 99px;
        color: var(--navy);
        font-family: "Inter", Arial, sans-serif;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: var(--shadow-soft);
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .wh-mobile-chip:hover {
        background: var(--peach);
        color: var(--orange-dark);
    }

    .wh-mobile-chip.active {
        background: var(--navy);
        color: var(--white);
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(3, 38, 90, 0.15);
    }

    .wh-mobile-chip img.flag-img {
        width: 16px;
        height: 12px;
        object-fit: cover;
        border-radius: 1px;
        flex-shrink: 0;
    }

    .wh-display-content {
        flex-direction: column;
        min-height: auto;
    }

    .wh-image-col {
        width: 100%;
        height: 350px;
    }

    .wh-details-col {
        width: 100%;
        padding: 40px 30px;
        border-left: none;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 768px) {
    .wh-image-col {
        height: 280px;
    }

    .wh-details-col {
        padding: 30px 24px;
    }

    .wh-city-title {
        font-size: 26px;
    }

    .wh-hours-list li {
        grid-template-columns: 18px 140px 1fr;
    }
}

@media (max-width: 576px) {
    .wh-image-col {
        height: 220px;
    }

    .wh-details-col {
        padding: 24px 18px;
    }

    .wh-hours-list li {
        grid-template-columns: 18px 1fr;
        align-items: start;
        gap: 2px 0;
    }

    .wh-hours-list .bullet-dot {
        grid-row: 1 / span 2;
        margin-top: 6px;
    }

    .wh-hours-list .day-label {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 2px;
    }

    .wh-hours-list .time-val {
        grid-column: 2;
        grid-row: 2;
    }
}