/* ============================================
   FLAMINGO FOOD INTERNATIONAL
   Design System & Stylesheet
   ============================================ */

:root {
    /* Brand palette — drawn from Finutrex logo */
    --yellow-50:  #FFFBEB;
    --yellow-100: #FEF3C7;
    --yellow-200: #FDE68A;
    --yellow-300: #FCD34D;
    --yellow-400: #FBBF24;
    --yellow-500: #F5A623; /* primary brand yellow */
    --yellow-600: #E89216;
    --yellow-700: #B36F0F;
    --yellow-800: #7A4A0A;

    --ink-900: #1A1308;
    --ink-800: #2A1F10;
    --ink-700: #3D2F1B;
    --ink-500: #6B5840;
    --ink-400: #8B7858;
    --ink-300: #B8A98E;

    --cream-50: #FEFCF7;
    --cream-100: #FDF8EC;
    --cream-200: #F8EFD8;

    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(245, 166, 35, 0.08);
    --shadow-md: 0 8px 24px rgba(245, 166, 35, 0.12);
    --shadow-lg: 0 20px 50px rgba(122, 74, 10, 0.18);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    --container: 1240px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-800);
    background: var(--cream-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--yellow-600);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--yellow-700); }

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink-900);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.2rem; }

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

section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--ink-900);
    color: var(--cream-100);
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 22px;
    align-items: center;
}

.top-bar i {
    color: var(--yellow-500);
    margin-right: 6px;
}

.top-bar-right a {
    color: var(--cream-100);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.top-bar-right a:hover {
    background: var(--yellow-500);
    color: var(--ink-900);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(122, 74, 10, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(122, 74, 10, 0.12);
}

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

.logo-block {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink-900);
}

.logo-mark {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--cream-100);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink-900);
    letter-spacing: -0.02em;
}

.brand-sub {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--yellow-600);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--ink-800);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow-500);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a.active { color: var(--yellow-600); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--ink-900);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--ink-900);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 166, 35, 0.45);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--ink-900);
    border: 2px solid var(--ink-900);
}

.btn-outline:hover {
    background: var(--ink-900);
    color: var(--yellow-300);
}

.btn-light {
    background: var(--white);
    color: var(--ink-900);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--yellow-50) 0%, var(--cream-100) 50%, var(--yellow-100) 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.18), transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.25), transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 166, 35, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--yellow-700);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-eyebrow .pulse {
    width: 8px;
    height: 8px;
    background: var(--yellow-500);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(245, 166, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

.hero h1 {
    margin-bottom: 22px;
}

.hero h1 .highlight {
    color: var(--yellow-600);
    font-style: italic;
    font-weight: 500;
}

.hero-lede {
    font-size: 1.15rem;
    color: var(--ink-700);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 580px;
}

.hero-stats .stat {
    border-left: 3px solid var(--yellow-500);
    padding-left: 16px;
}

.hero-stats .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: var(--ink-500);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    aspect-ratio: 1;
}

.hero-card-main {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15), transparent 50%);
}

.hero-logo-display {
    position: absolute;
    inset: 12%;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-logo-display img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.floating-badge i {
    color: var(--yellow-500);
    font-size: 1.5rem;
}

.floating-badge .badge-text {
    font-size: 0.8rem;
    color: var(--ink-500);
}

.floating-badge .badge-value {
    font-weight: 700;
    color: var(--ink-900);
    font-size: 0.95rem;
}

.badge-1 { top: 5%; left: -8%; animation: float 6s ease-in-out infinite; }
.badge-2 { bottom: 8%; right: -10%; animation: float 7s ease-in-out infinite 1s; }
.badge-3 { bottom: 35%; left: -12%; animation: float 5s ease-in-out infinite 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
    display: inline-block;
    color: var(--yellow-600);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
    position: relative;
    padding-left: 50px;
}

.section-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 2px;
    background: var(--yellow-500);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-header.left { text-align: left; margin-left: 0; }
.section-header.left .section-eyebrow { padding-left: 50px; }

.section-header p {
    color: var(--ink-500);
    font-size: 1.05rem;
    margin-top: 14px;
}

/* ============================================
   FEATURE STRIP
   ============================================ */
.feature-strip {
    background: var(--ink-900);
    padding: 50px 0;
    color: var(--cream-50);
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.feature-item p {
    color: var(--ink-300);
    font-size: 0.85rem;
}

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    aspect-ratio: 1;
}

.about-image-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main::before {
    content: "🌾";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    opacity: 0.85;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 50%;
    aspect-ratio: 1;
    background: var(--ink-900);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-400);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.about-image-accent .num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-accent .label {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 8px;
    color: var(--cream-100);
}

.about-content h2 { margin-bottom: 24px; }
.about-content > p {
    color: var(--ink-700);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.75;
}

.about-points {
    margin: 30px 0;
}

.about-points li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.about-points i {
    color: var(--yellow-500);
    margin-top: 4px;
    font-size: 1.1rem;
}

.about-points strong {
    color: var(--ink-900);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.about-points span {
    color: var(--ink-500);
    font-size: 0.92rem;
}

/* ============================================
   PRODUCT CATEGORIES
   ============================================ */
.products-section { background: var(--cream-100); }

.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(245, 166, 35, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid rgba(245, 166, 35, 0.12);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow-400), var(--yellow-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow-300);
}

.product-card:hover::before { transform: scaleX(1); }

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow-100), var(--yellow-200));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    color: var(--white);
    transform: rotate(-8deg) scale(1.05);
}

.product-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.product-card p {
    color: var(--ink-500);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

.product-card .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.product-card .product-tags span {
    font-size: 0.75rem;
    background: var(--cream-100);
    color: var(--yellow-700);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 500;
}

.product-card .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--ink-900);
    font-size: 0.9rem;
}

.product-card .arrow-link i {
    transition: transform var(--transition);
    color: var(--yellow-600);
}

.product-card:hover .arrow-link i { transform: translateX(6px); }

/* ============================================
   QUALITY / WHY-US
   ============================================ */
.why-us {
    background: var(--ink-900);
    color: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15), transparent 60%);
    border-radius: 50%;
}

.why-us .section-header { color: var(--cream-50); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: var(--ink-300); }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 166, 35, 0.18);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(245, 166, 35, 0.08);
    border-color: var(--yellow-500);
    transform: translateY(-6px);
}

.why-card .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow-500);
    line-height: 1;
    margin-bottom: 16px;
    font-style: italic;
}

.why-card h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--ink-300);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   GLOBAL REACH
   ============================================ */
.global-reach {
    background: linear-gradient(180deg, var(--cream-50), var(--yellow-50));
}

.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.global-content h2 { margin-bottom: 20px; }
.global-content > p {
    color: var(--ink-700);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.country-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}

.country-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(245, 166, 35, 0.15);
    font-size: 0.92rem;
    font-weight: 500;
}

.country-list .flag {
    font-size: 1.2rem;
}

.world-display {
    aspect-ratio: 1;
    background: radial-gradient(circle at center, var(--yellow-100), var(--yellow-200) 60%, transparent 75%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.world-display::before {
    content: "🌍";
    font-size: clamp(7rem, 18vw, 14rem);
    filter: drop-shadow(0 10px 30px rgba(245, 166, 35, 0.3));
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dot-pulse {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--yellow-600);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--yellow-500);
    animation: pulse-dot 2s infinite;
}

.dot-pulse.d1 { top: 30%; left: 25%; animation-delay: 0s; }
.dot-pulse.d2 { top: 45%; right: 20%; animation-delay: 0.7s; }
.dot-pulse.d3 { bottom: 25%; left: 35%; animation-delay: 1.4s; }

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7); }
    50% { box-shadow: 0 0 0 18px rgba(245, 166, 35, 0); }
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-section { background: var(--white); }

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

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step .step-num {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
    position: relative;
    z-index: 2;
}

.process-step h4 {
    margin-bottom: 10px;
    color: var(--ink-900);
}

.process-step p {
    color: var(--ink-500);
    font-size: 0.9rem;
}

/* connector lines */
.process-grid::before {
    content: "";
    position: absolute;
    top: 65px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--yellow-300) 0,
        var(--yellow-300) 6px,
        transparent 6px,
        transparent 12px
    );
    z-index: 1;
}

@media (max-width: 768px) {
    .process-grid::before { display: none; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1), transparent 50%);
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner p {
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--ink-900);
    color: var(--ink-300);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -200px;
    right: 50%;
    transform: translateX(50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.18), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-socials a:hover {
    background: var(--yellow-500);
    color: var(--ink-900);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--ink-300);
    font-size: 0.92rem;
    transition: all var(--transition);
}

.footer-col a:hover {
    color: var(--yellow-400);
    padding-left: 4px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-list i {
    color: var(--yellow-500);
    margin-top: 4px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.88rem;
    position: relative;
    z-index: 2;
}

.footer-bottom .tagline {
    color: var(--yellow-500);
    font-style: italic;
    font-family: var(--font-display);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 50;
    transition: all var(--transition);
    animation: bounce-soft 2.5s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--ink-900);
    color: var(--yellow-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 49;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--yellow-500);
    color: var(--ink-900);
}

/* ============================================
   PAGE BANNER (sub-pages)
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--yellow-500) 0%, var(--yellow-600) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(255,255,255,0.2), transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(255,255,255,0.12), transparent 40%);
}

.page-banner .container { position: relative; z-index: 2; }

.page-banner h1 {
    color: var(--white);
    margin-bottom: 14px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.85;
}

.breadcrumb a:hover { opacity: 1; color: var(--white); }

.breadcrumb i { font-size: 0.7rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section .about-content > p { font-size: 1.05rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 166, 35, 0.15);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow-400);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--yellow-100), var(--yellow-300));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--yellow-700);
}

.value-card h4 { margin-bottom: 12px; }

.value-card p {
    color: var(--ink-500);
    font-size: 0.92rem;
}

/* ============================================
   PRODUCTS PAGE — DETAILED
   ============================================ */
.product-section-block {
    padding: 70px 0;
    border-bottom: 1px solid var(--cream-200);
}

.product-section-block:nth-child(even) {
    background: var(--cream-100);
}

.product-block-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.product-block-block-reverse .product-block-grid {
    direction: rtl;
}
.product-block-block-reverse .product-block-grid > * {
    direction: ltr;
}

.product-visual {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--yellow-300), var(--yellow-500));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.product-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
}

.product-visual span {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.product-content h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
    color: var(--ink-900);
}

.product-content > p {
    color: var(--ink-700);
    line-height: 1.75;
    margin-bottom: 24px;
}

.varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.variety-chip {
    background: var(--white);
    border: 1px solid var(--yellow-200);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-700);
    text-align: center;
    transition: all var(--transition);
}

.variety-chip:hover {
    background: var(--yellow-500);
    color: var(--white);
    border-color: var(--yellow-500);
    transform: translateY(-2px);
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-200);
}

.spec-item .label {
    font-size: 0.78rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.spec-item .value {
    font-weight: 600;
    color: var(--ink-900);
    font-size: 0.95rem;
    margin-top: 2px;
}

/* ============================================
   QUALITY PAGE
   ============================================ */
.cert-strip {
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-top: 50px;
}

.cert-strip h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--ink-900);
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.cert-badge {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--yellow-50), var(--yellow-100));
    border: 2px solid var(--yellow-300);
    border-radius: 14px;
    font-weight: 700;
    color: var(--yellow-800);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

.cert-badge:hover {
    background: var(--yellow-500);
    color: var(--white);
    border-color: var(--yellow-600);
    transform: translateY(-3px);
}

/* ============================================
   EXPORT PAGE
   ============================================ */
.export-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: collapse;
    margin-top: 30px;
}

.export-table thead {
    background: var(--ink-900);
    color: var(--white);
}

.export-table th, .export-table td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--cream-200);
}

.export-table th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
}

.export-table tbody tr {
    transition: background var(--transition);
}

.export-table tbody tr:hover {
    background: var(--cream-100);
}

.export-table td:first-child {
    font-weight: 600;
    color: var(--ink-900);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: var(--ink-900);
    color: var(--cream-100);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.2), transparent 70%);
    border-radius: 50%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.contact-info-card > p {
    margin-bottom: 36px;
    color: var(--ink-300);
    position: relative;
    z-index: 2;
}

.contact-list-large {
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.contact-list-large li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-list-large .icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-list-large .label {
    display: block;
    font-size: 0.78rem;
    color: var(--ink-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.contact-list-large .value {
    color: var(--white);
    font-weight: 500;
}

.contact-list-large .value a { color: var(--white); }
.contact-list-large .value a:hover { color: var(--yellow-400); }

.contact-form-wrapper {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-200);
}

.contact-form-wrapper h3 {
    margin-bottom: 6px;
}

.contact-form-wrapper > p {
    color: var(--ink-500);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-800);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink-900);
    background: var(--cream-50);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-message {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.92rem;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}

.map-section {
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: contrast(1.05) saturate(0.95);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid,
    .about-teaser-grid,
    .global-grid,
    .product-block-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-block-block-reverse .product-block-grid {
        direction: ltr;
    }

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

    .feature-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .top-bar { font-size: 0.78rem; padding: 8px 0; }
    .hide-mobile { display: none !important; }

    .header-inner { padding: 12px 18px; gap: 12px; }
    .logo-mark { width: 50px; height: 50px; }
    .brand-name { font-size: 1.15rem; }
    .brand-sub { font-size: 0.7rem; }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        z-index: 200;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right var(--transition);
    }

    .main-nav.open { right: 0; }
    .nav-close { display: block; }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 30px;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--cream-200);
    }

    .main-nav ul a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
    }

    .main-nav .nav-cta { width: 100%; justify-content: center; }

    .hero { padding: 50px 0 70px; }
    .hero-stats { grid-template-columns: 1fr; gap: 14px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .floating-badge { padding: 10px 14px; font-size: 0.8rem; }
    .floating-badge i { font-size: 1.2rem; }

    .feature-strip-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .country-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-card,
    .contact-form-wrapper {
        padding: 36px 24px;
    }

    .float-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
    }

    body.menu-open { overflow: hidden; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .hero-eyebrow { font-size: 0.72rem; }
    .product-card { padding: 28px 22px; }
    .container { padding: 0 18px; }
}

/* ============================================
   ANIMATION ON SCROLL
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}
