/* ==========================================
   DESIGN SYSTEM & CUSTOM STYLING (NUTRICHEMICALS)
   ========================================== */

/* Design Tokens */
:root {
    --primary-blue: #2763ab;
    --primary-blue-dark: #174885;
    --primary-blue-light: #2763ab1a;

    --bg-light: #ffffff;
    --bg-secondary: #f5f5f5;

    --text-dark: #181818;
    --text-muted: #181818cc;
    --text-light: #ffffff;
    --text-light-muted: #ffffffcc;

    --border-subtle: rgba(24, 24, 24, 0.08);
    --border-light: rgba(255, 255, 255, 0.08);

    --accent-red: #ff2244;
    --accent-red-light: #ff224426;

    --font-heading: 'Instrument Sans', sans-serif;
    --font-body: 'Instrument Sans', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Resets & Globals */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: auto !important;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

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

/* Logo Text Branding */
.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: inherit;
    text-transform: lowercase;
}

/* Layout Containers */
.max-width-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;

}

/* Button Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.cta-primary:hover,
.mobile-btn:hover {
    background-color: var(--primary-blue-dark);
}

/* ==========================================
   4.5 ANIMATIONS
   ========================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger delays for children */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 99, 171, 0.2);
}

.btn-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-light:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   1. HEADER / NAVIGATION
   ========================================== */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
    color: var(--text-light);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.nav-container.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-dark);
    height: 70px;
}

.nav-container.mobile-active {
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 30px;
}

.logo-img {
    height: 100%;
    width: auto;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Logo color changes naturally with text color */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 400;
    color: inherit;
    opacity: 0.85;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.nav-container.scrolled .nav-link {
    color: var(--text-muted);
}

.nav-container.scrolled .nav-link:hover {
    color: var(--primary-blue);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger toggle styling */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    z-index: 1001;
    color: inherit;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu.active .top-bar {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active .bottom-bar {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay Menu - Hidden by default on desktop */
.mobile-drawer {
    display: none;
}

/* ==========================================
   2. HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(1, 11, 23, 0.4) 0%, rgba(1, 11, 23, 0.75) 100%);
    z-index: 2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-text-block {
    max-width: 680px;
}

.hero-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light-muted);
    margin-bottom: 32px;
}

.hero-btn {
    padding: 16px 36px;
    font-size: 16px;
}

/* ==========================================
   3. MARQUEE SECTION
   ========================================== */
.marquee-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-subtle);
    background-color: var(--bg-light);
}

.marquee-title-wrapper {
    margin-bottom: 48px;
    text-align: center;
}

.marquee-title {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.marquee-track-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
}

/* Gradient fades on left and right edges */
.marquee-track-wrapper::before,
.marquee-track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.marquee-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 48px;
    width: auto;
    opacity: 0.55;
    transition: var(--transition-smooth);
}

.marquee-item img:hover {
    opacity: 0.95;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   4. WHO WE SERVE SECTION (ABOUT)
   ========================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-text-col .section-title {
    margin-bottom: 24px;
}

.about-text-col .section-desc {
    margin-bottom: 40px;
}

.industry-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    background-color: var(--bg-secondary);
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.pill:hover {
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.about-image-col {
    display: flex;
    justify-content: center;
}

.about-img-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-subtle);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.03);
}

/* ==========================================
   5. PRODUCTS SECTION
   ========================================== */
.products-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-center .section-desc {
    margin-top: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(24, 24, 24, 0.06);
    border-color: rgba(39, 99, 171, 0.25);
}

.product-img-wrapper {
    aspect-ratio: 1/1;
    overflow: hidden;
    width: 100%;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-name {
    font-size: 22px;
    font-weight: 500;
}

.product-tag {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================
   6. WHY CHOOSE US (BENEFITS)
   ========================================== */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.benefits-gridd {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    padding: 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(24, 24, 24, 0.04);
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background-color: var(--primary-blue);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    filter: brightness(0) invert(1);
    /* Forces icon SVG white on hover */
}

.benefit-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.benefit-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   7. SCALE PRODUCTION SECTION
   ========================================== */
.scale-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.scale-banner {
    position: relative;
    background-color: var(--text-dark);
    border-radius: 28px;
    overflow: hidden;
    padding: 80px 48px;
    text-align: center;
    color: var(--text-light);
}

.scale-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.12;
}

.scale-bg-grid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scale-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scale-logo-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.scale-badge-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.scale-title {
    font-size: 38px;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.scale-subtitle {
    font-size: 16px;
    color: var(--text-light-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

.scale-btn {
    padding: 16px 36px;
    font-size: 16px;
    border: none;
}

/* ==========================================
   8. RESEARCH & INNOVATION SECTION
   ========================================== */
.research-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.research-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.research-text-col .section-title {
    margin-bottom: 24px;
}

.research-text-col .section-desc {
    margin-bottom: 32px;
}

.research-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.research-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    color: var(--text-muted);
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.research-image-col {
    display: flex;
    justify-content: center;
}

.research-img-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 1px solid var(--border-subtle);
}

.research-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.research-img-wrapper:hover .research-img {
    transform: scale(1.03);
}

/* ==========================================
   9. FAQS SECTION
   ========================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
}

.faq-accordion-col {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid var(--border-subtle);
}

.accordion-item:first-child {
    border-top: 1px solid var(--border-subtle);
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 8px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.accordion-question {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.accordion-trigger:hover .accordion-question {
    color: var(--primary-blue);
}

.accordion-icon-toggle {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.accordion-icon-toggle::before,
.accordion-icon-toggle::after {
    content: "";
    position: absolute;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Plus line horizontal */
.accordion-icon-toggle::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

/* Plus line vertical */
.accordion-icon-toggle::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

.accordion-item.active .accordion-icon-toggle {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-icon-toggle::before,
.accordion-item.active .accordion-icon-toggle::after {
    background-color: var(--primary-blue);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-answer {
    padding: 0 8px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================
   10. CTA SECTION & LIGHT FOOTER
   ========================================== */
.cta-section {
    padding: 120px 0 60px;
    background-color: var(--bg-light);
}

.cta-card {
    position: relative;
    background-color: var(--primary-blue);
    border-radius: 28px;
    padding: 80px 60px;
    color: var(--text-light);
    overflow: visible;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    border-radius: 28px;
    overflow: hidden;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.cta-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.cta-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 400;
    color: var(--text-light);
    max-width: 520px;
    letter-spacing: -0.02em;
    margin: 0;
}

.cta-btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    border: none;
}

.cta-btn:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-blue-dark);
}

.cta-image-side {
    position: relative;
    width: 100%;
    height: 260px;
}

.cta-img-top-wrapper {
    position: absolute;
    top: -110px;
    right: 0;
    width: 240px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.cta-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-img-bottom-wrapper {
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 220px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.cta-img-bottom {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Light Footer Container */
.footer-container {
    background-color: #f9f9f9;
    color: var(--text-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-link .logo-text {
    font-size: 28px;
    color: var(--text-dark);
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 340px;
    margin-bottom: 16px;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.cert-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--border-subtle);
    color: var(--text-muted);
    border: 1px solid rgba(24, 24, 24, 0.05);
}

.footer-partner-logos {
    margin-top: 32px;
}

.footer-partner-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

.footer-partner-img {
    height: 24px;
    width: auto;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.footer-partner-img:hover {
    opacity: 0.8;
}

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

.footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info-heading {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-info-link {
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    width: fit-content;
}

.footer-info-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.footer-info-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-socials .social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    border: none;
    background: none;
    width: 20px;
    height: 20px;
}

.footer-socials .social-icon-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-socials .social-icon,
.footer-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: inherit;
    transition: var(--transition-smooth);
}

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

.footer-nav-link {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-nav-link:hover {
    color: var(--primary-blue);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin-bottom: 32px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.copy-template-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.copy-template-link:hover {
    color: var(--primary-blue);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* Framer Badge styling */
.framer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(24, 24, 24, 0.08);
    font-size: 12px;
    font-weight: 500;
    color: #181818;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.framer-badge:hover {
    box-shadow: 0 4px 12px rgba(24, 24, 24, 0.08);
    transform: translateY(-1px);
}

.framer-badge-icon {
    width: 12px;
    height: 12px;
    color: #000000;
}

/* ==========================================
   11. CONTACT FORM MODAL OVERLAY
   ========================================== */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(1, 11, 23, 0.33);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 16px;
}

.contact-modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    padding: 48px;
    position: relative;
    box-shadow: 0 24px 64px rgba(1, 11, 23, 0.15);
    border: 1px solid var(--border-subtle);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-overlay.visible .contact-modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background-color: var(--accent-red-light);
    border-color: var(--accent-red);
}

.close-bar {
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 1px;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover .close-bar {
    background-color: var(--accent-red);
}

.close-bar-1 {
    transform: rotate(45deg);
}

.close-bar-2 {
    transform: rotate(-45deg);
}

.modal-title {
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

.file-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .file-upload-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .file-upload-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 14.5px;
    color: #1e293b;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.form-input:focus {
    border-color: var(--primary-blue);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(39, 99, 171, 0.1);
}

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

.modal-submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    font-size: 16px;
}

/* ==========================================
   12. ABOUT US PAGE STYLES
   ========================================== */
.page-hero-section {
    min-height: 100vh;
    height: 100vh;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-lucide {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-lucide {
    color: var(--text-light);
}

.value-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.value-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}

.value-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-image-card:hover .value-card-img {
    transform: scale(1.08);
    border-radius: 20px;
}

.value-card-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: var(--transition-smooth);
}

.value-card-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Make it take no space when not hovered so title is centered vertically near bottom */
    max-height: 0;
    overflow: hidden;
}

.value-image-card:hover .value-card-title {
    transform: translateY(0);
}

.value-image-card:hover .value-card-text {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    margin-top: 8px;

}

.social-lucide {
    width: 20px;
    height: 20px;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ==========================================
   13. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================== */

/* Tablet Layout (under 1200px) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 34px;
    }

    .about-grid,
    .research-grid {
        gap: 40px;
    }

    .products-grid {
        gap: 20px;
    }

    .benefits-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefits-gridd {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .footer-content {
        gap: 40px;
    }
}

/* Mobile Layout (under 810px) */
@media (max-width: 810px) {
    body {
        font-size: 15px;
    }

    .max-width-container {
        padding: 0 24px;
    }

    .hero-section {
        height: auto;
        padding: 140px 0 100px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-grid,
    .research-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-col,
    .research-image-col {
        order: -1;
        /* Puts image above text on mobile */
    }

    .about-img-wrapper,
    .research-img-wrapper {
        aspect-ratio: 16/10;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefits-grid,
    .benefits-gridd,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Keep value cards fully visible on mobile (simulate hover state) */
    .value-card-text {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
        margin-top: 8px;
    }

    .value-card-title {
        transform: translateY(0);
    }

    .value-card-img {
        transform: scale(1.04);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-card {
        padding: 60px 32px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .cta-text-side {
        align-items: center;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-image-side {
        height: 240px;
        max-width: 320px;
        margin: 0 auto;
    }

    .cta-img-top-wrapper {
        width: 180px;
        height: 130px;
        top: -20px;
    }

    .cta-img-bottom-wrapper {
        width: 160px;
        height: 150px;
        bottom: -20px;
        left: 0;
    }

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

    .footer-right {
        align-items: flex-start;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .footer-bottom-bar {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 16px;
    }

    .contact-modal-card {
        padding: 32px 24px;
    }
}

/* Mobile Navbar Breakpoint (under 768px) */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .nav-menu {
        display: none;
        /* Hides desktop links */
    }

    .nav-btn {
        display: none;
        /* Hides desktop header button */
    }

    .hamburger-menu {
        display: flex;
        /* Shows hamburger */
    }

    .mobile-drawer {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background-color: var(--bg-light);
        z-index: 999;
        flex-direction: column;
        padding: 92px 24px 32px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
        pointer-events: none;
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .mobile-drawer.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-drawer-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        width: 100%;
        margin: 0 auto;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .mobile-nav-link {
        font-size: 18px;
        font-family: var(--font-heading);
        font-weight: 500;
        color: var(--text-dark);
        opacity: 0.9;
        padding: 4px 0;
        display: block;
        width: 100%;
        transition: var(--transition-smooth);
    }

    .mobile-nav-link:hover {
        opacity: 1;
        color: var(--primary-blue);
    }

    .mobile-cta-group {
        width: 100%;
    }

    .mobile-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        font-weight: 500;
        background-color: var(--primary-blue);
        color: var(--text-light);
        border-radius: 100px;
        text-align: center;
        display: block;
        transition: var(--transition-smooth);
    }

    .mobile-btn:hover {
        background-color: var(--primary-blue-dark);
    }
}

/* ==========================================================================
   PRODUCTS PAGE SPECIFIC STYLES
   ========================================================================== */

.product-detail-section {
    padding: 100px 0;
    overflow: hidden;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-detail-reversed .product-detail-info {
    order: 2;
}

.product-detail-reversed .product-detail-media {
    order: 1;
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-green {
    background-color: rgba(39, 171, 99, 0.1);
    color: #27ab63;
}

.badge-blue {
    background-color: rgba(66, 133, 244, 0.1);
    color: #4285f4;
}

.product-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin: 40px 0 52px;
    color: var(--text-dark);
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
}

.feature-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-blue-light);
    flex-shrink: 0;
}

.badge-check-icon {
    width: 14px;
    height: 14px;
    color: var(--primary-blue);
    /* Lucide icons use currentColor */
}

.pill-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pill-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.pill-tag:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: var(--primary-blue-light);
}

.product-featured-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.specs-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.specs-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.specs-grid {
    display: flex;
    flex-direction: column;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    color: var(--text-muted);
    font-size: 15px;
}

.spec-value {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
    text-align: right;
}

/* Products Responsive */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-detail-reversed .product-detail-info,
    .product-detail-reversed .product-detail-media {
        order: unset;
    }

    .product-detail-section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   Certifications Page Styles
   ========================================================================== */

/* Quality Commitment */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.quality-item .check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}



/* Responsible Sourcing List */
.sourcing-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sourcing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .sourcing-list {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Marquee Animation */
.marquee-section {
    overflow: hidden;
    padding: 60px 0;
    width: 100%;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 16px;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    gap: 16px;
    animation: scroll-left 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 16px));
    }
}

/* ==========================================
   14. CAREERS PAGE STYLES
   ========================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.process-step {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.process-step:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(24, 24, 24, 0.04);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.process-step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Connect lines between steps (Desktop) */
@media (min-width: 1025px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 52px;
        right: -32px;
        width: 40px;
        height: 2px;
        background-color: var(--border-subtle);
        z-index: -1;
    }
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* File Upload Dropzone */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-input-hidden {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    border: 2px dashed var(--border-subtle);
    border-radius: 12px;
    background-color: var(--bg-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.file-dropzone:hover,
.file-input-hidden:focus+.file-dropzone {
    border-color: var(--primary-blue);
    background-color: var(--primary-blue-light);
}

.file-dropzone-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.file-dropzone-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.file-dropzone-subtext {
    font-size: 13px;
    color: var(--text-muted);
}

/* Application Form Container */
.application-form-container {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .application-form-container {
        padding: 32px 24px;
    }
}

/* Reference Callout */
.reference-callout {
    background: var(--primary-blue-light);
    border: 1px solid rgba(0, 82, 204, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.ref-number {
    font-family: monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin: 16px 0;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Spinner Animation & Loader Styles */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner-loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(39, 99, 171, 0.15);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}