:root {
    --navy: #061b3a;
    --dark-blue: #0b3568;
    --blue: #15548c;
    --orange: #f58220;
    --orange-dark: #d96c12;
    --white: #ffffff;
    --light-gray: #f4f7fb;
    --soft-gray: #e6edf5;
    --line: #d7e1ec;
    --text: #17243a;
    --muted: #637083;
    --shadow: 0 18px 50px rgba(6, 27, 58, 0.12);
    --shadow-soft: 0 10px 28px rgba(6, 27, 58, 0.08);
    --radius: 8px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    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(--navy);
    color: rgba(255, 255, 255, 0.86);
    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;
    min-width: 250px;
}

.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: 28px;
    color: var(--text);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.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;
}

.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(245, 130, 32, 0.24);
}

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

.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(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 96px;
    background: linear-gradient(180deg,
            rgba(6, 27, 58, 0),
            rgba(6, 27, 58, 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(6, 27, 58, 0.94) 0%,
            rgba(6, 27, 58, 0.78) 42%,
            rgba(6, 27, 58, 0.26) 100%),
        linear-gradient(0deg, rgba(6, 27, 58, 0.2), rgba(6, 27, 58, 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;
}

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

.hero-copy {
    max-width: 650px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

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

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

.metric {
    padding: 18px 20px;
    background: rgba(6, 27, 58, 0.48);
}

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

.metric span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    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(255, 255, 255, 0.34);
    color: var(--white);
    background: rgba(6, 27, 58, 0.38);
    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);
}

.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(6, 27, 58, 0.38);
    backdrop-filter: blur(12px);
}

.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: #fff4e9;
    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;
}

.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(--light-gray);
    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 {
    grid-column: 1 / -1;
    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(245, 130, 32, 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(4, 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(245, 130, 32, 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: #fff4e9;
}

.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(--white);
    background:
        linear-gradient(90deg,
            rgba(6, 27, 58, 0.94),
            rgba(11, 53, 104, 0.88)),
        url("https://altonex.alton.id/storage/images/sliders/1772771197041593.jpg") center / cover no-repeat;
}

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

.feature-band .section-heading p {
    color: rgba(255, 255, 255, 0.76);
}

.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 rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
}

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

.feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
}

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

.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(6, 27, 58, 0.76), rgba(6, 27, 58, 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(245, 130, 32, 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(6, 27, 58, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(6, 27, 58, 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: 18px;
    counter-reset: process;
}

.process-step {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.process-step::after {
    counter-increment: process;
    content: "0" counter(process);
    position: absolute;
    right: 18px;
    top: 16px;
    color: rgba(6, 27, 58, 0.1);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.process-step h3 {
    font-size: 19px;
    font-weight: 600;
}

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

.cta-band {
    padding: 72px 0;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6, 27, 58, 0.92), rgba(6, 27, 58, 0.56)),
        url("https://altonex.alton.id/assets/frontend/images/cta/02.webp") center / cover no-repeat;
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

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

.cta-inner p {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    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: rgba(255, 255, 255, 0.78);
    background: var(--navy);
}

.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;
}

.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(245, 130, 32, 0.32);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

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

.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: 18px;
    }

    .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) {
    .site-topbar {
        display: none;
    }

    .header-inner {
        height: 78px;
    }

    .main-nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
    }

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

    .main-nav a {
        padding: 13px 12px;
    }

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

    .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;
    }

    .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;
    }
}

@media (max-width: 640px) {

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

    .brand {
        min-width: 0;
        flex: 1 1 auto;
        padding-right: 56px;
    }

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

    .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: 330px;
        overflow-wrap: break-word;
    }

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

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

    #menuToggle {
        display: inline-grid !important;
        visibility: visible;
        opacity: 1;
    }

    .header-inner {
        position: relative;
        gap: 12px;
    }

    .header-actions {
        display: flex !important;
        flex: 0 0 auto;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-actions {
        align-items: stretch;
    }

    .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 {
        font-size: 30px;
    }

    .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;
    }
}

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

.subpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 27, 58, 0.92) 0%, rgba(6, 27, 58, 0.72) 50%, rgba(6, 27, 58, 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(--white);
    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: rgba(255, 255, 255, 0.86);
}

.breadcrumb a {
    color: var(--white);
    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: #fff4e9;
    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(245, 130, 32, 0.45);
}

.vm-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--orange);
    background: #fff4e9;
    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(--navy);
}

.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(6, 27, 58, 0) 40%, rgba(6, 27, 58, 0.86) 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 {
        font-size: 38px;
    }
}

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

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

    .subpage-hero h1 {
        font-size: 32px;
    }

    .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(--navy);
    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(6, 27, 58, 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: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

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

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

.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: 14px;
    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: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown-menu {
        border: none;
        box-shadow: none;
        background-color: #f8fafc;
        margin: 0 10px !important;
        padding: 4px 0;
    }

    .nav-dropdown-menu .dropdown-item {
        padding: 10px 16px;
    }

    .nav-dropdown-menu .dropdown-item:hover {
        padding-left: 20px;
    }
}

/* ==========================================
   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;
    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(--navy);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.2);
    background-color: var(--navy);
}

.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;
    }
}