/* ============================================
   JODAC TRADING PLC - Premium Landing Styles
   ============================================ */

:root {
    --emerald: #0B6B3A;
    --forest: #063D24;
    --gold: #C89B3C;
    --gold-light: #E8C56A;
    --gold-dark: #9A7428;
    --cream: #F7F2E8;
    --cream-dark: #EDE5D5;
    --coffee: #6B3F24;
    --white: #FFFFFF;
    --text: #2A2A2A;
    --text-light: #5A5A5A;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --shadow-sm: 0 4px 12px rgba(6, 61, 36, 0.08);
    --shadow-md: 0 8px 30px rgba(6, 61, 36, 0.12);
    --shadow-lg: 0 20px 60px rgba(6, 61, 36, 0.18);
    --shadow-gold: 0 8px 25px rgba(200, 155, 60, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 85px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Preloader ---- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--forest), var(--emerald));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.preloader__inner {
    text-align: center;
}

.preloader__logo-wrap {
    width: 120px;
    margin: 0 auto 24px;
    animation: pulse 1.5s ease infinite;
}

.preloader__logo {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
}

.preloader__beans {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.preloader__bean {
    width: 14px;
    height: 22px;
    background: var(--coffee);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: beanBounce 1.2s ease infinite;
}

.preloader__bean:nth-child(2) { animation-delay: 0.2s; }
.preloader__bean:nth-child(3) { animation-delay: 0.4s; }

.preloader__text {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.preloader__bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader__bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}

@keyframes beanBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(200, 155, 60, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ---- Glass Card ---- */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 155, 60, 0.25);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.glass-card:hover {
    border-color: rgba(200, 155, 60, 0.5);
    box-shadow: var(--shadow-md);
}

/* ---- Section Utilities ---- */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-header--center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title--sm {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 16px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 10px;
}

.section-line--center {
    margin: 0 auto;
}

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Header / Navbar ---- */
.header-area,
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(6, 61, 36, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 155, 60, 0.4);
    z-index: 9999;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(6, 61, 36, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(200, 155, 60, 0.55);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 32px;
}

.navbar__brand,
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 4px 0;
}

.navbar__logo,
.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar__menu li {
    list-style: none;
}

.nav-link,
.navbar ul li a {
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff !important;
    border-radius: 50px;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after,
.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active,
.navbar ul li a:hover,
.navbar ul li a.active {
    color: #C89B3C !important;
}

.nav-link:hover::after,
.nav-link.active::after,
.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 55%;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn--nav {
    background: #C89B3C;
    color: #ffffff !important;
    border: 2px solid #C89B3C;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(200, 155, 60, 0.35);
    transition: all var(--transition);
}

.btn--nav:hover {
    background: #ffffff;
    color: #063D24 !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.4);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
}

.navbar__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Offcanvas ---- */
.offcanvas {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
}

.offcanvas.active {
    pointer-events: all;
}

.offcanvas__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 61, 36, 0.6);
    opacity: 0;
    transition: opacity var(--transition);
}

.offcanvas.active .offcanvas__overlay {
    opacity: 1;
}

.offcanvas__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100%;
    background: var(--cream);
    padding: 32px 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.offcanvas.active .offcanvas__panel {
    transform: translateX(0);
}

.offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(200, 155, 60, 0.3);
}

.offcanvas__logo {
    width: 60px;
    border-radius: var(--radius-sm);
}

.offcanvas__close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--forest);
    color: var(--gold);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.offcanvas__close:hover {
    background: var(--gold);
    color: var(--white);
}

.offcanvas__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.offcanvas__link {
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--forest);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.offcanvas__link:hover {
    background: rgba(11, 107, 58, 0.08);
    border-left-color: var(--gold);
    color: var(--gold-dark);
    padding-left: 24px;
}

.offcanvas__footer {
    padding-top: 24px;
    border-top: 1px solid rgba(200, 155, 60, 0.2);
}

.offcanvas__footer p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.offcanvas__phone {
    color: var(--emerald);
    font-weight: 600;
}

/* ---- Hero ---- */
.hero,
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 61, 36, 0.92) 0%,
        rgba(11, 107, 58, 0.78) 50%,
        rgba(6, 61, 36, 0.88) 100%
    );
}

.hero__floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__float {
    position: absolute;
    opacity: 0.15;
}

.hero__float--bean {
    width: 20px;
    height: 32px;
    background: var(--coffee);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: floatBean 8s ease-in-out infinite;
}

.hero__float--1 { top: 15%; left: 10%; animation-delay: 0s; }
.hero__float--2 { top: 60%; right: 15%; width: 16px; height: 26px; animation-delay: 2s; }
.hero__float--3 { bottom: 20%; left: 25%; width: 14px; height: 22px; animation-delay: 4s; }

.hero__float--leaf {
    color: var(--emerald);
    font-size: 2.5rem;
    animation: floatLeaf 10s ease-in-out infinite;
}

.hero__float--4 { top: 25%; right: 20%; animation-delay: 1s; }
.hero__float--5 { bottom: 30%; right: 8%; font-size: 3rem; animation-delay: 3s; }
.hero__float--6 { top: 50%; left: 5%; font-size: 2rem; animation-delay: 5s; }

@keyframes floatBean {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
    50% { transform: translateY(-25px) rotate(20deg); opacity: 0.2; }
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 40px 24px 80px;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(200, 155, 60, 0.15);
    border: 1px solid rgba(200, 155, 60, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 620px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 155, 60, 0.25);
    border-radius: var(--radius-md);
    max-width: fit-content;
}

.hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    line-height: 1;
}

.hero__stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 155, 60, 0.3);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(200, 155, 60, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero__scroll span {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 4px;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(16px); }
}

/* ---- About ---- */
.about {
    background: var(--cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about__lead {
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 500;
    margin-bottom: 16px;
}

.about__content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.about__feature i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 107, 58, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

.about__feature h4 {
    font-size: 1rem;
    color: var(--forest);
    margin-bottom: 2px;
}

.about__feature p {
    font-size: 0.85rem;
    margin: 0;
}

.about__visual {
    position: relative;
}

.about__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
}

.about__image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about__experience {
    position: absolute;
    bottom: -24px;
    left: -24px;
    padding: 24px 32px;
    text-align: center;
    z-index: 2;
}

.about__exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
}

.about__exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.company-overview {
    padding-top: 40px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.overview-card {
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
}

.overview-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.overview-card i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.overview-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.overview-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest);
}

/* ---- Products ---- */
.products {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(200, 155, 60, 0.2);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 61, 36, 0.85), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__tag {
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.product-card__body {
    padding: 20px;
}

.product-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--forest);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.product-card:hover .product-card__body h3 {
    color: var(--emerald);
}

.product-card__body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---- Why Choose ---- */
.why-choose {
    position: relative;
    background: var(--forest);
    overflow: hidden;
}

.why-choose__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(11, 107, 58, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 155, 60, 0.1) 0%, transparent 40%);
}

.why-choose .section-tag { color: var(--gold-light); }
.why-choose .section-title { color: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    padding: 36px 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(200, 155, 60, 0.2);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.why-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ---- Factory ---- */
.factory {
    background: var(--cream);
}

.factory__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.factory__intro {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.factory__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.factory__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.factory__detail:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.factory__detail i {
    font-size: 1.2rem;
    color: var(--emerald);
    margin-top: 2px;
}

.factory__detail h4 {
    font-size: 0.95rem;
    color: var(--forest);
    margin-bottom: 2px;
}

.factory__detail p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.factory__visual {
    position: relative;
    height: 480px;
}

.factory__image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 75%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
}

.factory__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factory__image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--emerald);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.factory__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packaging__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.packaging-card {
    padding: 36px 28px;
    text-align: center;
}

.packaging-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.packaging-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--forest);
    margin-bottom: 8px;
}

.packaging-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ---- Counter ---- */
.counter-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--emerald), var(--forest));
    overflow: hidden;
}

.counter-section__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C89B3C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 155, 60, 0.2);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.counter-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: var(--gold);
}

.counter-item__icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.counter-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.counter-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.counter-item p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

/* ---- Gallery ---- */
.gallery {
    background: var(--cream-dark);
}

.gallery__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery__filter {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--forest);
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.gallery__filter:hover,
.gallery__filter.active {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--gold);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid rgba(200, 155, 60, 0.35);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(200, 155, 60, 0.15);
    z-index: 2;
    pointer-events: none;
}

.gallery-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200, 155, 60, 0.4);
    transform: translateY(-4px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 61, 36, 0);
    transition: background 0.5s ease;
    z-index: 1;
}

.gallery-card:hover .gallery-card__overlay {
    background: rgba(6, 61, 36, 0.72);
}

.gallery-card__tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease 0.05s;
}

.gallery-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease 0.1s;
}

.gallery-card:hover .gallery-card__tag,
.gallery-card:hover .gallery-card__title {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card.hidden-item {
    display: none;
}

/* ---- CTA ---- */
.cta-section {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-section__leaf {
    position: absolute;
    font-size: 8rem;
    color: rgba(11, 107, 58, 0.05);
    top: -20px;
    right: 10%;
}

.cta-section__leaf--2 {
    top: auto;
    bottom: -30px;
    right: auto;
    left: 5%;
    transform: rotate(180deg);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 56px;
    background: linear-gradient(135deg, rgba(11, 107, 58, 0.08), rgba(200, 155, 60, 0.08));
    border: 2px solid rgba(200, 155, 60, 0.3);
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--forest);
    margin-bottom: 8px;
}

.cta-box p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ---- Contact ---- */
.contact {
    background: var(--cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
}

.contact__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald), var(--forest));
    color: var(--gold);
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact__card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.contact__card p {
    font-size: 0.95rem;
    color: var(--forest);
    line-height: 1.5;
}

.contact__card a {
    color: var(--emerald);
    font-weight: 500;
}

.contact__card a:hover {
    color: var(--gold-dark);
}

.contact__form {
    padding: 40px;
}

.contact__form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(200, 155, 60, 0.2);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--forest);
    color: rgba(255, 255, 255, 0.75);
    padding: 0;
}

.site-footer__gold-line {
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer__logo {
    width: 80px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.footer__about {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 155, 60, 0.15);
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
    display: inline-block;
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer__contact i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer__contact a:hover {
    color: var(--gold);
}

.footer-bottom-bar {
    background: #1a1410;
    border-top: 1px solid rgba(200, 155, 60, 0.25);
    padding: 18px 0;
}

.footer-bottom-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom-bar__text {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.footer-bottom-bar__text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom-bar__text a:hover {
    color: var(--gold);
}

.footer-bottom-bar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.95;
    transition: opacity var(--transition);
}

.footer-bottom-bar__logo:hover {
    opacity: 1;
}

.footer-bottom-bar__logo img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }

    .hero,
    .hero-section {
        padding-top: 88px;
    }

    .navbar__logo,
    .logo img {
        height: 52px;
    }

    .section {
        padding: 70px 0;
    }

    .navbar__menu,
    .navbar__cta {
        display: none;
    }

    .navbar__toggle {
        display: flex;
    }

    .about__grid,
    .factory__split,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__visual {
        order: -1;
    }

    .about__image-wrap img {
        height: 300px;
    }

    .about__experience {
        bottom: -16px;
        left: 16px;
    }

    .products__grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packaging__grid {
        grid-template-columns: 1fr;
    }

    .factory__visual {
        height: 360px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-bar__inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-bottom-bar__text {
        font-size: 0.75rem;
    }

    .footer-bottom-bar__logo img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        height: 260px;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }
}
