/* =============================================
   SEMBIEXPORT — MAIN STYLESHEET
   PT. Sembi Ekspor Nusantara
   ============================================= */

:root {
    --green:       #1B4332;
    --green-mid:   #2D6A4F;
    --green-light: #40916C;
    --gold:        #C9A84C;
    --gold-light:  #E9C46A;
    --gold-dark:   #A67C30;
    --white:       #FFFFFF;
    --off-white:   #F8F6F0;
    --light:       #F2F7F4;
    --text:        #1A1A2E;
    --text-mid:    #4A5568;
    --text-light:  #718096;
    --border:      #E2E8F0;
    --shadow:      0 4px 24px rgba(27,67,50,0.08);
    --shadow-lg:   0 12px 48px rgba(27,67,50,0.14);
    --radius:      14px;
    --radius-sm:   8px;
    --tr:          all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; font-family: 'Poppins', sans-serif; }

/* =============================================
   UTILITIES
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    position: relative;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 8px;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.section-header p {
    color: var(--text-mid);
    max-width: 580px;
    margin: 0 auto;
}

.gold-text { color: var(--gold); }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    transition: var(--tr);
    box-shadow: 0 4px 18px rgba(201,168,76,0.38);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.55);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.55);
    transition: var(--tr);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal-up, .reveal-left, .reveal-right, .fade-up {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up  { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.fade-up    { transform: translateY(30px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .fade-up.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.35s !important; }
.delay-4 { transition-delay: 0.5s !important; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--tr);
}
#navbar.scrolled {
    background: rgba(15, 40, 25, 0.96);
    backdrop-filter: blur(14px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.88);
    font-size: 0.88rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 3px;
}
.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    transition: var(--tr);
    letter-spacing: 0.3px;
}
.lang-btn.active {
    background: var(--gold);
    color: #fff;
}
.lang-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Sliding backgrounds */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.05);
    animation: slowZoom 8s ease-in-out infinite alternate;
}
.hero-slide.active {
    opacity: 1;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 30, 18, 0.88) 0%,
        rgba(20, 55, 35, 0.75) 50%,
        rgba(10, 25, 15, 0.82) 100%
    );
    z-index: 1;
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    animation: floatParticle linear infinite;
}
.particles span:nth-child(1) { width: 80px; height: 80px; left: 10%; top: 20%; animation-duration: 12s; }
.particles span:nth-child(2) { width: 40px; height: 40px; left: 30%; top: 60%; animation-duration: 8s; animation-delay: 2s; }
.particles span:nth-child(3) { width: 100px; height: 100px; left: 70%; top: 15%; animation-duration: 15s; animation-delay: 1s; }
.particles span:nth-child(4) { width: 55px; height: 55px; left: 80%; top: 70%; animation-duration: 10s; animation-delay: 3s; }
.particles span:nth-child(5) { width: 30px; height: 30px; left: 50%; top: 80%; animation-duration: 7s; animation-delay: 0.5s; }
.particles span:nth-child(6) { width: 70px; height: 70px; left: 15%; top: 75%; animation-duration: 11s; animation-delay: 4s; }
.particles span:nth-child(7) { width: 45px; height: 45px; left: 60%; top: 40%; animation-duration: 9s; animation-delay: 1.5s; }
.particles span:nth-child(8) { width: 90px; height: 90px; left: 90%; top: 35%; animation-duration: 13s; animation-delay: 2.5s; }

@keyframes floatParticle {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    transition: var(--tr);
    cursor: pointer;
}
.indicator.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.hero-desc {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero stat card */
.hero-card {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1.25rem 2rem;
    gap: 2rem;
    width: fit-content;
    flex-wrap: wrap;
}
.hero-card-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-card-item i {
    font-size: 1.6rem;
    color: var(--gold-light);
}
.hero-card-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-card-item span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}
.hero-card-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
}
.marquee-track span {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
}
.marquee-track i { color: var(--gold-light); font-size: 0.7rem; }

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: 7rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}
.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}
.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 190px;
    height: 165px;
    object-fit: cover;
    border-radius: 14px;
    border: 5px solid #fff;
    box-shadow: var(--shadow-lg);
}
.about-badge {
    position: absolute;
    top: 30px;
    left: -25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.about-badge i { font-size: 1.5rem; }
.about-badge strong { display: block; font-size: 0.88rem; font-weight: 700; }
.about-badge span { font-size: 0.75rem; opacity: 0.85; }

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
.about-desc {
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.75rem;
}

.vision-box {
    display: flex;
    gap: 1rem;
    background: var(--light);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.25rem;
    margin-bottom: 2rem;
}
.vision-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vision-icon i { color: var(--gold-light); font-size: 1rem; }
.vision-box h4 { font-weight: 700; color: var(--green); margin-bottom: 0.35rem; font-size: 0.9rem; }
.vision-box p { font-size: 0.85rem; color: var(--text-mid); font-style: italic; line-height: 1.7; }

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.mission-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.mission-icon {
    width: 38px;
    height: 38px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tr);
}
.mission-icon i { color: var(--gold); font-size: 0.9rem; }
.mission-item:hover .mission-icon { background: var(--green); }
.mission-item:hover .mission-icon i { color: var(--gold-light); }
.mission-item h5 { font-weight: 700; color: var(--green); font-size: 0.85rem; margin-bottom: 0.2rem; }
.mission-item p { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: 7rem 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(27,67,50,0.04);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--tr);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--tr);
}
.service-icon-wrap i { color: var(--gold-light); font-size: 1.3rem; }
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.service-card:hover .service-icon-wrap i { color: #fff; }

.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.65rem; }
.service-card p { color: var(--text-mid); font-size: 0.85rem; line-height: 1.75; margin-bottom: 1.25rem; }

.service-link {
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--tr);
}
.service-link:hover { color: var(--green); gap: 0.7rem; }

/* =============================================
   COMMODITIES SECTION
   ============================================= */
.commodities {
    padding: 7rem 0;
    background: #fff;
}

.commodities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.commodity-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--tr);
    background: #fff;
}
.commodity-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.commodity-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.commodity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.commodity-card:hover .commodity-img img { transform: scale(1.1); }

.commodity-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.commodity-card:hover .commodity-overlay { opacity: 1; }

.btn-inquiry {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--tr);
}
.btn-inquiry:hover { transform: scale(1.05); }

.commodity-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(27,67,50,0.85);
    backdrop-filter: blur(6px);
    color: var(--gold-light);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.commodity-body { padding: 1.5rem; }
.commodity-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--green); margin-bottom: 0.6rem; }
.commodity-body p { color: var(--text-mid); font-size: 0.84rem; line-height: 1.7; margin-bottom: 1rem; }

.commodity-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.commodity-tags span {
    background: var(--light);
    color: var(--green);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(27,67,50,0.08);
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--green) 0%, #0e2318 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 80px solid rgba(255,255,255,0.03);
}
.why-us::after {
    content: '';
    position: absolute;
    left: -80px; bottom: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    border: 60px solid rgba(201,168,76,0.06);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-content .section-label { color: var(--gold-light); }
.why-us-content .section-label::before { background: var(--gold-light); }
.why-us-content h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 2.5rem; }

.why-list { display: flex; flex-direction: column; gap: 1.75rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(201,168,76,0.35);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
    transition: var(--tr);
}
.why-item:hover .why-num { color: var(--gold); }
.why-item h4 { font-size: 0.98rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.3rem; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.75; }

.why-img-wrap {
    position: relative;
}
.why-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.why-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    animation: floatCard 3s ease-in-out infinite alternate;
}
.why-floating-card i { font-size: 1.2rem; color: var(--gold-light); }
.card-1 { bottom: -25px; left: -25px; animation-delay: 0s; }
.card-2 { top: 30px; right: -25px; animation-delay: 1.5s; }

@keyframes floatCard {
    from { transform: translateY(0); }
    to   { transform: translateY(-12px); }
}

/* =============================================
   GLOBAL REACH
   ============================================= */
.global-reach {
    padding: 6rem 0;
    background: var(--off-white);
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.reach-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--tr);
    border-bottom: 3px solid transparent;
}
.reach-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
}
.reach-item i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.reach-item h4 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.5rem; }
.reach-item p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: 7rem 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrap {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrap > i {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    background: #fff;
    transition: var(--tr);
    appearance: none;
}
.input-wrap.textarea-wrap { align-items: flex-start; }
.input-wrap.textarea-wrap > i { top: 0.9rem; }
.input-wrap textarea { resize: vertical; min-height: 120px; }
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    outline: none;
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(64,145,108,0.12);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--tr);
    margin-top: 0.5rem;
}
.btn-submit:hover {
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27,67,50,0.3);
}

/* Contact info */
.contact-card {
    background: var(--green);
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.person-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}
.contact-person h4 { font-weight: 700; font-size: 0.98rem; }
.contact-person p { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon i { color: var(--gold-light); font-size: 0.9rem; }
.whatsapp-icon { background: rgba(37,211,102,0.2); }
.whatsapp-icon i { color: #4dff91; }

.contact-item strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.contact-item a { color: rgba(255,255,255,0.75); font-size: 0.82rem; transition: color 0.3s; }
.contact-item a:hover { color: var(--gold-light); }

.shipping-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.shipping-card h4 { font-weight: 700; color: var(--green); margin-bottom: 1.25rem; font-size: 0.9rem; }
.shipping-methods { display: flex; justify-content: space-around; gap: 1rem; }
.ship-method { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.ship-method-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}
.ship-method-icon i { color: var(--gold-light); font-size: 1.3rem; }
.ship-method:hover .ship-method-icon { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(27,67,50,0.3); }
.ship-method span { font-size: 0.75rem; color: var(--text-mid); font-weight: 600; text-align: center; }

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--green);
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}
.footer-logo img { height: 46px; }
.footer-logo span { font-size: 1.2rem; font-weight: 800; color: #fff; }
.footer-company { color: var(--gold-light); font-size: 0.78rem; font-weight: 600; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 1.25rem; }

.footer-socials { display: flex; gap: 0.65rem; }
.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--tr);
}
.footer-socials a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

.footer-col h4 { color: var(--gold-light); font-weight: 700; font-size: 0.9rem; margin-bottom: 1.25rem; }
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-col a {
    color: rgba(255,255,255,0.65);
    font-size: 0.83rem;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col p {
    color: rgba(255,255,255,0.65);
    font-size: 0.83rem;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}
.footer-col i { color: var(--gold); margin-top: 0.15rem; width: 14px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--tr);
    animation: waPulse 2.5s ease infinite;
}
.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37,211,102,0.65);
}
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #fff;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================
   MODAL
   ============================================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.modal.open { display: flex; }

.modal-box {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 380px;
    width: 90%;
    animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.modal-icon i {
    font-size: 3.5rem;
    color: var(--green-light);
    margin-bottom: 1rem;
}
.modal-box h3 { font-size: 1.3rem; font-weight: 800; color: var(--green); margin-bottom: 0.65rem; }
.modal-box p { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 1.75rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .reach-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 3rem; }
    .why-us-grid { gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(10, 30, 18, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }

    .hero-text h1 { font-size: 2.2rem; }
    .hero-card { gap: 1.25rem; padding: 1rem 1.25rem; }
    .hero-card-divider { display: none; }

    .about-grid,
    .why-us-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .about-img-float { width: 140px; height: 120px; right: 10px; }
    .about-badge { left: 10px; top: 20px; }

    .commodities-grid,
    .services-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }

    .section-header h2 { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .why-floating-card { display: none; }
    .about-img-main { height: 320px; }
    .why-img-wrap img { height: 320px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero-text h1 { font-size: 1.85rem; }
    .hero-card { justify-content: center; }
    .reach-grid { grid-template-columns: 1fr 1fr; }
    .lang-btn { padding: 3px 7px; font-size: 0.68rem; }
}
