:root {
    --forest-900: #061a0b;
    --forest-800: #0d2810;
    --forest-700: #1a4420;
    --emerald: #2e7d32;
    --emerald-soft: #52a85a;
    --gold: #d7ad42;
    --gold-soft: #f8db82;
    --ivory: #fff8e8;
    --paper: #fffcf4;
    --ink: #10170f;
    --muted: #61725f;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.76);
    --glass-line: rgba(255, 255, 255, 0.36);
    --shadow-soft: 0 20px 70px rgba(14, 39, 18, 0.14);
    --shadow-strong: 0 26px 90px rgba(7, 27, 9, 0.28);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.mobile-br {
    display: none;
}


a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(1420px, 90%);
    margin: auto;
}

.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--gold), var(--emerald), var(--gold-soft));
    z-index: 2000;
}



.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0 40px;
    transition: 0.35s var(--ease);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.45);
    padding: 0 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 140px;
    width: auto;
    display: block;
    margin: 5px 0 -25px 0;
    transition: 0.3s var(--ease);
}

.header.scrolled .logo img {
    height: 140px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #1d391d;
    font-size: 0.93rem;
    font-weight: 700;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    transition: 0.35s var(--ease);
    background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px;
    border-radius: 30px;
    background: var(--forest-700);
    transition: 0.35s var(--ease);
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    padding: 14px 28px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--emerald), var(--forest-700));
    box-shadow: 0 18px 38px rgba(38, 89, 41, 0.3);
    transition: 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.quick-inquiry-btn {
    background: linear-gradient(135deg, #2e8b3c, #0d421b);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s var(--ease);
}

.quick-inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 66, 27, 0.2);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    transition: 0.7s var(--ease);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(38, 89, 41, 0.34);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.stats,
.bottom-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.bottom-stats div {
    padding: 16px 22px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bottom-stats strong {
    display: block;
    line-height: 1;
    font-size: 1.95rem;
    color: var(--gold-soft);
}

.bottom-stats span {
    font-size: 0.83rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
}

.tag {
    display: inline-flex;
    width: max-content;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(215, 173, 66, 0.35);
    background: rgba(215, 173, 66, 0.13);
    color: #8a6715;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
}

.section-title {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 62px;
}

.section-title h2,
.about-text h2,
.export-text h2,
.contact-card h2 {
    margin: 17px 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.03;
    color: #0c3515;
}

.section-title p,
.lead,
.about-text p,
.export-text p,
.contact-card p {
    color: var(--muted);
    font-size: 1.05rem;
}

.pf-products {
    --bg-a: var(--paper);
    --bg-b: #f2e9d5;
    --ink: var(--ink);
    --muted: var(--muted);
}

.why {
    perspective: 1500px;
    isolation: isolate;
    overflow: hidden;
}

.why::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 52%, rgba(46, 125, 50, 0.08), transparent 32%),
        radial-gradient(circle at 50% 48%, rgba(215, 173, 66, 0.1), transparent 36%);
}

.why-scene {
    position: relative;
    z-index: 2;
}

.why-heading {
    transform-style: preserve-3d;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 350px 1fr;
    gap: 36px;
    align-items: center;
    transform-style: preserve-3d;
}

.why-layout-3d {
    perspective: 1400px;
}

.why-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-card,
.feature,
.product-card,
.mission-card,
.contact-card {
    border-radius: 30px;
    border: 1px solid rgba(215, 173, 66, 0.26);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    transition: 0.45s var(--ease);
    transform-style: preserve-3d;
}

.why-card {
    padding: 28px;
}

.why-card-3d {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.why-card-3d::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.35), transparent 35%, rgba(215, 173, 66, 0.18));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.why-card-3d:hover::before {
    opacity: 1;
}

.why-card-3d .icon,
.why-card-3d h3,
.why-card-3d p {
    position: relative;
    z-index: 2;
    transform: translateZ(28px);
}

.why-card:hover,
.feature:hover,
.product-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
}

.icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(145deg, #fff7dc, #ffffff);
    border: 1px solid rgba(215, 173, 66, 0.34);
    color: var(--emerald);
}

.icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3,
.feature h3,
.product-card h3,
.mission-card h3 {
    color: var(--forest-700);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.why-card p,
.feature p,
.product-card p,
.mission-card p {
    color: #546553;
}

.center-hub {
    min-height: 400px;
    position: relative;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(46, 125, 50, 0.3);
    animation: spin 24s linear infinite;
}

.ring-one {
    width: 380px;
    height: 380px;
}

.ring-two {
    width: 272px;
    height: 272px;
    animation-duration: 16s;
    animation-direction: reverse;
}

.hub-glow {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 173, 66, 0.35), rgba(82, 168, 90, 0.08), transparent 72%);
    filter: blur(12px);
    z-index: 1;
}

.hub-card {
    width: 248px;
    height: 290px;
    padding: 34px;
    text-align: center;
    color: var(--white);
    display: grid;
    place-items: center;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    background: linear-gradient(145deg, #2f652c, #102d12);
    box-shadow: 0 34px 80px rgba(26, 68, 32, 0.35);
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.why-hub-card h3 {
    transform: translateZ(32px);
}

.hub-globe-wrap {
    position: relative;
    width: 76px;
    height: 76px;
    margin-bottom: 10px;
    display: grid;
    place-items: center;
    transform: translateZ(44px);
}

.hub-globe-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(236, 230, 141, 0.38);
    animation: spin 8s linear infinite;
}

.hub-globe-orbit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
    background: #ece68d;
    box-shadow: 0 0 16px rgba(236, 230, 141, 0.72);
}

.hub-globe {
    width: 36px;
    height: 36px;
    color: #f4ecc8;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.85;
    animation: hubGlobeSpin 9s linear infinite;
    filter: drop-shadow(0 5px 16px rgba(236, 230, 141, 0.35));
}

.hub-title {
    line-height: 1.02;
    letter-spacing: 0.5px;
}

.hub-title span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.hub-title span:last-child {
    font-size: 1.1rem;
    margin-top: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e5cc8a;
}

.why-hub-card svg circle,
.why-hub-card svg path {
    fill: none !important;
}

.bottom-stats {
    justify-content: center;
    margin-top: 62px;
}

.bottom-stats div {
    min-width: 128px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(215, 173, 66, 0.25);
}

.why-stats div {
    transform-style: preserve-3d;
    box-shadow: 0 18px 42px rgba(16, 38, 16, 0.1);
}

.why-stats strong,
.why-stats span {
    transform: translateZ(18px);
}

.bottom-stats span {
    color: var(--muted);
}

.about {
    padding: 70px 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(46, 125, 50, 0.12), transparent 30%),
        radial-gradient(circle at 82% 75%, rgba(215, 173, 66, 0.16), transparent 33%),
        linear-gradient(138deg, #ffffff, #fff8eb);
}

.about-top {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-kicker {
    padding: 12px 24px;
    font-size: 0.85rem;
    margin-bottom: 18px;
    display: inline-flex;
}

.about-title {
    margin: 18px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.1;
    color: #0c3515;
}

.about-main-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 50px;
}

.about-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.about-para {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-para:last-child {
    margin-bottom: 0;
}


.about-usp-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(205, 156, 50, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-usp-card:hover {
    transform: translateY(-10px);
    border-color: #cd9c32;
    box-shadow: 0 20px 45px rgba(205, 156, 50, 0.15);
}

.about-usp-card .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(205, 156, 50, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #cd9c32;
    margin-bottom: 0;
}

.usp-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: #0d2818;
}

.usp-content p {
    font-size: 0.95rem;
    color: #556a53;
    line-height: 1.5;
    min-height: 4.5em;
}

@media (max-width: 1100px) {
    .about-main-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-usp-grid {
        grid-template-columns: 1fr;
    }
}
.about-visual-wrap {
    position: relative;
    min-height: 520px;
    perspective: 1400px;
}

.about-frame {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    border: 8px solid var(--white);
    box-shadow: 0 24px 70px rgba(13, 43, 18, 0.2);
    transform-style: preserve-3d;
}

.about-frame-main {
    width: 76%;
    height: 430px;
    top: 0;
    right: 60px;
}

.about-frame-side {
    width: 48%;
    height: 230px;
    right: 0;
    bottom: 28px;
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating {
    position: absolute;
    z-index: 4;
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(215, 173, 66, 0.28);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(11, 38, 14, 0.18);
    min-width: 190px;
}

.about-floating strong {
    display: block;
    line-height: 1;
    font-size: 1.75rem;
    color: #2c6f2f;
}

.about-floating span {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #6b7d68;
}

.about-floating-top {
    left: 0;
    top: 42px;
}

.about-floating-bottom {
    left: 26px;
    bottom: 56px;
}

.about-quality-seal {
    position: absolute;
    top: 78px;
    right: -18px;
    z-index: 5;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid rgba(215, 173, 66, 0.35);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 22px 52px rgba(16, 44, 18, 0.18);
    padding: 14px;
}

.about-quality-seal svg {
    width: 34px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
}

.about-quality-seal strong {
    color: var(--forest-700);
    font-size: 0.92rem;
    line-height: 1.2;
}

/* Our Product Portfolio Section */
.pf-products {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, var(--bg-a), var(--bg-b));
    padding: clamp(80px, 10vw, 140px) 0;
    font-family: "Outfit", sans-serif;
    isolation: isolate;
}

.pf-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 999px;
    filter: blur(100px);
    opacity: 0.18;
    z-index: 0;
    animation: pfFloat 12s ease-in-out infinite alternate;
}

.pf-glow-a {
    top: -200px;
    left: -150px;
    background: var(--emerald);
}

.pf-glow-b {
    right: -180px;
    bottom: -250px;
    background: var(--gold);
    animation-delay: 1.5s;
}

.pf-wrap {
    width: min(1300px, 90%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pf-head {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 90px);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.pf-tag {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 10px 22px;
    border-radius: 999px;
    color: var(--forest-700);
    border: 1px solid rgba(46, 125, 50, 0.18);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pf-head h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.pf-head h2 span {
    display: block;
    margin-top: 8px;
    color: transparent;
    background: linear-gradient(110deg, var(--forest-700), var(--emerald), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
}

.pf-head p {
    margin: 24px auto 0;
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
}

.pf-stack {
    display: grid;
    gap: 24px;
}

.pf-panel {
    position: relative;
    min-height: 440px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.12);
    box-shadow: 0 32px 90px rgba(10, 30, 15, 0.08);
    isolation: isolate;
    transition: box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}

.pf-panel:hover {
    border-color: rgba(215, 173, 66, 0.3);
    box-shadow: 0 45px 100px rgba(10, 30, 15, 0.15);
}

/* Luxury Shine Sweep */
.pf-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.pf-panel:hover::after {
    transform: translateX(100%);
}

.pf-image {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest-900), #0a1f0d);
}

.pf-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(46, 125, 50, 0.2), transparent 70%);
    z-index: 1;
    transition: opacity 0.8s var(--ease);
}

.pf-panel:nth-child(even) .pf-image::before {
    background: radial-gradient(circle at 70% 50%, rgba(46, 125, 50, 0.2), transparent 70%);
}

.pf-image img {
    position: absolute;
    width: 55%;
    height: 90%;
    object-fit: contain;
    right: -5%;
    bottom: 0%;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
    pointer-events: none;
}

.pf-panel:nth-child(even) .pf-image img {
    right: auto;
    left: -5%;
}

.pf-panel:hover .pf-image img {
    transform: scale(1.03) translateY(-6px);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
}

.pf-content {
    position: absolute;
    z-index: 10;
    width: min(500px, 90%);
    left: clamp(30px, 6vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 18px;
    justify-items: start;
    pointer-events: none;
}

.pf-content > * {
    pointer-events: auto;
}

.pf-panel:nth-child(even) .pf-content {
    left: auto;
    right: clamp(30px, 6vw, 70px);
    text-align: right;
    justify-items: end;
}

.pf-content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 34px;
    border-radius: 999px;
    color: var(--gold-soft);
    border: 1px solid rgba(248, 219, 130, 0.4);
    background: rgba(0, 0, 0, 0.25);
    font-size: 13px;
    font-weight: 800;
}

.pf-content h3 {
    margin: 0;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.05;
}

.pf-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
}

.pf-btn {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(135deg, var(--emerald), var(--forest-700));
    border-radius: 999px;
    padding: 15px 32px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.pf-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease);
}

.pf-btn:hover::before {
    transform: translateX(100%);
}

.pf-btn::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.4s ease;
}

.pf-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, var(--emerald-soft), var(--emerald));
}

.pf-btn:hover::after {
    transform: translateX(6px);
}

@keyframes pfFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, -40px) scale(1.05); }
}

@media (max-width: 900px) {
    .pf-panel { min-height: 340px; }
    .pf-image::before, .pf-panel:nth-child(even) .pf-image::before {
        background: linear-gradient(180deg, rgba(6, 26, 11, 0.25) 0%, rgba(6, 26, 11, 0.9) 100%);
    }
    .pf-panel:nth-child(even) .pf-content {
        left: clamp(20px, 5vw, 40px);
        right: auto;
        text-align: left;
        justify-items: start;
    }
    .pf-content { 
        width: 70%; 
        top: auto !important;
        transform: none !important;
    }
    .pf-image img { width: 45%; right: -5%; }
}

@media (max-width: 600px) {
    .pf-panel {
        min-height: auto;
        border-radius: 28px;
        display: flex;
        flex-direction: column;
        background: linear-gradient(135deg, var(--forest-900), #0a1f0d);
        margin-bottom: 35px;
        padding: 40px 25px 95px; /* Added extra bottom padding to make room for absolute button */
        gap: 0;
        position: relative; /* Ensure the absolute button positioning is relative to pf-panel */
    }
    .pf-content { 
        display: flex;
        flex-direction: column;
        width: 100% !important;
        position: static !important;
        transform: none !important;
        gap: 15px !important;
    }
    .pf-content span { 
        margin: 0 auto 0 0 !important; 
        display: inline-flex !important;
        width: 48px !important;
    }
    .pf-content h3 { 
        margin-bottom: 0 !important; 
        width: 100% !important; 
        font-size: 26px; 
        line-height: 1.2; 
        text-align: left; 
    }
    .pf-content p { 
        font-size: 0.95rem; 
        line-height: 1.6; 
        margin-bottom: 0 !important; 
        color: rgba(255, 255, 255, 0.8);
        text-align: left;
        width: 100% !important;
    }
    
    .pf-image {
        position: relative;
        width: 100% !important;
        height: 180px !important;
        inset: auto !important;
        background: transparent !important;
        overflow: visible !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        transform: none !important;
    }
    .pf-image img { 
        position: relative !important;
        width: 65% !important; 
        height: auto !important;
        inset: auto !important;
        opacity: 1 !important;
        filter: drop-shadow(0 15px 35px rgba(0,0,0,0.4)) !important;
        transform: none !important;
    }

    .pf-btn {
        position: absolute !important;
        bottom: 35px !important;
        left: 25px !important;
        right: 25px !important;
        width: auto !important;
        margin: 0 !important;
        justify-content: center !important;
        display: inline-flex !important;
    }

    .pf-panel:nth-child(even) .pf-image img {
        left: auto;
        right: auto;
    }
}

.export {
    background:
        radial-gradient(circle at 12% 18%, rgba(46, 125, 50, 0.13), transparent 30%),
        radial-gradient(circle at 90% 78%, rgba(215, 173, 66, 0.14), transparent 32%),
        linear-gradient(130deg, #fff9e6, #ffffff);
}

.export-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;
    align-items: center;
}

.export-visual {
    position: relative;
    padding: 18px;
    border-radius: 34px;
    border: 1px solid rgba(215, 173, 66, 0.26);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 72px rgba(13, 41, 17, 0.15);
    overflow: hidden;
}

.export-photo-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 470px;
}

.export-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.export-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 24, 9, 0.52), rgba(5, 24, 9, 0.08));
}


.export-badge {
    position: absolute;
    z-index: 3;
    min-width: 120px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(236, 230, 141, 0.44);
    background: rgba(8, 34, 13, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 34px rgba(8, 30, 11, 0.26);
}

.export-badge strong {
    display: block;
    line-height: 1;
    font-size: 1.7rem;
    color: #ece68d;
}

.export-badge span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.73rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 700;
}

.export-badge-a {
    top: 30px;
    right: 28px;
}

.export-badge-b {
    bottom: 30px;
    left: 28px;
}

.export-content {
    position: relative;
}

.export-content h1 {
    margin: 15px 0 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #0c3515;
}

.export-content h1 span {
    display: block;
    margin-top: 8px;
    color: transparent;
    background: linear-gradient(110deg, var(--forest-700), var(--emerald), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
}

.export-meta {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.export-meta div {
    padding: 12px 13px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(215, 173, 66, 0.24);
    text-align: center;
}

.export-meta strong {
    display: block;
    line-height: 1;
    color: #1f5a2a;
    font-size: 1.05rem;
}

.export-meta span {
    display: block;
    margin-top: 3px;
    color: #64755f;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 700;
}

.market-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.market-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(215, 173, 66, 0.32);
    background: rgba(255, 255, 255, 0.9);
    color: var(--forest-700);
    font-size: 0.84rem;
    font-weight: 700;
    transition: 0.3s var(--ease);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--forest-900);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: var(--emerald);
}

/* Arrow for dropdown */
.arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s var(--ease);
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    padding: 12px 25px;
    color: var(--forest-900);
    font-size: 0.9rem;
    display: block;
    width: 100%;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.dropdown li a:hover {
    background: rgba(46, 125, 50, 0.08);
    color: var(--emerald);
}

.market-tags span:hover {
    transform: translateY(-3px);
    background: #ece68d;
    color: #294f20;
    border-color: rgba(175, 157, 70, 0.66);
}

.mission {
    background:
        radial-gradient(circle at 15% 24%, rgba(46, 125, 50, 0.12), transparent 30%),
        radial-gradient(circle at 86% 75%, rgba(215, 173, 66, 0.13), transparent 32%),
        linear-gradient(140deg, #ffffff, #fff9ee);
}

.mission-stage {
    position: relative;
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    gap: 22px;
    align-items: center;
    perspective: 1500px;
}

.mission-panel {
    padding: 34px 30px;
    border-radius: 30px;
    border: 1px solid rgba(215, 173, 66, 0.28);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 60px rgba(11, 41, 17, 0.12);
    transform-style: preserve-3d;
    will-change: transform, opacity;
    overflow: hidden;
    position: relative;
}

.mission-panel::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(115deg, transparent 35%, rgba(236, 230, 141, 0.22) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.9s var(--ease);
    pointer-events: none;
}

.mission-panel:hover::after {
    transform: translateX(120%);
}

.mission-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.mission-panel-top span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(46, 125, 50, 0.22);
    background: rgba(46, 125, 50, 0.1);
    color: #2c672d;
    font-size: 0.72rem;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    font-weight: 800;
}

.mission-panel h3 {
    color: #184a24;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
}

.mission-panel p {
    margin-top: 10px;
    color: #4e604d;
}

.mission-panel ul {
    margin-top: 16px;
    list-style: none;
    display: grid;
    gap: 9px;
}

.mission-panel ul li {
    position: relative;
    padding-left: 16px;
    color: #476048;
    font-size: 0.92rem;
}

.mission-panel ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d7ad42;
    position: absolute;
    left: 0;
    top: 0.52rem;
}

.mission-core-wrap {
    min-height: 420px;
    position: relative;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
}

.mission-core-line {
    position: absolute;
    border: 1px dashed rgba(46, 125, 50, 0.26);
    border-radius: 999px;
    will-change: transform, opacity;
}

.line-a {
    width: 230px;
    height: 230px;
}

.line-b {
    width: 170px;
    height: 170px;
}

.line-c {
    width: 115px;
    height: 115px;
}

.mission-core {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(215, 173, 66, 0.5);
    background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.95), rgba(228, 243, 225, 0.95));
    box-shadow: 0 24px 58px rgba(14, 41, 19, 0.2);
    will-change: transform, opacity;
    position: relative;
    overflow: hidden;
}

.mission-core::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 32%, rgba(236, 230, 141, 0.25) 50%, transparent 68%);
    transform: translateX(-120%);
    transition: transform 0.9s var(--ease);
    pointer-events: none;
}

.mission-core:hover::after {
    transform: translateX(120%);
}

.mission-core svg {
    width: 40px;
    fill: none;
    stroke: #1f5a2a;
    stroke-width: 1.8;
}

.mission-core strong {
    display: block;
    color: #194b24;
    font-size: 1.03rem;
}

.mission-core span {
    display: block;
    margin-top: 2px;
    color: #667762;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.mission-panel .icon,
.mission-panel h3,
.mission-panel p,
.mission-panel ul,
.mission-panel-top span {
    transform: translateZ(24px);
}

.icon.large {
    width: 74px;
    height: 74px;
}

.contact {
    background:
        radial-gradient(circle at 14% 16%, rgba(236, 230, 141, 0.12), transparent 30%),
        radial-gradient(circle at 86% 82%, rgba(46, 125, 50, 0.24), transparent 34%),
        linear-gradient(140deg, #07210b, #123618);
}

.cta-stage {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
    padding: 18px;
    border-radius: 36px;
    border: 1px solid rgba(236, 230, 141, 0.2);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.cta-visual {
    position: relative;
    min-height: 380px;
    border-radius: 30px;
    border: 1px solid rgba(236, 230, 141, 0.24);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
        linear-gradient(145deg, rgba(12, 44, 18, 0.98), rgba(18, 54, 24, 0.9));
    box-shadow: 0 20px 58px rgba(5, 21, 8, 0.35);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.cta-visual::before {
    content: "";
    position: absolute;
    left: -20%;
    right: -20%;
    top: -120px;
    height: 220px;
    transform: rotate(-8deg);
    background: linear-gradient(to bottom, rgba(236, 230, 141, 0.18), transparent 72%);
    pointer-events: none;
}

.cta-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, transparent 0 14%, rgba(255, 255, 255, 0.04) 14% 15%, transparent 15% 85%, rgba(255, 255, 255, 0.04) 85% 86%, transparent 86%),
        linear-gradient(to bottom, transparent 0 24%, rgba(255, 255, 255, 0.04) 24% 25%, transparent 25% 75%, rgba(255, 255, 255, 0.04) 75% 76%, transparent 76%);
    pointer-events: none;
}

.cta-visual-card {
    width: min(320px, 84%);
    padding: 26px 24px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(236, 230, 141, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(7px);
    z-index: 2;
}

.cta-visual-card svg {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    fill: none;
    stroke: #ece68d;
    stroke-width: 1.8;
}

.cta-visual-card strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
}

.cta-visual-card p {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.cta-float {
    position: absolute;
    z-index: 3;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(236, 230, 141, 0.3);
    background: rgba(8, 34, 13, 0.7);
    backdrop-filter: blur(8px);
    text-align: center;
}

.cta-float strong {
    display: block;
    color: #ece68d;
    font-size: 1rem;
    line-height: 1;
}

.cta-float span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.cta-float-a {
    top: 22px;
    left: 22px;
}

.cta-float-b {
    right: 22px;
    bottom: 22px;
}

.cta-content {
    padding: 16px 10px 16px 8px;
}

.cta-content h2 {
    margin-top: 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    line-height: 1.02;
    color: #fff;
}

.cta-content p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.cta-meta {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.cta-meta div {
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid rgba(236, 230, 141, 0.22);
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.cta-meta strong {
    display: block;
    color: #ece68d;
    line-height: 1;
    font-size: 1.1rem;
}

.cta-meta span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.cta-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-actions .btn {
    min-width: 212px;
}

.cta-actions .btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-btn-secondary {
    border-color: rgba(236, 230, 141, 0.4);
    color: #fff;
}

/* ==========================================================================
   FOOTER SECTION (Unified & Consolidated)
   ========================================================================== */
footer {
    background: #050e05;
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 40px;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-about-col {
    max-width: 500px;
}

.footer-logo {
    width: 200px;
    margin: 0 auto 35px;
    display: block;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.footer-mission-text {
    line-height: 1.8;
    margin-bottom: 35px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
}

footer h4 {
    color: var(--gold-soft) !important;
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
    position: relative;
    display: block;
    text-transform: none;
    letter-spacing: normal;
}

footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

footer a {
    display: block;
    margin-bottom: 15px;
    transition: 0.3s var(--ease);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

footer a:hover {
    color: var(--gold-soft);
    transform: translateX(8px);
}

.footer-social-row {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.fs-circle {
    width: 46px;
    height: 46px;
    background: #58b380;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.fs-circle:hover {
    background: #469c6d;
    transform: translateY(-8px) rotate(8deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(88, 179, 128, 0.5);
}

.fs-circle svg {
    width: 22px;
    height: 22px;
    fill: #ffffff !important;
}

.footer-contact-col p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-col strong {
    color: var(--gold-soft);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.copyright {
    margin-top: 80px;
    padding-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
    .footer-contact-col {
        grid-column: span 3;
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about-col {
        grid-column: span 2;
        margin-bottom: 40px;
    }
    .footer-contact-col {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
    .footer-about-col, .footer-contact-col {
        grid-column: span 2;
    }
    .copyright {
        margin-top: 40px;
    }
    footer {
        padding: 60px 0 30px;
    }
    .footer-social-row {
        justify-content: flex-start;
    }
}



.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hubGlobeSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes mouseMove {
    to {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 92%;
    }
    
    .header {
        padding: 0 40px;
    }

    .hero-content h1 {
        font-size: clamp(3.5rem, 8vw, 5.5rem);
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 20px;
    }
    
    .header {
        padding: 0 30px;
    }

    .nav-links.active {
        top: 100px;
    }

    .why-layout,
    .about-premium,
    .export-stage {
        grid-template-columns: 1fr;
    }

    .about-visual-wrap {
        min-height: 560px;
    }

    .about-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-switcher {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-nav {
        min-height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 4px 0;
    }

    .product-nav-line {
        display: none;
    }

    .product-view {
        grid-template-columns: 1fr;
    }

    .product-image-panel {
        min-height: 350px;
    }

    .export-photo-wrap {
        min-height: 360px;
    }

    .mission-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mission-core-wrap {
        min-height: 240px;
        order: 2;
    }

    .cta-stage {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 900px) {


    .nav-links,
    .quick-inquiry-btn {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .header, .header.scrolled {
        padding: 0 30px;
    }

    .logo img, .header.scrolled .logo img {
        height: 110px !important;
        margin: -10px 0 -20px 0 !important;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 30px;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        overflow-y: auto;
        max-height: 80vh;
    }

    .nav-links li {
        width: 100%;
    }

    .has-dropdown .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        padding: 0 0 10px 20px;
        display: none;
        min-width: auto;
        border: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .has-dropdown.active .arrow {
        transform: rotate(180deg);
    }

    .about-usp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-switcher {
        padding: 28px 18px;
    }

    .export-meta {
        grid-template-columns: 1fr;
    }

    .cta-meta {
        grid-template-columns: 1fr;
    }

    .cta-actions .btn {
        min-width: 100%;
    }

    .about-visual-wrap {
        min-height: auto;
    }

    .about-frame-main,
    .about-frame-side {
        position: relative;
        width: 100%;
        height: 300px;
        inset: auto;
        margin-bottom: 18px;
    }

    .about-floating {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        margin-bottom: 12px;
    }

    .about-quality-seal {
        right: 18px;
        top: 18px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 65px 0;
    }

    .header, .header.scrolled {
        padding: 0 16px;
    }

    .logo img, .header.scrolled .logo img {
        height: 90px !important;
        margin: -5px 0 -15px 0 !important;
    }

    .quick-inquiry-btn {
        display: none;
    }

    .stats,
    .bottom-stats,
    .hero-buttons {
        flex-direction: column;
    }

    .hero {
        min-height: 55vh !important;
    }

    .export-photo-wrap img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .export-content h1 span {
        display: inline !important;
    }

    .about-usp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-usp-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 24px;
    }

    .about-usp-card .icon {
        margin-bottom: 15px;
    }

    .cta-stage {
        padding: 12px;
    }

    .cta-content h2 {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }
}

/* --- About Page Specifics --- */
.about-hero {
    background: #f8f7f2; /* Matches the image background */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 110px; /* Space for desktop fixed header */
    padding-bottom: 0;
    width: 100%;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
    display: none; /* Hide vignette on light image */
}

.about-hero-bg {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    .about-hero {
        height: auto;
        min-height: auto;
        background: #f8f7f2; /* Matches the image background */
        padding-top: 85px; /* Mobile header space */
        padding-bottom: 15px;
    }

    .about-hero-bg {
        position: relative;
        height: auto;
        padding-top: 0;
    }

    .about-hero-bg img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        transform: scale(1.08) !important;
        transform-origin: center center !important;
    }

    .about-visual-wrap {
        min-height: 420px;
        margin-top: 30px;
    }

    .about-frame-main {
        width: 85%;
        height: 320px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .about-frame-side {
        width: 60%;
        height: 220px;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 5;
        border-width: 6px;
    }

    .about-floating {
        position: absolute !important;
    }

    .about-floating-top {
        top: 15px !important;
        left: -10px !important;
        right: auto !important;
        bottom: auto !important;
    }

    .about-floating-bottom {
        bottom: 15px !important;
        right: -10px !important;
        left: auto !important;
        top: auto !important;
    }

    /* Why Section Mobile Optimizations */
    .why-card {
        max-width: 450px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 20px;
    }
    .why-card .icon {
        margin-left: auto;
        margin-right: auto;
    }
    .ring-one {
        width: 295px !important;
        height: 295px !important;
    }
    .ring-two {
        width: 215px !important;
        height: 215px !important;
    }
    .hub-glow {
        width: 170px !important;
        height: 170px !important;
    }
    .hub-card {
        width: 200px !important;
        height: 230px !important;
        padding: 22px !important;
    }
    .hub-card .hub-title span {
        font-size: 1.2rem !important;
    }
    .hub-card .hub-title span:last-child {
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }
    .hub-card .hub-globe-wrap {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 5px !important;
    }
    .hub-card .hub-globe {
        width: 28px !important;
        height: 28px !important;
    }
    .center-hub {
        min-height: 310px !important;
    }
}

.about-hero-bg img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Prevents image cropping */
    opacity: 1;
    filter: none;
    transform: scale(1);
}

.about-hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-hero .lead {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.about-hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Quality Section Redesign */
.quality-section {
    background: #fdfaf5; /* Cream background from image */
    padding: 140px 0 0 0;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 100px;
}

.quality-image-container {
    position: relative;
    padding: 20px;
}

.quality-image-main {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 40px;
    border: 2px solid #e0d5c1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.quality-seal {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #c4a47c;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quality-seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quality-glass-badge {
    position: absolute;
    bottom: 60px;
    right: -20px;
    background: rgba(22, 45, 30, 0.9); /* Dark green from image */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px 35px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.quality-glass-badge svg {
    width: 42px;
    height: 42px;
    color: #c4a47c;
}

.quality-glass-badge strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.quality-glass-badge span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.why-badge {
    background: #162d1e;
    color: #fff;
    padding: 8px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.why-badge::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #c4a47c;
    border-radius: 50%;
}

.quality-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-family: 'Playfair Display', serif;
    color: #162d1e;
    line-height: 1.1;
    margin-bottom: 30px;
}

.quality-content p.intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 580px;
    margin-bottom: 50px;
}

.feature-grid-wrapper {
    position: relative;
    display: flex;
    gap: 40px;
}

.feature-line-system {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 2px;
    background: #e0d5c1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.feature-line-system::before,
.feature-line-system::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #e0d5c1;
    border-radius: 50%;
}

.feature-line-node {
    width: 32px;
    height: 32px;
    background: #c4a47c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.feature-line-node svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.quality-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.quality-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.quality-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.green { background: #162d1e; color: #fff; }
.feature-icon.gold { background: #fdf5e6; color: #c4a47c; }

.feature-icon svg { width: 30px; height: 30px; }

.quality-feature-card h4 {
    font-size: 1.2rem;
    color: #162d1e;
    margin-bottom: 10px;
}

.quality-feature-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
}

/* Bottom Bar */
.quality-bottom-bar {
    background: #fdfaf5;
    border-top: 1px solid #e0d5c1;
    padding: 60px 0;
    margin-top: 80px;
}

.bottom-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.bottom-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.bottom-item .icon-circle {
    width: 54px;
    height: 54px;
    border: 1px solid #c4a47c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-item .icon-circle svg {
    width: 24px;
    height: 24px;
    color: #162d1e;
}

.bottom-item-content h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #162d1e;
    margin-bottom: 4px;
}

.bottom-item-content p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .quality-bottom-bar {
        padding-bottom: 100px;
    }
    
    .bottom-bar-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .quality-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-bar-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-line-system {
        display: none;
    }
    
    .quality-image-main {
        height: 320px !important;
    }
    
    .quality-content h2 {
        font-size: 1.7rem !important;
    }
    
    .quality-content h2 span.gold-text {
        white-space: nowrap !important;
    }
}

/* ================================
   AJANA IMPEX REACH SECTION
   Theme: White / Cream / Green
================================ */

.ajana-reach-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at center, rgba(42, 111, 74, 0.12), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #fffaf0 42%, #f3f8ee 100%);
  color: #173f2a;
}

/* Soft green glow */
.ajana-reach-section::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(46, 125, 80, 0.18), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.ajana-container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
}

/* Heading */

.ajana-heading {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.ajana-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid rgba(42, 111, 74, 0.24);
  background: #eef7e8;
  color: #2a6f4a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.ajana-heading h2 {
  margin: 18px 0 16px;
  color: #173f2a;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.ajana-heading p {
  margin: 0 auto;
  color: #5f6f62;
  font-size: 16px;
  line-height: 1.8;
}

/* Orbit Main Area */

.ajana-orbit-area {
  position: relative;
  width: min(740px, 92vw);
  height: min(740px, 92vw);
  margin: 0 auto;
}

/* IMPORTANT:
   All rings are centered with exact same center.
   This fixes the circle moving to the right side.
*/

.ajana-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-outer {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(42, 111, 74, 0.22);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 40px rgba(42, 111, 74, 0.08),
    inset 0 0 40px rgba(42, 111, 74, 0.04);
}

.ring-middle {
  width: 72%;
  height: 72%;
  border: 1.5px dashed rgba(42, 111, 74, 0.28);
  animation: rotateReachRing 30s linear infinite;
}

.ring-inner {
  width: 34%;
  height: 34%;
  border: 1.5px solid rgba(42, 111, 74, 0.26);
  background: rgba(255, 250, 240, 0.52);
  box-shadow: 0 20px 50px rgba(42, 111, 74, 0.08);
}

@keyframes rotateReachRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Center Globe */

.ajana-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 24%),
    linear-gradient(145deg, #ffffff, #f7f1df);
  border: 2px solid rgba(42, 111, 74, 0.22);
  box-shadow:
    0 25px 70px rgba(42, 111, 74, 0.16),
    inset 0 0 35px rgba(42, 111, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

.ajana-globe {
  position: relative;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0%, #dff0d5 18%, #2f8758 48%, #173f2a 100%);
  box-shadow:
    inset -22px -18px 30px rgba(0, 0, 0, 0.18),
    0 14px 32px rgba(42, 111, 74, 0.25);
}

.ajana-globe::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.34) 19px,
      transparent 20px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.26) 19px,
      transparent 20px
    );
  animation: globeSlide 5s linear infinite;
}

.ajana-globe::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 44px;
  left: 20px;
  top: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  filter: blur(4px);
}

.ajana-globe span {
  position: absolute;
  z-index: 1;
  width: 190%;
  height: 190%;
  left: -45%;
  top: -45%;
  background:
    radial-gradient(circle at 30% 42%, rgba(255, 255, 255, 0.18) 0 5%, transparent 6%),
    radial-gradient(circle at 56% 38%, rgba(255, 255, 255, 0.15) 0 8%, transparent 9%),
    radial-gradient(circle at 44% 62%, rgba(255, 255, 255, 0.16) 0 7%, transparent 8%);
  animation: mapMove 8s linear infinite;
}

@keyframes globeSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-36px);
  }
}

@keyframes mapMove {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ajana-center-text {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.ajana-center-text small {
  display: block;
  color: #eaf7df;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.2px;
  line-height: 1.1;
}

.ajana-center-text strong {
  display: block;
  margin-top: 2px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.8px;
}

/* Orbit Points */

.ajana-point {
  position: absolute;
  z-index: 10;
}

.ajana-point button {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(42, 111, 74, 0.32);
  background:
    radial-gradient(circle at 35% 25%, #ffffff, #f7f1df 45%, #e6f1df 100%);
  color: #173f2a;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 0 0 8px rgba(42, 111, 74, 0.06),
    0 18px 35px rgba(42, 111, 74, 0.18);
  transition: all 0.35s ease;
}

.ajana-point:hover button {
  color: #ffffff;
  background: linear-gradient(135deg, #2a6f4a, #6c8a3d);
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.12);
  box-shadow:
    0 0 0 12px rgba(42, 111, 74, 0.09),
    0 22px 42px rgba(42, 111, 74, 0.28);
}

/* Point Positions */

.point-1 {
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
}

.point-2 {
  top: 15%;
  right: 4%;
}

.point-3 {
  bottom: 15%;
  right: 4%;
}

.point-4 {
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
}

.point-5 {
  bottom: 15%;
  left: 4%;
}

.point-6 {
  top: 15%;
  left: 4%;
}

/* Hover Cards */

.ajana-card {
  position: absolute;
  width: 340px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.98));
  border: 1px solid rgba(42, 111, 74, 0.18);
  border-radius: 24px;
  box-shadow:
    0 24px 60px rgba(23, 63, 42, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
}

.ajana-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(42, 111, 74, 0.08), transparent 45%),
    radial-gradient(circle at top right, rgba(108, 138, 61, 0.12), transparent 35%);
  pointer-events: none;
}

.ajana-card h3 {
  position: relative;
  margin: 0 0 12px;
  color: #173f2a;
  font-size: 20px;
  font-weight: 900;
}

.ajana-card p,
.ajana-card li {
  position: relative;
  color: #5f6f62;
  font-size: 14px;
  line-height: 1.7;
}

.ajana-card strong {
  color: #2a6f4a;
}

.ajana-card ul {
  position: relative;
  margin: 12px 0 0;
  padding-left: 18px;
}

.ajana-card li::marker {
  color: #6c8a3d;
}

/* Card Directions */

.point-1 .ajana-card {
  top: 92px;
  left: 50%;
  transform: translateX(-50%) translateY(16px) scale(0.94);
}

.point-1:hover .ajana-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.point-2 .ajana-card,
.point-3 .ajana-card {
  top: 50%;
  right: 92px;
  transform: translateY(-50%) translateX(16px) scale(0.94);
}

.point-2:hover .ajana-card,
.point-3:hover .ajana-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0) scale(1);
}

.point-4 .ajana-card {
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px) scale(0.94);
}

.point-4:hover .ajana-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.point-5 .ajana-card,
.point-6 .ajana-card {
  top: 50%;
  left: 92px;
  transform: translateY(-50%) translateX(-16px) scale(0.94);
}

.point-5:hover .ajana-card,
.point-6:hover .ajana-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0) scale(1);
}

/* Responsive */

@media (max-width: 900px) {
  .ajana-orbit-area {
    width: 620px;
    height: 620px;
  }

  .ajana-center {
    width: 165px;
    height: 165px;
  }

  .ajana-globe {
    width: 98px;
    height: 98px;
  }

  .ajana-point button {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 720px) {
  .ajana-reach-section {
    padding: 75px 16px;
  }

  .ajana-heading {
    margin-bottom: 42px;
  }

  .ajana-orbit-area {
    width: 100%;
    height: auto;
    display: grid;
    gap: 18px;
  }

  .ajana-ring,
  .ajana-center {
    display: none;
  }

  .ajana-point {
    position: relative;
    inset: auto;
    transform: none;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(42, 111, 74, 0.15);
    box-shadow: 0 14px 35px rgba(42, 111, 74, 0.08);
  }

  .ajana-point button {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }

  .ajana-card,
  .point-1 .ajana-card,
  .point-2 .ajana-card,
  .point-3 .ajana-card,
  .point-4 .ajana-card,
  .point-5 .ajana-card,
  .point-6 .ajana-card {
    position: static;
    width: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .ajana-card::before {
    display: none;
  }

  .ajana-card h3 {
    font-size: 18px;
  }
}

/* ================================
   PURPOSE FLOW SECTION
   Theme: White / Cream / Green
================================ */

.purpose-flow-section {
  position: relative;
  overflow: hidden;
  padding: 95px 20px 110px;
  background:
    radial-gradient(circle at 20% 20%, rgba(50, 125, 78, 0.10), transparent 32%),
    radial-gradient(circle at 80% 72%, rgba(214, 165, 63, 0.12), transparent 30%),
    linear-gradient(135deg, #f8fcf6 0%, #fffaf0 48%, #f5fbf1 100%);
  font-family: "Poppins", sans-serif;
  color: #123f24;
}

.purpose-container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
}

/* Heading */

.purpose-heading {
  text-align: center;
  margin-bottom: 55px;
}

.purpose-heading span {
  display: inline-flex;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid rgba(205, 156, 50, 0.35);
  background: rgba(255, 250, 240, 0.86);
  color: #9c741d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.purpose-heading h2 {
  margin: 18px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.1;
  font-weight: 900;
  color: #123f24;
}

/* Flow Area */

.purpose-flow-wrap {
  position: relative;
  max-width: 1100px;
  min-height: 560px;
  margin: 0 auto;
}

/* Center Node */

.trust-node {
  position: relative;
  z-index: 5;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, #ffffff, #fffaf0 48%, #eef8ea 100%);
  border: 1.5px solid rgba(205, 156, 50, 0.38);
  box-shadow:
    0 24px 70px rgba(20, 74, 38, 0.14),
    inset 0 0 0 12px rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-node::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed rgba(32, 112, 58, 0.26);
  animation: rotateTrust 18s linear infinite;
}

.trust-node::after {
  content: "";
  position: absolute;
  inset: -42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 112, 58, 0.10), transparent 65%);
  z-index: -1;
}

@keyframes rotateTrust {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.trust-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(32, 112, 58, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #20703a;
  font-size: 25px;
  box-shadow: 0 12px 28px rgba(32, 112, 58, 0.12);
}

.trust-node h3 {
  margin: 0;
  color: #123f24;
  font-size: 18px;
  font-weight: 900;
}

.trust-node p {
  margin: 12px 0 0;
  color: #6b7b5d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

/* Connector Lines */

.connector-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 430px;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.connector-line {
  fill: none;
  stroke: rgba(32, 112, 58, 0.62);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 10;
  animation: dashMove 18s linear infinite;
}

@keyframes dashMove {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -160;
  }
}

/* Cards Layout */

.purpose-cards {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, 430px);
  justify-content: space-between;
  gap: 0;
  margin-top: 135px;
}

/* Cards */

.purpose-card {
  position: relative;
  min-height: 285px;
  padding: 34px 34px 30px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.94));
  border: 1px solid rgba(205, 156, 50, 0.26);
  box-shadow:
    0 30px 80px rgba(20, 74, 38, 0.11),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: all 0.35s ease;
}

.purpose-card:hover {
  transform: translateY(-10px);
  border-color: rgba(32, 112, 58, 0.30);
  box-shadow:
    0 36px 95px rgba(20, 74, 38, 0.17),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.purpose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(32, 112, 58, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(205, 156, 50, 0.12), transparent 34%);
  pointer-events: none;
}

/* Green connection dots */

.connect-dot {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #20703a;
  border: 6px solid #fffaf0;
  box-shadow: 0 10px 24px rgba(32, 112, 58, 0.25);
  transform: translateX(-50%);
  z-index: 10;
}

/* Card Content */

.card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fffaf0;
  border: 1px solid rgba(205, 156, 50, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #20703a;
  font-size: 22px;
  box-shadow: 0 16px 28px rgba(205, 156, 50, 0.10);
}

.card-tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef8ea;
  border: 1px solid rgba(32, 112, 58, 0.18);
  color: #20703a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.9px;
}

.purpose-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  font-family: "Outfit", sans-serif;
  color: #123f24;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.purpose-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: #526253;
  font-size: 15px;
  line-height: 1.8;
}

.purpose-card ul {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.purpose-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #526253;
  font-size: 14px;
  line-height: 1.5;
}

.purpose-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cd9c32;
}

/* Responsive */

@media (max-width: 1180px) {
  .purpose-flow-wrap {
    max-width: 90%;
  }

  .purpose-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .connector-svg {
    display: none;
  }
}

@media (max-width: 980px) {
  .purpose-flow-wrap {
    min-height: auto;
  }

  .connector-svg {
    display: none;
  }

  .trust-node {
    margin-bottom: 46px;
  }

  .purpose-cards {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 0;
  }

  .connect-dot {
    display: none;
  }
}

@media (max-width: 760px) {
  .purpose-flow-section {
    padding: 75px 16px 85px;
  }

  .purpose-heading {
    margin-bottom: 42px;
  }

  .purpose-cards {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .purpose-card h3 {
    font-size: 28px;
  }

  .card-top {
    margin-bottom: 26px;
  }

  .trust-node {
    width: 160px;
    height: 160px;
  }
  .trust-node h3 {
    font-size: 16px !important;
  }
  .trust-node p {
    font-size: 9px !important;
    letter-spacing: 0.2px !important;
    margin: 4px 0 0 !important;
  }
  .trust-node .trust-icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 4px !important;
  }
}


/* ================================
   QUALITY ANIMATED STRIP
   Theme: White / Cream / Green
================================ */

.quality-strip-section {
  position: relative;
  overflow: hidden;
  padding: 62px 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(32, 112, 58, 0.08), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(205, 156, 50, 0.12), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #fff8ea 48%, #f4fbf0 100%);
  border-top: 1px solid rgba(205, 156, 50, 0.22);
  border-bottom: 1px solid rgba(205, 156, 50, 0.22);
  font-family: "Poppins", sans-serif;
}

.quality-strip-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: skewX(-18deg);
  animation: shineMove 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineMove {
  0% { left: -35%; opacity: 0; }
  25% { opacity: 1; }
  55% { left: 110%; opacity: 0.8; }
  100% { left: 110%; opacity: 0; }
}

.quality-strip-container {
  position: relative;
  z-index: 2;
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

@media (max-width: 1100px) {
  .quality-strip-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .quality-strip-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .quality-item {
    padding: 15px 10px;
  }
}

.quality-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 18px;
  border-radius: 26px;
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease, background 0.35s ease, box-shadow 0.35s ease;
}

/* Animation only when JS marks section ready */
.quality-strip-section.js-ready .quality-item {
  opacity: 0;
  transform: translateY(34px);
}

.quality-strip-section.js-ready .quality-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quality-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 240, 0.45));
  border: 1px solid rgba(32, 112, 58, 0.08);
  box-shadow: 0 18px 40px rgba(20, 74, 38, 0.04);
  opacity: 0;
  transform: scale(0.94);
  transition: all 0.35s ease;
}

.quality-item::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #20703a, #cd9c32, transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 0.4s ease;
}

.quality-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.quality-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.quality-item:hover {
  transform: translateY(-8px);
}

.quality-icon {
  position: relative;
  z-index: 2;
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #ffffff, #fffaf0 55%, #f3f8ee 100%);
  border: 1.5px solid rgba(205, 156, 50, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #123f24;
  box-shadow: 0 14px 34px rgba(20, 74, 38, 0.10), inset 0 0 0 8px rgba(255, 255, 255, 0.55);
  animation: iconFloat 4.5s ease-in-out infinite;
}

.quality-item:nth-child(2) .quality-icon { animation-delay: 0.5s; }
.quality-item:nth-child(3) .quality-icon { animation-delay: 1s; }
.quality-item:nth-child(4) .quality-icon { animation-delay: 1.5s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.quality-icon::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px dashed rgba(32, 112, 58, 0.25);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s ease;
}

.quality-icon::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 112, 58, 0.16), transparent 68%);
  opacity: 0;
  transition: all 0.35s ease;
}

.quality-item:hover .quality-icon::before {
  opacity: 1;
  transform: scale(1);
  animation: rotateQualityRing 9s linear infinite;
}

.quality-item:hover .quality-icon::after {
  opacity: 1;
}

@keyframes rotateQualityRing {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1) rotate(360deg); }
}

.quality-icon svg {
  position: relative;
  z-index: 3;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.35s ease;
}

.quality-item:hover .quality-icon {
  background: linear-gradient(135deg, #20703a, #6f8f3f);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(32, 112, 58, 0.24), inset 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.quality-item:hover .quality-icon svg {
  transform: scale(1.08) rotate(-4deg);
}

.quality-content {
  position: relative;
  z-index: 2;
}

.quality-content h3 {
  margin: 0 0 9px;
  color: #062c18;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quality-content p {
  margin: 0;
  color: #5e665e;
  font-size: 15px;
  line-height: 1.65;
  max-width: 280px;
}

.quality-item.is-active .quality-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #20703a, #6f8f3f);
  border-color: rgba(255, 255, 255, 0.9);
}

.quality-item.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.quality-item.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}


/* Livestock Categories Section */
.livestock-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #081a10 0%, #123f24 100%);
    position: relative;
    overflow: hidden;
    color: #fffaf0;
    border-bottom: 1px solid rgba(205, 156, 50, 0.15);
}

.livestock-categories::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(205, 156, 50, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(32, 112, 58, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.livestock-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.livestock-heading {
    text-align: center;
    margin-bottom: 70px;
}

.livestock-heading h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #cd9c32;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.livestock-heading p {
    font-size: 1.2rem;
    color: rgba(255, 250, 240, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.livestock-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.livestock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.livestock-icon {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(205, 156, 50, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

.livestock-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.livestock-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205, 156, 50, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.livestock-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border: 1.5px dashed rgba(205, 156, 50, 0.4);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.livestock-item:hover {
    transform: translateY(-15px);
}

.livestock-item:hover .livestock-icon {
    background: rgba(205, 156, 50, 0.15);
    border-color: #cd9c32;
    box-shadow: 0 25px 60px rgba(205, 156, 50, 0.25);
}

.livestock-item:hover .livestock-icon img {
    transform: scale(1.1);
}

.livestock-item:hover .livestock-icon::before {
    opacity: 1;
}

.livestock-item:hover .livestock-icon::after {
    opacity: 1;
    transform: scale(1);
    animation: rotateReachRing 15s linear infinite;
}

.livestock-item span {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fffaf0;
    transition: color 0.3s ease;
}

.livestock-item:hover span {
    color: #cd9c32;
}

.livestock-icon svg {
    width: 54px;
    height: 54px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1100px) {
    .livestock-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .livestock-categories {
        padding: 60px 0;
    }
    .livestock-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 20px !important;
    }
    .livestock-icon {
        width: 80px !important;
        height: 80px !important;
    }
    .livestock-item span {
        font-size: 0.9rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}
/* Product Page Hero Section */
.product-hero {
    height: 100vh;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    background: #061a0b;
}

.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(205, 156, 50, 0.05), transparent 60%);
    z-index: 1;
}

/* Removed Leaf Silhouette */
.product-hero::after {
    display: none;
}

.ph-left {
    flex: 0 0 50%;
    height: 100%;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8vw;
    z-index: 2;
}

.ph-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(205, 156, 50, 0.05), transparent 50%);
    pointer-events: none;
}


.ph-content {
    position: relative;
    z-index: 3;
    max-width: 500px;
}

.ph-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(205, 156, 50, 0.1);
    border: 1px solid rgba(205, 156, 50, 0.3);
    color: #cd9c32;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.ph-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    color: #fff;
    line-height: 0.95;
    margin-bottom: 30px;
    font-weight: 700;
}

.ph-title span {
    display: block;
    color: #cd9c32;
}

.ph-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.ph-right {
    flex: 1;
    height: 100%;
    position: relative;
    background: transparent;
    padding-right: 6vw;
}

.ph-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.ph-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: none; /* Let GSAP handle it */
}

.ph-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.ph-slide img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 50px 120px rgba(0, 0, 0, 0.6));
    transform: scale(0.85);
    transition: transform 2.5s var(--ease);
}

.ph-slide.active img {
    transform: scale(1);
}

.ph-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 5;
}

.ph-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #cd9c32, transparent);
    position: relative;
    overflow: hidden;
}

.ph-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: phScrollDown 2s infinite linear;
}

@keyframes phScrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

@media (max-width: 1100px) {
    .product-hero { flex-direction: column; height: auto; min-height: 100vh; }
    .ph-left { flex: none; width: 100%; padding: 120px 40px 60px; text-align: center; }
    .ph-right { flex: none; width: 100%; height: 50vh; }
}

.ph-content .btn-primary { background: #2e7d32; color: #fff; border: none; border-radius: 40px; padding: 16px 36px; font-size: 15px; font-weight: 600; text-transform: none; letter-spacing: 0; box-shadow: 0 15px 30px rgba(46, 125, 50, 0.25); transition: all 0.4s var(--ease); }
.ph-content .btn-primary:hover { background: #1b5e20; transform: translateY(-3px); box-shadow: 0 20px 40px rgba(46, 125, 50, 0.35); }

/* --- Product Page Sections --- */
.product-intro { padding: 120px 0; background: #fff; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text h2 { font-size: 3.5rem; color: #061a0b; margin-bottom: 25px; font-family: 'Playfair Display', serif; }
.intro-text h2 span { color: #cd9c32; }
.intro-text p { font-size: 1.15rem; line-height: 1.8; color: #5e665e; margin-bottom: 20px; }
.intro-visual img { width: 100%; border-radius: 20px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.1)); transition: transform 0.5s ease; }
.intro-visual img:hover { transform: scale(1.03); }

.product-value { padding: 100px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-item { text-align: center; padding: 40px; background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; border: 1px solid transparent; }
.value-item:hover { transform: translateY(-10px); border-color: #cd9c32; box-shadow: 0 20px 50px rgba(205,156,50,0.1); }
.value-icon { width: 70px; height: 70px; background: rgba(46, 125, 50, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; color: #2e7d32; }
.value-icon svg { width: 35px; height: 35px; }
.value-item h3 { font-size: 1.5rem; color: #061a0b; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.value-item p { color: #5e665e; line-height: 1.6; }

.product-specs { padding: 120px 0; }
.specs-table-wrap { max-width: 900px; margin: 50px auto 0; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); background: #fff; border: 1px solid #eee; }
.specs-table { width: 100%; border-collapse: collapse; text-align: left; }
.specs-table th, .specs-table td { padding: 25px 40px; border-bottom: 1px solid #eee; }
.specs-table th { background: #061a0b; color: #fff; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child { font-weight: 700; color: #061a0b; background: rgba(46, 125, 50, 0.02); width: 40%; }
.specs-table td:last-child { color: #5e665e; }
.specs-table tr:hover td { background: rgba(205,156,50,0.05); }

.product-banner { padding: 100px 0; position: relative; background: #061a0b; color: #fff; overflow: hidden; }
.banner-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.banner-text { text-align: left !important; }
.banner-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.banner-visual img { width: 100%; max-width: 450px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); animation: floatSpoon 6s ease-in-out infinite; }
@keyframes floatSpoon { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
.banner-content h2 { font-size: 3.5rem; font-family: 'Playfair Display', serif; margin-bottom: 20px; line-height: 1.2; }
.banner-content h2 span { color: #cd9c32; }
.banner-content p { font-size: 1.2rem; opacity: 0.8; max-width: 600px; margin: 0; }

.related-products { padding: 120px 0; background: #fbfcfb; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.related-card { 
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 24px; 
    text-decoration: none; 
    text-align: center; 
    border: 1px solid #eee; 
    transition: all 0.5s ease; 
    display: flex;
    flex-direction: column;
    align-items: center;
}
.related-card img { 
    width: 150px; 
    margin: 0 auto 25px; 
    transition: transform 0.5s ease; 
    display: block;
}
.related-card h3 { font-size: 1.6rem; color: #061a0b; margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.related-card p { color: #5e665e; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }
.view-link { display: inline-flex; align-items: center; gap: 8px; color: #cd9c32; font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.view-link svg { width: 18px; transition: transform 0.3s ease; }
.related-card:hover { transform: translateY(-15px); border-color: #cd9c32; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.related-card:hover img { transform: scale(1.1) rotate(5deg); }
.related-card:hover .view-link svg { transform: translateX(5px); }

@media (max-width: 900px) {
    .intro-grid, .related-grid, .value-grid { grid-template-columns: 1fr; }
    .specs-table th, .specs-table td { padding: 15px 20px; }
}

/* --- Visual Stack (Bowl + Spoon) --- */
.visual-stack { position: relative; width: 100%; max-width: 500px; margin: 0 auto; }
.img-bowl { width: 85% !important; border-radius: 0 !important; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15)) !important; }
.img-spoon { position: absolute; top: -15%; right: -5%; width: 60% !important; z-index: 2; border-radius: 0 !important; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2)); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important; transform: rotate(10deg); }
.visual-stack:hover .img-spoon { transform: rotate(0deg) scale(1.1) translateY(-10px); }
.visual-stack:hover .img-bowl { transform: scale(0.95) translateX(-10px); }


/* --- Balanced Nutrition Section --- */
.balanced-nutrition { padding: 120px 0; background: #fbfcfb; overflow: hidden; }
.nutrition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.nutrition-text h2 { font-size: 3.5rem; font-family: 'Playfair Display', serif; color: #061a0b; margin-bottom: 30px; }
.nutrition-text h2 span { color: #cd9c32; }
.nutrition-text p { font-size: 1.15rem; line-height: 1.8; color: #5e665e; margin-bottom: 20px; }
.nutrition-feature { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.nf-icon { width: 28px; height: 28px; background: #cd9c32; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.nutrition-feature span { font-weight: 600; color: #061a0b; }
.nutrition-visual { position: relative; }
.visual-accent { position: absolute; top: -10%; left: -10%; width: 120%; height: 120%; background: radial-gradient(circle, rgba(205,156,50,0.05) 0%, transparent 70%); z-index: 1; }
.nutrition-visual img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.1)); transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.nutrition-visual:hover img { transform: scale(1.05) rotate(3deg); }


/* --- Global Export Page --- */
.export-hero { height: 80vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
.hero-bg-video { position: absolute; inset: 0; opacity: 0.4; }
.hero-bg-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, #061a0b); }
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-content h1 { font-size: clamp(4rem, 10vw, 7rem); font-family: 'Playfair Display', serif; margin-bottom: 20px; }
.hero-content h1 span { color: #cd9c32; }
.hero-content p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 40px; opacity: 0.8; }

.globe-section { padding: 120px 0; background: #fbfcfb; }
.globe-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.globe-text h2 { font-size: 3.5rem; font-family: 'Playfair Display', serif; color: #061a0b; margin-bottom: 25px; }
.globe-text h2 span { color: #cd9c32; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat-card { padding: 25px; background: #fff; border-radius: 16px; border: 1px solid #eee; text-align: center; }
.stat-card strong { display: block; font-size: 2rem; color: #cd9c32; margin-bottom: 5px; }
.stat-card span { font-size: 0.9rem; color: #5e665e; text-transform: uppercase; font-weight: 700; }

.globe-visual { 
    height: 600px; 
    width: 100%; 
    position: relative;
}

#globe-container {
    width: 100%;
    height: 100%;
}

.market-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.market-list li { font-size: 1rem; color: #555; display: flex; align-items: center; gap: 8px; }
.market-list li::before { content: '✓'; color: #cd9c32; font-weight: 800; }

/* --- Orbital Globe Animation --- */
.orbital-globe-wrap { position: relative; width: 500px; height: 500px; display: flex; align-items: center; justify-content: center; transform: scale(0.9); }
.globe-core { width: 200px; height: 200px; background: radial-gradient(circle at 30% 30%, #2e7d32 0%, #061a0b 100%); border-radius: 50%; box-shadow: 0 0 80px rgba(46, 125, 50, 0.3), inset -20px -20px 50px rgba(0,0,0,0.5); position: relative; z-index: 5; }
.globe-core::after { content: ''; position: absolute; inset: 0; background-image: url('https://www.transparenttextures.com/patterns/world-map.png'); opacity: 0.2; background-size: cover; border-radius: 50%; }
.orbit-circle { position: absolute; border: 1px dashed rgba(205,156,50,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: rotateOrbit linear infinite; }
.orbit-1 { width: 320px; height: 320px; animation-duration: 20s; }
.orbit-2 { width: 440px; height: 440px; animation-duration: 30s; animation-direction: reverse; }
.orbit-3 { width: 560px; height: 560px; animation-duration: 40s; }
.orbit-marker { position: absolute; background: #fff; padding: 6px 15px; border-radius: 20px; font-size: 11px; font-weight: 800; color: #061a0b; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transform: rotate(calc(-1 * var(--rotation))) translate(calc(var(--orbit-radius))); border: 1px solid #cd9c32; }
.orbit-1 .orbit-marker { transform: rotate(calc(var(--d))) translate(160px) rotate(calc(-1 * var(--d))); }
.orbit-2 .orbit-marker { transform: rotate(calc(var(--d))) translate(220px) rotate(calc(-1 * var(--d))); }
.orbit-3 .orbit-marker { transform: rotate(calc(var(--d))) translate(280px) rotate(calc(-1 * var(--d))); }
@keyframes rotateOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.major-markets { padding: 120px 0; }
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.market-region { background: #fff; padding: 40px; border-radius: 24px; border: 1px solid #eee; transition: all 0.4s ease; }
.market-region:hover { border-color: #cd9c32; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.market-region h3 { font-size: 1.8rem; font-family: 'Playfair Display', serif; color: #061a0b; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid #cd9c32; display: inline-block; }
.market-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.market-list li { position: relative; padding-left: 15px; font-size: 0.95rem; color: #5e665e; }
.market-list li::before { content: '�'; position: absolute; left: 0; color: #cd9c32; font-weight: 800; }

.export-standards { padding: 100px 0; }
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.standard-card { text-align: center; }
.s-icon { 
    width: 80px; 
    height: 80px; 
    margin: 0 auto 30px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(205,156,50,0.1); 
    border: 1px solid rgba(205,156,50,0.3); 
    border-radius: 50%; 
    color: #cd9c32; 
    transition: all 0.4s ease;
}
.s-icon svg { 
    width: 32px; 
    height: 32px; 
    stroke: #cd9c32;
}
.standard-card:hover .s-icon {
    background: #cd9c32;
    color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(205,156,50,0.3);
}
.standard-card:hover .s-icon svg {
    stroke: #fff;
}
.standard-card h4 { font-size: 1.5rem; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.standard-card p { opacity: 0.8; line-height: 1.6; }

@media (max-width: 1100px) {
    .globe-layout, .markets-grid, .standards-grid { grid-template-columns: 1fr; }
    .orbital-globe-wrap { width: 100%; height: 400px; transform: scale(0.6); }
}

/* Counter-rotation for markers */
.orbit-1 .orbit-marker { animation: counterRotate 20s linear infinite; }
.orbit-2 .orbit-marker { animation: counterRotate 30s linear infinite reverse; }
.orbit-3 .orbit-marker { animation: counterRotate 40s linear infinite; }
@keyframes counterRotate { from { transform: rotate(calc(var(--d))) translate(var(--r)) rotate(0deg); } to { transform: rotate(calc(var(--d))) translate(var(--r)) rotate(-360deg); } }
.orbit-1 { --r: 160px; }
.orbit-2 { --r: 220px; }
.orbit-3 { --r: 280px; }


#globe-container { width: 100%; height: 500px; cursor: move; }


/* --- Split Export Hero --- */
.export-hero-split { height: 100vh; display: flex; background: #061a0b; overflow: hidden; }
.eh-left { width: 45%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 80px; position: relative; z-index: 5; background: #061a0b; }
.eh-right { width: 55%; height: 100%; background: #000; position: relative; display: flex; align-items: center; justify-content: center; }
.map-animation-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.map-container { width: 90%; transform-origin: center center; }
.world-map-svg { width: 100%; filter: drop-shadow(0 0 20px rgba(205,156,50,0.1)); }
.dotted-line { fill: none; stroke: #cd9c32; stroke-width: 1.5; stroke-dasharray: 5,5; }
.origin-pulse { animation: originPulse 2s ease-out infinite; }
@keyframes originPulse { 0% { r: 5; opacity: 1; } 100% { r: 30; opacity: 0; } }

@media (max-width: 1100px) {
    .export-hero-split { flex-direction: column; height: auto; }
    .eh-left, .eh-right { width: 100%; padding: 80px 40px; }
    .eh-right { height: 500px; }
}

#globe-hero-container { width: 100%; height: 100%; cursor: move; }


/* --- High-Tech Industrial Hero --- */
.export-hero-tech { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; background: #000; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-tech-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.4) 50%, transparent 100%); z-index: 2; }
.eh-tech-container { position: relative; z-index: 10; color: #fff; }
.eh-tech-content { max-width: 650px; }
.eh-eyebrow { color: #ff0000; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; font-size: 0.9rem; }
.eh-main-title { font-size: clamp(4rem, 8vw, 6.5rem); line-height: 0.9; font-weight: 900; margin-bottom: 25px; color: #fff; }
.eh-main-title span { color: #ff0000; text-shadow: 0 0 30px rgba(255,0,0,0.3); }
.eh-main-desc { font-size: 1.1rem; opacity: 0.8; margin-bottom: 40px; max-width: 500px; line-height: 1.6; }

.btn-tech-primary { background: #ff0000; color: #fff; padding: 18px 35px; border-radius: 8px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
.btn-tech-primary:hover { background: #cc0000; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255,0,0,0.4); }
.btn-tech-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 18px 35px; border-radius: 8px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; margin-left: 15px; }
.btn-tech-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.eh-tech-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.tech-badge { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: 12px; display: flex; align-items: flex-start; gap: 15px; transition: all 0.4s ease; }
.tech-badge:hover { background: rgba(255,0,0,0.05); border-color: rgba(255,0,0,0.3); transform: translateY(-5px); }
.tb-icon { width: 35px; height: 35px; background: rgba(255,0,0,0.1); color: #ff0000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; flex-shrink: 0; }
.tb-text strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.tb-text span { font-size: 0.8rem; opacity: 0.6; }


/* --- Minimalist Export Hero --- */
.export-hero-minimal { height: 100vh; display: flex; overflow: hidden; background: #061a0b; }
.eh-minimal-left { width: 40%; height: 100%; display: flex; align-items: center; justify-content: center; background: #061a0b; position: relative; z-index: 10; padding-left: 80px; }
.eh-minimal-right { width: 60%; height: 100%; position: relative; }
.minimal-video-wrap { width: 100%; height: 100%; position: relative; }
.minimal-video { width: 100%; height: 100%; object-fit: cover; }
.minimal-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, #061a0b 0%, rgba(6,26,11,0.8) 20%, transparent 100%); }
.eh-minimal-content h1 { font-size: clamp(4rem, 10vw, 7.5rem); line-height: 0.9; font-weight: 900; color: #fff; margin: 0; }
.eh-minimal-content h1 span { color: #cd9c32; }

@media (max-width: 1100px) {
    .export-hero-minimal { flex-direction: column; height: auto; }
    .eh-minimal-left, .eh-minimal-right { width: 100%; }
    .eh-minimal-left { padding: 120px 50px 60px; min-height: 60vh; }
    .eh-minimal-right { height: 450px; }
    .minimal-gradient-overlay { background: linear-gradient(180deg, #061a0b 0%, transparent 100%); }
    .globe-layout { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .stats-grid { justify-content: center; }
}

@media (max-width: 600px) {
    .eh-minimal-left { padding: 80px 25px 30px !important; min-height: auto !important; }
    .eh-minimal-right { height: 280px; }
    .eh-minimal-content h1 { font-size: 3.2rem; }
    .pill-tag { margin-bottom: 15px !important; padding: 6px 18px !important; }
    .gold-divider { margin: 15px 0 !important; }
    .eh-minimal-content p { 
        margin-bottom: 25px !important; 
        font-size: 0.95rem !important; 
        opacity: 0.9 !important; 
        color: rgba(255,255,255,0.9) !important;
    }
    
    .hero-feature-row { 
        flex-direction: row !important; 
        gap: 8px !important; 
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-top: 10px !important;
    }
    .h-feature { flex: 1; }
    .hf-icon { width: 42px !important; height: 42px !important; margin-bottom: 8px !important; }
    .hf-icon svg { width: 18px !important; height: 18px !important; }
    .h-feature span { font-size: 0.58rem !important; line-height: 1.1; text-align: center; min-height: 25px; }
    .h-feature:not(:last-child)::after { display: none; }
    
    .globe-text h2 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: 1fr; gap: 20px; }
    .market-region { padding: 25px; }
    .standards-grid { grid-template-columns: 1fr; gap: 20px; }
    .globe-visual { height: 350px; }
}

.eh-minimal-content h1 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }


/* --- Image-based Hero Content Styling --- */
.eh-minimal-left { justify-content: flex-start; padding-top: 100px; }
.eh-minimal-content { max-width: 550px; text-align: left; }
.pill-tag { display: inline-block; padding: 10px 25px; border: 1px solid #cd9c32; border-radius: 50px; color: #cd9c32; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 30px; }
.gold-text { color: #cd9c32; }
.gold-divider { width: 100px; height: 1px; background: #cd9c32; margin: 30px 0; }
.eh-minimal-content p { font-size: 1.1rem; line-height: 1.6; opacity: 0.8; margin-bottom: 60px; }

.hero-feature-row { display: flex; gap: 40px; align-items: center; }
.h-feature { display: flex; flex-direction: column; align-items: center; gap: 15px; position: relative; }
.h-feature:not(:last-child)::after { content: ''; position: absolute; right: -20px; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.1); }
.hf-icon { width: 65px; height: 65px; border: 1px solid rgba(205,156,50,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #cd9c32; background: rgba(205,156,50,0.05); box-shadow: 0 0 20px rgba(205,156,50,0.1); }
.hf-icon svg { width: 28px; height: 28px; }
.h-feature span { font-size: 0.75rem; font-weight: 800; color: #fff; letter-spacing: 0.5px; }


.eh-minimal-left { padding-left: 150px; }
@media (max-width: 1400px) { .eh-minimal-left { padding-left: 100px; } }


.eh-minimal-content h1 { letter-spacing: 10px; text-transform: uppercase; }


/* --- Contact Us Page Styles --- */
.contact-hero { height: 60vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
.contact-hero .hero-bg-img { position: absolute; inset: 0; z-index: 1; }
.contact-hero .hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.contact-hero .hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%); z-index: 2; }
.contact-hero .hero-content { position: relative; z-index: 10; color: #fff; }

.contact-main { padding: 100px 0; background: #050505; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: flex-start; }

.info-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 30px; border-radius: 15px; display: flex; gap: 20px; margin-bottom: 25px; transition: all 0.4s ease; }
.info-card:hover { background: rgba(205,156,50,0.05); border-color: rgba(205,156,50,0.3); transform: translateX(10px); }
.ic-icon { font-size: 1.8rem; flex-shrink: 0; }
.ic-text h3 { font-family: 'Playfair Display', serif; color: #cd9c32; margin-bottom: 8px; font-size: 1.2rem; }
.ic-text p { opacity: 0.8; line-height: 1.6; }

.business-hours { margin-top: 50px; padding: 30px; background: #061a0b; border-radius: 15px; border-left: 4px solid #cd9c32; }
.business-hours h3 { margin-bottom: 20px; color: #cd9c32; }
.business-hours ul li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); opacity: 0.8; }
.business-hours .closed { color: #ff4d4d; font-weight: 700; }

.contact-form-wrap { background: #111; padding: 50px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.form-header { margin-bottom: 40px; }
.form-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.form-header h2 span { color: #cd9c32; }
.form-header p { opacity: 0.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 0.9rem; opacity: 0.8; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 15px 20px; border-radius: 8px; color: #fff; font-family: inherit; transition: all 0.3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #cd9c32; background: rgba(205,156,50,0.05); }
.btn-block { width: 100%; padding: 20px; justify-content: center; }

.map-section { padding-bottom: 100px; background: #050505; }
.map-container { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-hero { height: 50vh; }
    .contact-form-wrap { padding: 30px; }
    .form-row { grid-template-columns: 1fr; }
}

/* --- Enhanced Brand Theme for Contact Page --- */
.contact-main { background: linear-gradient(180deg, #061a0b 0%, #000 100%); }
.contact-form-wrap { background: rgba(6,26,11,0.6); border: 1px solid rgba(205,156,50,0.2); backdrop-filter: blur(15px); }
.info-card { background: rgba(205,156,50,0.02); border-color: rgba(205,156,50,0.1); }
.ic-icon { filter: drop-shadow(0 0 10px rgba(205,156,50,0.3)); }


/* --- Cream & Green Contact Theme --- */
.contact-hero-tall { height: 80vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
.contact-hero-tall .hero-bg-img { position: absolute; inset: 0; z-index: 1; }
.contact-hero-tall .hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.contact-hero-tall .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%); z-index: 2; }
.contact-hero-tall h1 { font-size: clamp(3rem, 6vw, 4.5rem); text-transform: none; font-family: 'Playfair Display', serif; }

.contact-main { background: #fcfaf5; color: #333; }
.info-card { background: #fff; border: 1px solid #e8e4db; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.info-card h3 { color: #061a0b; }
.info-card p { color: #555; }
.ic-icon { color: #061a0b; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: rgba(6,26,11,0.05); border-radius: 50%; }
.ic-icon svg { width: 22px; height: 22px; }

.business-hours { background: #061a0b; color: #fff; }
.business-hours ul li { border-color: rgba(255,255,255,0.1); }
.contact-form-wrap { background: #061a0b; color: #fff; }
.contact-form-wrap .form-header h2 { color: #fff; }
.contact-form-wrap .form-header h2 span { color: #cd9c32; }
.contact-form-wrap .form-group input, .contact-form-wrap .form-group select, .contact-form-wrap .form-group textarea { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.contact-form-wrap .form-group select option { color: #000; background-color: #fff; }


.hc-wrap { max-width: 800px; margin: 0 auto; text-align: center; }
.hc-wrap p { max-width: 600px; margin: 25px auto 0; }
.map-container iframe { filter: grayscale(1) sepia(0.2) hue-rotate(90deg) contrast(1.1); transition: all 0.5s ease; }
.map-container:hover iframe { filter: none; }


/* --- Full Width Map Styles --- */
.map-section { width: 100%; padding: 0 !important; overflow: hidden; background: #fcfaf5; }
.map-container { width: 100% !important; max-width: none !important; border-radius: 0 !important; border: none !important; }
.map-container iframe { width: 100%; display: block; }





/* Portfolio Title - Center & Scale Fix */
.portfolio-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
    text-align: center;
    width: 100%;
    max-width: 1200px !important;
    margin: 0 auto 30px !important;
    display: block;
}

@media (max-width: 768px) {
    .portfolio-title {
        font-size: 1.8rem !important;
        white-space: normal;
        margin-bottom: 20px !important;
    }

    .production-process {
        padding: 60px 0;
    }

    .process-video-wrap {
        border: none !important;
        border-radius: 15px;
        margin: 20px 16px 0;
        box-shadow: none !important;
        background: transparent !important;
    }
}

/* Production Process Section */
.production-process {
    background: #fdfbf7;
    padding: 100px 0;
}

.process-video-wrap {
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
    position: relative;
}

.process-video {
    width: 100%;
    display: block;
    filter: contrast(1.05);
    mix-blend-mode: multiply;
}


/* Hero Slideshow Captions */
.ph-slide {
    position: absolute !important;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
}

.slide-caption {
    z-index: 5;
    width: 100%;
    color: #fff;
}

.slide-caption h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    margin: 0;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--gold-soft);
}

.slide-caption p {
    font-size: 0.95rem;
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 80%;
}

@media (max-width: 768px) {
    .slide-caption h3 { font-size: 2rem; }
    .slide-caption p { font-size: 0.8rem; }
    .ph-slide { padding: 20px; }
}


/* Fix for Hero Slideshow Captions Visibility */
.ph-slide {
    position: absolute !important;
    inset: 0;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 !important;
    background: transparent !important;
    overflow: hidden;
}

.ph-slide img {
    max-width: 85% !important;
    max-height: 85% !important;
    object-fit: contain !important;
    margin-bottom: 80px !important; /* Increased space for caption */
    z-index: 1;
}

.slide-caption {
    position: absolute !important;
    bottom: 30px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10 !important;
    text-align: center !important;
    pointer-events: none;
    padding: 0 20px;
}

.slide-caption h3 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
    margin: 0 !important;
    color: var(--gold-soft) !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9) !important;
}

.slide-caption p {
    font-size: clamp(0.75rem, 2vw, 0.95rem) !important;
    margin: 5px 0 0 !important;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9) !important;
    opacity: 0.95;
    font-weight: 500;
}

/* Mobile overrides for Products & Detail Pages */
@media (max-width: 768px) {
    .mobile-br {
        display: block !important;
    }
    .balanced-nutrition {
        padding: 50px 0 !important;
    }
    .related-products {
        padding: 50px 0 !important;
    }
    .intro-text p, 
    .ph-desc, 
    .banner-content p, 
    .banner-text p, 
    .nutrition-text p,
    .value-item p {
        text-align: justify !important;
    }
    .banner-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    .banner-visual {
        order: 2 !important;
    }
    .banner-text {
        order: 1 !important;
        text-align: left !important;
    }
    .intro-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    .intro-text {
        order: 1 !important;
    }
    .intro-visual {
        order: 2 !important;
    }

    /* Stacking nutrition-grid vertically on mobile */
    .nutrition-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    /* Title and heading spacing checks */
    .product-hero {
        padding-top: 100px !important;
        min-height: auto !important;
    }
    .ph-left {
        padding: 60px 20px 40px !important;
    }
    .ph-tag {
        margin-bottom: 15px !important;
    }
    .ph-title {
        font-size: 3rem !important;
        margin-bottom: 15px !important;
    }
    .ph-desc {
        margin-bottom: 25px !important;
        font-size: 1rem !important;
    }
    
    .nutrition-text .tag {
        margin-bottom: 12px !important;
    }
    .nutrition-text h2 {
        font-size: 1.9rem !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        line-height: 1.15 !important;
    }
    .nutrition-text p {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }
    
    .production-process {
        padding: 50px 0 !important;
    }
    .production-process .section-title {
        margin-bottom: 30px !important;
    }
    .production-process .section-title h2 {
        font-size: 2.4rem !important;
        margin-top: 8px !important;
        margin-bottom: 15px !important;
        line-height: 1.15 !important;
    }
    .production-process .section-title p {
        font-size: 1rem !important;
    }
    
    .related-products .section-title {
        margin-bottom: 30px !important;
    }
    .related-products .section-title h2 {
        font-size: 2.4rem !important;
        margin-top: 8px !important;
        margin-bottom: 15px !important;
        line-height: 1.15 !important;
    }
    .related-products .section-title p {
        font-size: 1rem !important;
    }
}

