:root {
    --bg-color: #0c1a14;
    --bg-darker: #08120e;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --accent-color: #a4d65e;
    --accent-hover: #8fc24a;
    --card-bg: rgba(255, 255, 255, 0.05);
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition-fast: 0.3s ease;
    --glow-color: rgba(164, 214, 94, 0.4);
    --glow-strong: rgba(164, 214, 94, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-align: center;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Navigation */
header {
    background-color: rgba(12, 26, 20, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 0;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.bg-circle {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(164, 214, 94, 0.15) 0%, rgba(12, 26, 20, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

/* Grids & Cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-badge {
    border: 1px solid rgba(164, 214, 94, 0.3);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-badge:hover {
    background-color: rgba(164, 214, 94, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.product-badge h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.product-badge p {
    font-size: 0.9rem;
    margin: 0;
}

.contact-link {
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact-link:hover {
    border-color: var(--accent-color);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-darker);
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-darker);
        padding: 20px;
        text-align: center;
    }
    
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero-buttons { flex-direction: column; }
}
/* Page Hero Sections */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 20px 60px; /* Increased top padding from 120px to 180px */
    text-align: center;
    box-sizing: border-box;
    background: radial-gradient(circle at bottom, rgba(164, 214, 94, 0.1) 0%, var(--bg-color) 60%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.page-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* Detailed Footer */
.site-footer {
    background-color: var(--bg-darker);
    padding: 80px 20px 20px;
    border-top: 2px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    max-width: 400px;
}

.footer-col h4 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Product Card Images */
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 2.5rem;
    }
}
/* Fade-on-Scroll Hero Image Effect */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace this URL with your actual high-res photo later */
    background-image: url('images/hero.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0; /* Hidden initially */
    transition: opacity 0.8s ease-in-out;
    z-index: 2; /* Sits above the gradient, below the text */
}

/* Dark overlay so the text stays readable when the image appears */
.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(12, 26, 20, 0.75); /* Matches your dark green theme */
}

/* These classes are added by JavaScript on scroll */
.hero-bg-image.visible {
    opacity: 1;
}

.bg-circle {
    transition: opacity 0.8s ease-in-out;
}

.bg-circle.fade-out {
    opacity: 0.1; /* Dims the glowing circle slightly */
}

/* Update hero content z-index so it stays above the new image */
.hero-content {
    position: relative;
    z-index: 10;
}

/* ========================================
   SCROLL-REVEAL ANIMATION SYSTEM
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal.reveal-left {
    transform: translateX(-40px);
}
.reveal.reveal-left.revealed {
    transform: translateX(0);
}
.reveal.reveal-right {
    transform: translateX(40px);
}
.reveal.reveal-right.revealed {
    transform: translateX(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ========================================
   IMAGE HOVER ZOOM + LABEL OVERLAY
   ======================================== */
.img-hover-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}
.img-hover-wrap img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.img-hover-wrap:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}
.img-hover-wrap::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(transparent, rgba(12, 26, 20, 0.9));
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}
.img-hover-wrap:hover::after {
    transform: translateY(0);
}
.img-hover-wrap--sm img {
    height: 150px;
}
.clickable {
    cursor: zoom-in;
}

/* ========================================
   TEAM PHOTO GLOW EFFECT
   ======================================== */
.team-photo-wrap {
    display: inline-block;
    border-radius: 50%;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.team-photo-wrap img {
    display: block;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.team-photo-wrap:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 25px var(--glow-color), 0 0 60px rgba(164, 214, 94, 0.15);
    border-color: var(--accent-color);
}

/* ========================================
   KEN BURNS EFFECT (FULL-WIDTH IMAGES)
   ======================================== */
.img-cinematic {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.img-cinematic img {
    display: block;
    width: 100%;
    animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-1%, -1%); }
}

/* ========================================
   FLOATING GRADIENT CIRCLE
   ======================================== */
@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -48%) scale(1.03); }
}
.bg-circle {
    animation: float 6s ease-in-out infinite;
}
.bg-circle.fade-out {
    animation: float 6s ease-in-out infinite;
}

/* ========================================
   ACCENT GLOW ON HOVER (UTILITY)
   ======================================== */
.glow-hover {
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.glow-hover:hover {
    box-shadow: 0 0 15px var(--glow-color);
    border-color: var(--accent-color);
}

/* ========================================
   LIGHTBOX OVERLAY
   ======================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(8, 18, 14, 0.92);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 40px var(--glow-color), 0 0 80px rgba(164, 214, 94, 0.1);
    transform: scale(0.85);
    transition: transform 0.3s ease;
    object-fit: contain;
}
.lightbox-overlay.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-color);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
    line-height: 1;
    z-index: 2001;
}
.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
    z-index: 2001;
}
.lightbox-nav:hover {
    background: rgba(164, 214, 94, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
}
.lightbox-nav--prev { left: 20px; }
.lightbox-nav--next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ========================================
   CARD TILT (3D PERSPECTIVE)
   ======================================== */
.card-tilt {
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* ========================================
   HERO BADGE / TAGLINE
   ======================================== */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(164, 214, 94, 0.08);
}

/* ========================================
   SCROLL-DOWN INDICATOR
   ======================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-indicator span {
    display: block;
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 3px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50%      { top: 16px; opacity: 0.3; }
}

/* ========================================
   PROCESS STEPS (HOW IT WORKS)
   ======================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    z-index: 0;
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.step:hover .step-number {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 25px var(--glow-color);
}
.step h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.step p {
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ========================================
   STATS STRIP
   ======================================== */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}
.stat-item:last-child {
    border-right: none;
}
.stat-item:hover {
    background: rgba(164, 214, 94, 0.03);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.1) 0%, rgba(12, 26, 20, 0.95) 60%);
    border-top: 1px solid rgba(164, 214, 94, 0.2);
    border-bottom: 1px solid rgba(164, 214, 94, 0.2);
    padding: 80px 20px;
    text-align: center;
}
.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.cta-banner p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PARTNER CARDS
   ======================================== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.partner-card {
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: var(--card-bg);
    transition: all 0.3s ease;
}
.partner-card:hover {
    border-color: var(--accent-color);
    background: rgba(164, 214, 94, 0.05);
    transform: translateY(-3px);
}
.partner-card h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.partner-card p {
    font-size: 0.85rem;
    margin: 0;
}

/* ========================================
   SECTION DIVIDER
   ======================================== */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 2rem;
    border-radius: 3px;
}

/* ========================================
   SECTION SUBTITLE
   ======================================== */
.section-subtitle {
    max-width: 700px;
    margin: -1.5rem auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ========================================
   ICON CARD (for about page features)
   ======================================== */
.icon-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--card-bg);
    transition: all 0.3s ease;
}
.icon-card:hover {
    border-color: rgba(164, 214, 94, 0.3);
    transform: translateY(-4px);
}
.icon-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}
.icon-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.icon-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   TIMELINE (about page milestones)
   ======================================== */
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(164, 214, 94, 0.3);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
    text-align: right;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
    text-align: left;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid var(--bg-color);
    z-index: 1;
    box-shadow: 0 0 10px var(--glow-color);
}
.timeline-content h4 {
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}
.timeline-content p {
    font-size: 0.95rem;
    margin: 0;
}
.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    display: block;
}

/* ========================================
   FORM STYLES (moved from inline)
   ======================================== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(164, 214, 94, 0.1);
}
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
textarea.form-input {
    resize: vertical;
    min-height: 120px;
}
select.form-input option {
    color: #000;
    background: #fff;
}

/* ========================================
   CATEGORY HEADING (products page)
   ======================================== */
.category-heading {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}
.category-heading + .grid-2 {
    margin-top: 0;
}

/* ========================================
   CONTACT INFO CARD
   ======================================== */
.contact-info-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}
.contact-info-card p {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0;
}
.contact-info-card p + p {
    margin-top: 20px;
}

/* ========================================
   RESPONSIVE FOR NEW LAYOUT COMPONENTS
   ======================================== */
@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-steps::before {
        display: none;
    }
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .partner-grid {
        grid-template-columns: 1fr;
    }
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }
    .timeline-dot {
        left: 20px;
    }
}
@media (max-width: 500px) {
    .stats-strip {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ========================================
   RESPONSIVE OVERRIDES FOR ENHANCEMENTS
   ======================================== */
@media (max-width: 900px) {
    .img-cinematic img {
        animation-name: kenburns-mobile;
    }
    @keyframes kenburns-mobile {
        0%   { transform: scale(1); }
        100% { transform: scale(1.02); }
    }
    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }
    .lightbox-nav--prev { left: 10px; }
    .lightbox-nav--next { right: 10px; }
    .team-photo-wrap img {
        height: 150px;
        width: 150px;
    }
}