/* =============================================
   SALAAM AGRICULTURAL PRODUCE & OIL COMPANY
   Premium Corporate Stylesheet – 2026
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors */
    --green-900: #0d2e15;
    --green-800: #1a5c2a;
    --green-700: #22742f;
    --green-600: #2d9142;
    --green-500: #38b356;
    --green-400: #5dca7a;
    --green-100: #eaf7ee;
    --green-50: #f3fbf5;

    --blue-900: #0a1929;
    --blue-800: #0d2744;
    --blue-600: #1565c0;
    --blue-400: #42a5f5;
    --blue-100: #e3f2fd;

    --gold: #e8a820;
    --gold-light: #f5c842;

    --white: #ffffff;
    --gray-50: #f8faf7;
    --gray-100: #f1f4f0;
    --gray-200: #e2e8df;
    --gray-400: #9aab95;
    --gray-600: #5a6b55;
    --gray-800: #2c3a28;
    --dark: #111a0e;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-sm: 0 2px 8px rgba(26, 92, 42, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 92, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 92, 42, 0.18);
    --shadow-xl: 0 30px 80px rgba(26, 92, 42, 0.25);

    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: blur(16px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header height */
    --header-h: 80px;
}

/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

input,
textarea,
select {
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.4s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45, 145, 66, 0.40);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 145, 66, 0.55);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.65);
    color: var(--white);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.07);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-600);
    background: var(--green-100);
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-xl);
    margin-bottom: 0.9rem;
}

.section-tag.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--green-900);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-title.light {
    color: var(--white);
}

.section-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--green-400));
    border-radius: 2px;
    margin: 0.75rem auto;
}

.section-divider.light {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.section-desc {
    max-width: 580px;
    margin: 1rem auto 0;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.78);
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(13, 46, 21, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
    height: 68px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--green-600);
    background: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.04em;
}

.logo-sub {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* Nav */
.nav-list {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--header-h) + 2rem) 1.5rem 8rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-farmland.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 12s ease;
    will-change: transform;
}

.hero-bg.zoomed {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(9, 30, 14, 0.88) 0%,
            rgba(13, 46, 21, 0.75) 40%,
            rgba(20, 80, 40, 0.60) 70%,
            rgba(21, 101, 192, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1.4rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 2.5rem;
}

.founder-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 8px;
    background: var(--white);
    border-radius: 3px;
    animation: scrollDot 2s ease infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    display: block;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
    background: var(--white);
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition-base);
}

.stat-item:hover {
    background: var(--green-100);
    border-color: var(--green-400);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-item:hover .stat-number {
    color: var(--green-700);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--green-800);
    line-height: 1;
    display: inline-block;
    transition: color var(--transition-fast);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    vertical-align: top;
    margin-top: 0.3rem;
    display: inline-block;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    padding: var(--space-2xl) 0;
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 5rem;
    align-items: start;
}

.about-img-wrapper {
    position: relative;
    padding-bottom: 2rem;
}

.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding-bottom: 115%;
    box-shadow: var(--shadow-xl);
}

.about-img-inner {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.about-img-frame:hover .about-img-inner {
    transform: scale(1.04);
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 46, 21, 0.55) 100%);
    z-index: 1;
    border-radius: var(--radius-lg);
}

/* Decorative border accent */
.about-img-frame::after {
    content: '';
    position: absolute;
    top: 16px;
    right: -16px;
    bottom: -16px;
    left: 16px;
    border: 3px solid var(--green-400);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition-base);
}

.about-img-wrapper:hover .about-img-frame::after {
    top: 12px;
    right: -12px;
    bottom: -12px;
    left: 12px;
}

.about-badge-card {
    position: absolute;
    bottom: 0;
    right: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 1px solid var(--gray-200);
}

.about-badge-card svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.about-badge-card div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.about-badge-card strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--green-800);
}

.about-badge-card span {
    font-size: 0.78rem;
    color: var(--gray-600);
}

.about-intro {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--green-800);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-style: italic;
    border-left: 3px solid var(--green-500);
    padding-left: 1.2rem;
}

.about-body {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-ceo-signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1.5px solid var(--gray-200);
}

.ceo-sig-line {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--green-700);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    font-style: italic;
    padding-left: 4px;
}

.ceo-sig-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ceo-sig-info strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-900);
}

.ceo-sig-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ===========================
   CEO MESSAGE SECTION
   =========================== */
.ceo-message {
    padding: var(--space-xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.ceo-message-card {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--blue-900) 100%);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 8vw, 5rem);
    position: relative;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(13, 46, 21, 0.25);
    overflow: hidden;
}

.quote-icon-wrap {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    color: var(--gold);
    opacity: 0.15;
}

.ceo-message-content {
    position: relative;
    z-index: 2;
    margin-bottom: 3.5rem;
}

.ceo-message-content p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.ceo-message-content p:last-child {
    margin-bottom: 0;
}

.ceo-signature-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.ceo-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.ceo-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('assets/images/logo.png');
    background-size: cover;
    background-position: center;
    background-color: var(--white);
}

.ceo-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ceo-name-v2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
}

.ceo-role-v2 {
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===========================
   CORE VALUES SECTION
   =========================== */
.values {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--blue-800) 60%, var(--green-800) 100%);
    position: relative;
    overflow: hidden;
}

.values-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(56, 179, 86, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(21, 101, 192, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    position: relative;
    transition: var(--transition-base);
    cursor: default;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-500), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.value-card:hover,
.value-card:focus {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    outline: none;
}

.value-card:hover::before,
.value-card:focus::before {
    transform: scaleX(1);
}

.value-icon-wrap {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.value-card:hover .value-icon-wrap {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: scale(1.1) rotate(-5deg);
}

.value-icon-wrap svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.5rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.9rem;
    line-height: 1.3;
}

.value-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 1.5rem;
}

.value-line {
    width: 32px;
    height: 2px;
    background: var(--green-500);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.value-card:hover .value-line {
    width: 60px;
    background: var(--gold);
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products {
    padding: var(--space-2xl) 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.products-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-image: url('assets/images/hero-farmland.png');
    background-size: cover;
    background-position: center 60%;
    z-index: 0;
    border-radius: 0;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 46, 21, 0.85) 0%,
            rgba(248, 250, 247, 0.98) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-400);
}

.product-card.featured {
    border: 2px solid var(--green-500);
    background: linear-gradient(160deg, rgba(234, 247, 238, 0.6) 0%, var(--white) 100%);
}

.product-badge-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-xl);
}

.product-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.product-icon-wrap.produce {
    background: linear-gradient(135deg, #d4edda, #a8d5b5);
}

.product-icon-wrap.oils {
    background: linear-gradient(135deg, #fff3cd, #f5c842);
}

.product-icon-wrap.storage {
    background: linear-gradient(135deg, #cce5ff, #90caf9);
}

.product-card:hover .product-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}

.product-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: var(--green-800);
}

.product-icon-wrap.oils svg {
    color: var(--blue-800);
}

.product-icon-wrap.storage svg {
    color: var(--blue-600);
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 1rem;
}

.product-desc {
    color: var(--gray-600);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.75rem;
}

.product-list li {
    font-size: 0.88rem;
    color: var(--gray-800);
    padding: 0.35rem 0;
    border-bottom: 1px dashed var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li::before {
    content: '→';
    color: var(--green-500);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.product-list li:first-child::before {
    content: '';
}

.product-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--green-100);
    color: var(--green-700);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-xl);
}

.product-tag.flagship {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: var(--white);
    box-shadow: 0 3px 12px rgba(45, 145, 66, 0.35);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 46px;
    height: 46px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.contact-item:hover .contact-item-icon {
    background: var(--green-600);
    transform: scale(1.08);
}

.contact-item:hover .contact-item-icon svg {
    color: var(--white);
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--green-700);
    transition: color var(--transition-fast);
}

.contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.3rem;
}

.contact-item-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
}

.contact-item-text span,
.contact-item-text a {
    font-size: 0.97rem;
    color: var(--gray-800);
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.contact-item-text a:hover {
    color: var(--green-700);
}

.contact-social h4 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition-base);
    border: 1.5px solid var(--gray-200);
}

.social-link svg {
    width: 17px;
    height: 17px;
}

.social-link:hover {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(45, 145, 66, 0.35);
}

/* FORM */
.contact-form-wrap {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(45, 145, 66, 0.12);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-group input.success,
.form-group textarea.success {
    border-color: var(--green-500);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #e53935;
    margin-top: 0.3rem;
    min-height: 1.1rem;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: var(--green-100);
    border: 1.5px solid var(--green-400);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: var(--green-800);
    font-weight: 500;
    font-size: 0.92rem;
    margin-top: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--green-600);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(160deg, var(--green-900) 0%, var(--blue-900) 100%);
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: var(--white);
}

.footer-logo strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
    display: block;
}

.footer-logo span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
    max-width: 280px;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-col p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.footer-contact-col a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition-fast);
}

.footer-contact-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link svg {
    width: 15px;
    height: 15px;
}

.footer-social-link:hover {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    transform: translateY(-2px);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(45, 145, 66, 0.45);
    transition: var(--transition-base);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.9);
    z-index: 999;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(45, 145, 66, 0.55);
}

/* ===========================
   PRODUCT PHOTOS GALLERY
   =========================== */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-img-wrap:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 46, 21, 0.78) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-img-wrap:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Placeholder cards for missing images */
.gallery-placeholder {
    background: linear-gradient(135deg, var(--green-100) 0%, var(--gray-100) 100%);
    border: 2px dashed var(--green-300, #7dcf95);
}

.gallery-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
}

.gallery-placeholder-inner svg {
    width: 64px;
    height: 64px;
    opacity: 0.75;
}

.gallery-placeholder-inner p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-700);
    text-align: center;
}

/* ===========================
   RESPONSIVE – TABLET
   =========================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-img-frame::after {
        display: none;
    }

    .about-badge-card {
        right: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ===========================
   RESPONSIVE – MOBILE
   =========================== */
@media (max-width: 768px) {
    :root {
        --header-h: 68px;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(10, 25, 15, 0.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem 2rem;
        transform: translateY(-110%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav.open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
        border-radius: var(--radius-md);
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
        padding-bottom: 7rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 0.875rem 1.75rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 0.75rem;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Section spacing */
    .about,
    .values,
    .products,
    .contact {
        padding: var(--space-xl) 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-badge-card {
        right: 0;
        position: relative;
        margin-top: 1rem;
    }

    .about-img-wrapper {
        padding-bottom: 0;
    }

    .contact-form-wrap {
        padding: 1.75rem 1.25rem;
    }

    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

/* ============================================================
   PREMIUM REDESIGN: VISION, MISSION, PARTNERS, GALLERY
   ============================================================ */

/* --- Vision & Mission V2 --- */
.vision-mission-v2 {
    padding: var(--space-2xl) 0;
    background: #fdfdfd;
}

.vm-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.vm-title-large {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--green-900);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.vm-text-content {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-800);
}

.mission-points-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.mission-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-400);
}

.mission-icon-v2 {
    width: 24px;
    height: 24px;
    color: var(--green-600);
    flex-shrink: 0;
}

.mission-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* --- Partners Section --- */
.partners-logos-v2 {
    padding: 4rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.partners-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.partner-box {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--green-900);
    letter-spacing: 0.1em;
}

.partner-box:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* --- Promo Banner Compact --- */
.promo-banner-v2 {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.promo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.promo-title-v2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
}

/* --- Gallery & Farmers 4+2 Layout --- */
.farmers-gallery-v2 {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.gallery-grid-42 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-card-v2 {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
}

.gallery-card-v2.span-2 {
    grid-column: span 2;
}

.gallery-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card-v2:hover img {
    transform: scale(1.08);
}

.caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card-v2:hover .caption-overlay {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .vm-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid-42 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mission-points-4 {
        grid-template-columns: 1fr;
    }

    .gallery-grid-42 {
        grid-template-columns: 1fr;
    }

    .gallery-card-v2.span-2 {
        grid-column: span 1;
    }

    .promo-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ABOUT US V2 ===== */
.about-v2 {
    position: relative;
    padding: 120px 0;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a2512;
}

.about-v2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.about-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(10, 37, 18, 0.98) 0%,
            rgba(10, 37, 18, 0.95) 30%,
            rgba(10, 37, 18, 0.6) 70%,
            rgba(10, 37, 18, 0.3) 100%);
    z-index: 2;
}

.about-v2 .container {
    position: relative;
    z-index: 3;
}

.about-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-v2-content {
    max-width: 620px;
}

.about-v2-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.about-v2-text strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.about-v2-text.secondary {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    border-left: 3px solid var(--gold-primary);
    padding-left: 1.8rem;
    margin-top: 2.5rem;
    line-height: 1.6;
}

.about-v2-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 3rem 0;
}

.a-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.a-feature-icon {
    font-size: 1.6rem;
    background: rgba(212, 175, 55, 0.12);
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--gold-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.a-feature-text strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.a-feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.about-v2-signature {
    margin-top: 4rem;
    display: inline-block;
}

.sig-highlight-box {
    position: relative;
    padding: 3px;
    /* Border thickness */
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sig-glow-track {
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg,
            transparent 0%,
            transparent 40%,
            var(--gold-primary) 50%,
            transparent 60%,
            transparent 100%);
    animation: rotate-sig-border 3s linear infinite;
    z-index: 1;
}

.sig-content-inner {
    position: relative;
    z-index: 2;
    background: #0a2512;
    /* Matches section BG */
    padding: 1.5rem 3rem;
    border-radius: 13px;
    text-align: center;
}

.sig-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.sig-role {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffeb3b;
    /* Vibrant Yellow (Jaale) */
    font-weight: 700;
}

@keyframes rotate-sig-border {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive About Us V2 */
@media (max-width: 1024px) {
    .about-v2-grid {
        gap: 3rem;
    }

    .about-v2-content {
        max-width: 550px;
    }
}

@media (max-width: 991px) {
    .about-v2 {
        padding: 80px 0;
    }

    .about-v2-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-v2-content {
        margin: 0 auto;
    }

    .about-v2-overlay {
        background: radial-gradient(circle at center, rgba(10, 37, 18, 0.85) 0%, rgba(10, 37, 18, 0.98) 100%);
    }

    .about-v2-text.secondary {
        border-left: none;
        border-top: 2px solid var(--gold-primary);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .a-feature {
        flex-direction: column;
        align-items: center;
    }

    .about-v2-signature {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .about-v2-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-v2 {
        padding: 60px 0;
    }

    .sig-name {
        font-size: 1.4rem;
    }
}