/*
Theme Name: Eco Veritas Theme
Theme URI: https://ecoveritas.com/
Author: Antigravity Team
Author URI: https://deepmind.google/
Description: A premium modern responsive WordPress light theme for Eco Veritas International, featuring clean corporate aesthetics with emerald green, mint, and matte gold accents.
Version: 4.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eco-veritas-theme
*/

/* ==========================================
   DESIGN SYSTEM & COLOR TOKENS (LIGHT THEME)
   ========================================== */
:root {
    /* Primary Emerald Palette */
    --primary-deep: #0d5c3a;       /* Deep Forest Emerald */
    --primary-main: #047857;       /* Rich Corporate Emerald */
    --primary-light: #10b981;      /* Bright Mint Emerald */
    --primary-soft: #ecfdf5;       /* Soft Light Emerald Tint */
    
    /* Secondary & Accent Colors */
    --gold-accent: #d97706;        /* Warm Corporate Gold */
    --gold-light: #fef3c7;         /* Soft Gold Tint */
    --accent-glow: rgba(16, 185, 129, 0.15);
    
    /* Light Theme Backgrounds */
    --bg-page: #f8fafc;            /* Clean Slate White Background */
    --bg-card: #ffffff;            /* Pure Crisp White Card */
    --bg-card-alt: #f1f5f9;        /* Soft Neutral Slate Card */
    --bg-header: rgba(255, 255, 255, 0.95); /* Sticky Glass Header */
    
    /* Text Typography Colors */
    --text-heading: #0f172a;       /* Dark Slate-900 Headings */
    --text-body: #334155;          /* Slate-700 Body Text */
    --text-muted: #64748b;         /* Slate-500 Subtitles & Muted */
    --text-light: #ffffff;         /* White Text on Dark Badges/Buttons */
    
    /* Borders & Outlines */
    --border-subtle: #e2e8f0;      /* Soft Light Border */
    --border-accent: rgba(13, 92, 58, 0.15);
    
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Animation Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Shapes & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 35px -10px rgba(13, 92, 58, 0.12);
    --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    background-color: var(--bg-page);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
}

.site {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-main);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

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

/* Background Canvas (Disabled) */
#global-water-canvas {
    display: none !important;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 5;
}

.section-padding {
    padding: 5.5rem 0;
}

/* Grid Utilities */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-main) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(13, 92, 58, 0.25);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 92, 58, 0.35);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--primary-deep);
    border-color: var(--border-subtle);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background-color: var(--primary-soft);
    border-color: var(--primary-light);
    color: var(--primary-deep);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b45309 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.35);
}

/* ==========================================
   TOP HEADER BAR
   ========================================== */
.top-header-bar {
    background: linear-gradient(90deg, var(--primary-deep) 0%, #064e3b 100%);
    color: var(--text-light);
    padding: 0.55rem 0;
    font-size: 0.88rem;
    position: relative;
    z-index: 100;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-header-left, .top-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-header-bar a {
    color: var(--text-light);
    font-weight: 500;
}
.top-header-bar a:hover {
    color: #a7f3d0;
}

.top-header-socials {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}
.top-header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}
.top-header-socials a:hover {
    background: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-1px);
}

/* ==========================================
   MAIN NAVIGATION HEADER
   ========================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 90;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
    padding: 0.2rem 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.main-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--text-heading);
    position: relative;
    padding: 0.4rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links li.current-menu-item a::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links li.current-menu-item a {
    color: var(--primary-deep);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--text-heading);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.scroll-wave-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-main), var(--primary-light), var(--gold-accent));
    width: 0%;
    transition: width 0.1s linear;
}

/* Section Dots Navigation */
.fixed-dots-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 80;
}
.fixed-dots-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.dot-link {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    transition: var(--transition-fast);
    position: relative;
}
.dot-link.active, .dot-link:hover {
    background-color: var(--primary-light);
    transform: scale(1.3);
}
.dot-tooltip {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-heading);
    color: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}
.dot-link:hover .dot-tooltip {
    opacity: 1;
}

/* ==========================================
   HERO SECTION (LIGHT THEME CORPORATE)
   ========================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #edf7f2 100%);
    overflow: hidden;
    padding: 4rem 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, transform 7s ease-out;
}
.hero-slide.active {
    opacity: 0.16;
    transform: scale(1.08); /* Slow Ken Burns zoom effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 65%),
                linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, rgba(237, 247, 242, 0.85) 100%);
    z-index: 2;
}

/* Hero Slider Controls & Dots */
.hero-slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 15;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.hero-slide-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--border-subtle);
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.hero-slide-btn:hover {
    background-color: var(--primary-main);
    color: #ffffff;
    border-color: var(--primary-main);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-dot-pill {
    width: 28px;
    height: 6px;
    border-radius: var(--radius-pill);
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.hero-dot-pill.active {
    background-color: var(--primary-main);
    width: 44px;
}
.hero-dot-pill.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--gold-accent);
    animation: sliderTimerProgress 6s linear;
}

@keyframes sliderTimerProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background-color: var(--primary-soft);
    color: var(--primary-deep);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.hero-title span {
    color: var(--primary-main);
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats-row {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-deep);
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Right Image Box */
.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
}

.hero-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-badge-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-badge-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}
.hero-badge-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ==========================================
   ABOUT US & APPROACH SECTION
   ========================================== */
.about-section {
    background-color: var(--bg-card);
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.about-grid {
    align-items: center;
    margin-bottom: 4rem;
}

.about-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-img-container img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* 4 Pillar Approach Grid */
.approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

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

.approach-card {
    background-color: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.4rem;
    text-align: center;
    transition: var(--transition-smooth);
}
.approach-card:hover {
    background-color: #ffffff;
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.approach-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-soft) 0%, #d1fae5 100%);
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem auto;
    transition: var(--transition-bounce);
}
.approach-card:hover .approach-icon {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-main) 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.approach-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.approach-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Mission & Vision Cards */
.mv-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.mv-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-soft) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
}

.mv-card h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: var(--primary-deep);
    margin-bottom: 1rem;
}
.mv-card h3 i {
    color: var(--gold-accent);
}

.mv-list {
    list-style: none;
}
.mv-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}
.mv-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-light);
    font-size: 0.85rem;
}

/* ==========================================
   SERVICES SECTION (FILTER TABS & CARDS)
   ========================================== */
.services-section {
    background-color: var(--bg-page);
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Tabs Filter Bar */
.service-tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-tab-btn {
    padding: 0.75rem 1.4rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
}

.service-tab-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-deep);
}

.service-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-main) 100%);
    color: var(--text-light);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(13, 92, 58, 0.2);
}

/* Service Card Item */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card-inner {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card-inner:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-deep), var(--primary-light));
    opacity: 0;
    transition: var(--transition-fast);
}
.service-card-inner:hover::before {
    opacity: 1;
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.service-category-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    background-color: var(--bg-card-alt);
    color: var(--text-muted);
}
.service-category-badge.food-safety {
    background-color: #dcfce7;
    color: #15803d;
}

.service-card-inner h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-heading);
}

.service-card-inner p {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-items-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-subtle);
}
.service-items-list li {
    position: relative;
    padding-left: 1.3rem;
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.service-items-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-size: 0.75rem;
}

.service-card-footer {
    margin-top: auto;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-deep);
}
.service-link:hover {
    color: var(--primary-light);
    gap: 0.75rem;
}

/* Featured Food Safety Highlight Banner */
.food-safety-banner {
    background: linear-gradient(135deg, var(--primary-deep) 0%, #044e36 100%);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.food-safety-banner h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.food-safety-banner p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.food-safety-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.food-safety-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.food-safety-banner-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.food-safety-banner-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* ==========================================
   LEGAL & FINANCIAL SERVICES SECTION
   ========================================== */
.legal-financial-section {
    background-color: var(--bg-card);
    position: relative;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

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

.legal-card {
    background-color: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.legal-card:hover {
    background-color: #ffffff;
    border-color: var(--gold-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.legal-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--gold-light);
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.legal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.legal-list {
    list-style: none;
}
.legal-list li {
    position: relative;
    padding-left: 1.3rem;
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 0.65rem;
}
.legal-list li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-size: 0.7rem;
    top: 3px;
}

/* ==========================================
   INDUSTRIES SERVED SECTION
   ========================================== */
.industries-section {
    background-color: var(--bg-page);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.industry-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition-fast);
}
.industry-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    background-color: var(--primary-soft);
}

.industry-card i {
    font-size: 1.8rem;
    color: var(--primary-deep);
    margin-bottom: 0.8rem;
    display: block;
}

.industry-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
}

/* ==========================================
   WHY CHOOSE US & STATS SECTION
   ========================================== */
.why-choose-section {
    background-color: var(--bg-card);
}

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

.why-feature-list {
    list-style: none;
    margin-top: 1.8rem;
}

.why-feature-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.why-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.why-stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box-card {
    background-color: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-box-card .number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-deep);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-box-card .label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================
   CONTACT SECTION & FORM
   ========================================== */
.contact-section {
    background-color: var(--bg-page);
}

.contact-card-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-info-side {
    background: linear-gradient(135deg, var(--primary-deep) 0%, #064e3b 100%);
    color: var(--text-light);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-side h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.contact-info-side p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.contact-details-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.contact-detail-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.contact-detail-row i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-row h5 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.contact-detail-row p, .contact-detail-row a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
}
.contact-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}
.contact-social-icons a:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.contact-form-side {
    padding: 3.5rem 3rem;
}

.contact-form-side h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.contact-form-side p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-heading);
    background-color: var(--bg-page);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

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

/* ==========================================
   SUSTAINABILITY WIDGET (FLOATING IMPACT)
   ========================================== */
.sustainability-widget {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 95;
}

.widget-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-main) 100%);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    position: relative;
}
.widget-toggle:hover {
    transform: scale(1.1);
}
.widget-toggle .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--gold-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-pill);
}

.widget-dashboard {
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 320px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: none;
    z-index: 100;
}
.sustainability-widget.active .widget-dashboard {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-subtle);
}
.widget-header h4 {
    font-size: 1rem;
    color: var(--primary-deep);
}
.widget-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-muted);
}

.widget-metric {
    margin-bottom: 1rem;
}
.metric-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 0.3rem;
}
.metric-label { font-weight: 500; }
.metric-value { font-weight: 700; color: var(--primary-deep); }

.metric-bar {
    height: 6px;
    background-color: var(--bg-card-alt);
    border-radius: var(--radius-pill);
    overflow: hidden;
}
.metric-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-main), var(--primary-light));
}

/* ==========================================
   CHATTY STYLE WHATSAPP FLOATING WIDGET
   ========================================== */
.chatty-whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.chatty-trigger {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: var(--transition-bounce);
    position: relative;
}

.chatty-trigger:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

.chatty-trigger::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulseRing 2s infinite ease-in-out;
    opacity: 0.75;
}

.chatty-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* Chatty Popup Card */
.chatty-box {
    position: absolute;
    bottom: 78px;
    right: 0;
    width: 350px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(13, 92, 58, 0.12);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 1000;
    transform-origin: bottom right;
}

.chatty-whatsapp-widget.active .chatty-box {
    display: flex;
    animation: chattyPopIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes chattyPopIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chatty-header {
    background: linear-gradient(135deg, #0d5c3a 0%, #064e3b 100%);
    color: #ffffff;
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    position: relative;
}

.chatty-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chatty-avatar img {
    height: 24px;
    width: auto;
}
.chatty-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #10b981;
    border: 2px solid #0d5c3a;
}

.chatty-header-info {
    flex-grow: 1;
}
.chatty-header-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}
.chatty-header-info p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.chatty-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}
.chatty-close-btn:hover {
    color: #ffffff;
}

.chatty-body {
    background-color: #f8fafc;
    padding: 1.2rem;
    background-image: radial-gradient(#cbd5e1 0.75px, transparent 0.75px);
    background-size: 12px 12px;
}

.chatty-msg-bubble {
    background-color: #ffffff;
    border-radius: 14px 14px 14px 2px;
    padding: 1rem 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}
.chatty-msg-bubble p {
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 0.6rem;
    line-height: 1.45;
}
.chatty-msg-bubble p:last-of-type {
    margin-bottom: 0.3rem;
}
.chatty-time {
    font-size: 0.72rem;
    color: #94a3b8;
    display: block;
    text-align: right;
}

.chatty-footer {
    padding: 1rem 1.2rem;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.chatty-start-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: var(--transition-smooth);
}
.chatty-start-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
    background: linear-gradient(180deg, #093b25 0%, #042416 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 4.5rem 0 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    height: 54px;
    width: auto;
    margin-bottom: 1.2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold-accent);
}

.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: #a7f3d0;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1100px) {
    .grid-4, .approach-grid, .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .about-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    .contact-card-wrapper {
        grid-template-columns: 1fr;
    }
    .food-safety-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .fixed-dots-nav {
        display: none;
    }
    .services-cards-grid, .approach-grid, .legal-grid, .mv-container {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   BACK TO TOP FLOATING BUTTON
   (Perfectly aligned vertically with WhatsApp widget with spacing)
   ========================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 114px; /* 16px gap above WhatsApp widget top ring */
    right: calc(2rem + 6px); /* Perfectly aligns center with 62px WhatsApp widget at right: 2rem */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d5c3a 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(13, 92, 58, 0.35);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.55);
    color: #ffffff;
}

.back-to-top-btn:active {
    transform: translateY(0) scale(0.96);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 98px;
        right: calc(1.25rem + 9px);
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ==========================================
   FULL-WIDTH FIXED PARALLAX SECTIONS
   ========================================== */
/* ==========================================
   FULL-WIDTH FIXED PARALLAX SECTIONS
   ========================================== */
.parallax-section {
    position: relative;
    width: 100%;
    padding: 7.5rem 0;
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
    color: #ffffff !important;
}

@media (max-width: 1024px) {
    .parallax-section {
        background-attachment: scroll !important;
    }
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 28, 20, 0.86) 0%, rgba(15, 23, 42, 0.92) 100%) !important;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.parallax-section,
.parallax-section h1,
.parallax-section h2,
.parallax-section h3,
.parallax-section h4,
.parallax-section p,
.parallax-content,
.parallax-content p {
    color: #ffffff !important;
}

.parallax-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.45rem 1.3rem !important;
    background: rgba(16, 185, 129, 0.25) !important;
    border: 1px solid rgba(16, 185, 129, 0.55) !important;
    border-radius: 9999px !important;
    color: #34d399 !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.parallax-title {
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: -0.02em !important;
}

.parallax-title span {
    color: #fbbf24 !important;
}

.parallax-desc {
    font-size: 1.15rem !important;
    color: #e2e8f0 !important;
    line-height: 1.75 !important;
    margin-bottom: 2.5rem !important;
    max-width: 820px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.parallax-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
}

.parallax-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1.6rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.parallax-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.7);
    background: rgba(255, 255, 255, 0.16);
}

.parallax-stat-number {
    font-size: 2.3rem !important;
    font-weight: 900 !important;
    color: #10b981 !important;
    font-family: var(--font-heading) !important;
    margin-bottom: 0.3rem !important;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.parallax-stat-label {
    font-size: 0.85rem !important;
    color: #f1f5f9 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.parallax-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .parallax-title {
        font-size: 1.85rem !important;
    }
    .parallax-desc {
        font-size: 1rem !important;
    }
    .parallax-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .parallax-section {
        padding: 5rem 0;
    }
}
