/*
Theme Name: Eco Veritas International Theme
Theme URI: http://www.ecoveritas.com/
Author: Antigravity AI
Author URI: https://deepmind.google/
Description: A premium, highly modern, responsive WordPress theme for Eco Veritas International Consultancy, featuring 3D tilt effects, parallax scrolling sections, and a clean, high-end sustainable aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, translation-ready, accessibility-ready
Text Domain: eco-veritas-theme
*/

/* ==========================================
   DESIGN TOKENS & CUSTOM PROPERTIES
   ========================================== */
:root {
    /* Color Palette */
    --primary-hue: 145;
    --primary-color: hsl(var(--primary-hue), 45%, 16%);      /* Deep forest green */
    --primary-light: hsl(var(--primary-hue), 35%, 28%);      /* Lighter forest green */
    --primary-dark: hsl(var(--primary-hue), 55%, 8%);        /* Very deep forest green */
    --accent-color: hsl(var(--primary-hue), 55%, 42%);       /* Energetic vibrant green */
    --accent-glow: hsl(var(--primary-hue), 70%, 55%);        /* Bright neon green glow */
    --gold-accent: hsl(42, 68%, 52%);                       /* Premium warm gold */
    --gold-light: hsl(42, 70%, 75%);                        /* Soft gold highlight */
    --text-dark: #1e2920;                                   /* Charcoal dark green-gray */
    --text-light: #ffffff;
    --text-muted: #64748b;                                  /* Soft slate gray */
    
    /* Backgrounds */
    --bg-light: #f8faf9;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.72);
    --bg-glass-dark: rgba(15, 35, 22, 0.85);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Details */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -2px rgba(10, 40, 20, 0.05);
    --shadow-medium: 0 12px 30px -4px rgba(10, 40, 20, 0.08);
    --shadow-strong: 0 20px 40px -6px rgba(10, 40, 20, 0.12);
    --shadow-glow: 0 0 20px rgba(50, 190, 110, 0.2);
}

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

html,body {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--border-radius-pill);
    border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--primary-light);
}

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

/* ==========================================
   LAYOUT CONTAINERS & HELPER CLASSES
   ========================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.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); }

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}
.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background-color: var(--accent-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(50, 190, 110, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    border-color: var(--text-light);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-light);
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* ==========================================
   NAVIGATION & HEADER
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
}

.site-header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-soft);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

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

.logo img {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
}

.nav-links a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.site-header.scrolled .nav-links a {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}
.nav-links a:hover::after,
.nav-links .current-menu-item a::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 1100;
    height: 38px;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.site-header.scrolled .mobile-nav-toggle span {
    background-color: var(--primary-color);
}

/* Mobile Active States */
.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

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

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Offset for parallax scrolling movement */
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    will-change: transform;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(15, 35, 22, 0.90) 0%, 
        rgba(15, 35, 22, 0.70) 50%,
        rgba(0, 0, 0, 0.40) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin-top: 3rem;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-glow);
    margin-bottom: 1.5rem;
    display: block;
    animation: slideUp 0.8s ease-out forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: -0.03em;
    animation: slideUp 1s ease-out forwards;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: slideUp 1.2s ease-out forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    animation: slideUp 1.4s ease-out forwards;
}

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

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

.about-img-container {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    transition: var(--transition-smooth);
}
.about-img:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--bg-glass-dark);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    text-align: center;
    z-index: 5;
    animation: pulse 3s infinite;
}

.about-badge .number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gold-accent);
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
}

.about-badge .label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-vision-box {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card-mv {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.card-mv:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background-color: var(--bg-white);
}

.card-mv h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-mv h3 i {
    color: var(--accent-color);
}

/* ==========================================
   SERVICES - 3D PERSPECTIVE CARDS
   ========================================== */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Card Container with Perspective */
.card-perspective {
    perspective: 1000px;
    height: 100%;
}

/* 3D Tilt Card Component */
.card-3d {
    background-color: var(--bg-white);
    padding: 3rem 2.25rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10, 40, 20, 0.03);
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(0deg) rotateY(0deg);
    transition: box-shadow 0.1s ease, transform 0.1s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-3d:hover {
    box-shadow: var(--shadow-strong);
    border-color: rgba(50, 190, 110, 0.15);
}

.card-3d-content {
    transform: translateZ(30px); /* Pushes content out in 3D space */
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.75rem;
    display: inline-block;
    transition: var(--transition-bounce);
    transform: translateZ(40px);
}

.card-3d:hover .card-icon {
    color: var(--gold-accent);
}

.card-3d h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transform: translateZ(35px);
}

.card-3d p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transform: translateZ(25px);
}

.card-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    transform: translateZ(20px);
}

.card-list li {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.25rem;
}

.card-list li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    margin-top: auto;
    transform: translateZ(30px);
}

.card-link i {
    transition: var(--transition-smooth);
}

.card-3d:hover .card-link i {
    transform: translateX(4px);
}

/* ==========================================
   FIXED STICKY PARALLAX CONTAINER
   ========================================== */
.fixed-parallax-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: var(--text-light);
    overflow: hidden;
    padding: 10rem 0;
}

.fixed-parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-glass-dark);
    z-index: 1;
}

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

.fixed-parallax-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.15;
}

.fixed-parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* ==========================================
   INDUSTRIES GRID
   ========================================== */
.industries-section {
    background-color: var(--bg-white);
}

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

.industry-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: var(--transition-bounce);
    border: 1px solid transparent;
    cursor: pointer;
}

.industry-card i {
    font-size: 2.25rem;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
    transition: var(--transition-bounce);
}

.industry-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-8px);
    background-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.industry-card:hover i {
    color: var(--gold-accent);
    transform: scale(1.1);
}

.industry-card:hover h4 {
    color: var(--text-light);
}

/* ==========================================
   WHY CHOOSE US & CORE VALUES (SPLIT PANEL)
   ========================================== */
.why-choose-section {
    background-color: var(--bg-light);
}

.split-layout {
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 4.5rem;
    align-items: center;
}

.why-left h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

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

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

.why-item-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(50, 190, 110, 0.15);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Core Values Grid */
.values-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition-bounce);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--gold-accent);
}

.value-icon {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 1.25rem;
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.value-card:nth-child(even) {
    transform: translateY(2rem);
}
.value-card:nth-child(even):hover {
    transform: translateY(1.5rem);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.contact-info-panel {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(50, 190, 110, 0.1);
    z-index: 1;
}

.contact-info-panel-content {
    position: relative;
    z-index: 2;
}

.contact-info-panel h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-panel p {
    opacity: 0.85;
    margin-bottom: 3rem;
}

.contact-details {
    list-style: none;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-detail-item i {
    font-size: 1.25rem;
    color: var(--gold-accent);
    margin-top: 0.25rem;
}

.contact-detail-item div h5 {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.contact-detail-item div p {
    margin: 0;
    opacity: 0.9;
}

.contact-socials {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.contact-socials a:hover {
    background-color: var(--gold-accent);
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-form-panel {
    background-color: var(--bg-white);
    padding: 4rem;
}

.contact-form-panel h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-form-panel p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

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

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.25rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid #e2e8f0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(50, 190, 110, 0.15);
}

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

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-about img {
    height: 42px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    opacity: 0.75;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-links a i {
    font-size: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* ==========================================
   SCROLL REVEAL & CSS ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 12px 30px -4px rgba(10, 40, 20, 0.05);
    }
    50% {
        box-shadow: 0 12px 30px 2px rgba(50, 190, 110, 0.25);
    }
    100% {
        box-shadow: 0 12px 30px -4px rgba(10, 40, 20, 0.05);
    }
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .value-card:nth-child(even) {
        transform: translateY(0);
    }
    .value-card:nth-child(even):hover {
        transform: translateY(-5px);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .logo img {
        height: 38px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        gap: 3rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-light) !important;
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-vision-box {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fixed-parallax-content h2 {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TOP HEADER BAR
   ========================================== */
.top-header-bar {
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    z-index: 1001;
    position: relative;
    width: 100%;
}

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

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

.top-header-left a {
    color: var(--accent-glow);
    font-weight: 600;
}
.top-header-left a:hover {
    color: var(--text-light);
}

.top-header-bar i {
    color: var(--accent-color);
    margin-right: 0.25rem;
}

/* Adjust header fixed positioning for top bar */
.site-header {
    top: 35px; /* Height of top bar */
}

.site-header.scrolled {
    top: 0;
}

@media (max-width: 768px) {
    .top-header-right {
        display: none;
    }
    .top-header-content {
        justify-content: center;
    }
    .site-header {
        top: 35px;
    }
}

@media (max-width: 480px) {
    .top-header-left {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .site-header {
        top: 60px; /* Stacked top bar height */
    }
    .site-header.scrolled {
        top: 0;
    }
}

/* ==========================================
   HERO MULTI-SLIDER & RIPPLE ANIMATIONS
   ========================================== */
.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: 120%; /* Height offset for scroll parallax */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
    filter: url(#liquid-ripple); /* Ripple displacement */
    will-change: transform, opacity;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 10s ease-in-out infinite alternate;
}

#water-ripple-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: auto;
}

.hero-overlay {
    z-index: 4; /* Overlay above slides and ripple canvas */
}

.hero-content {
    z-index: 5; /* Content above overlay */
}

@keyframes kenBurns {
    0% {
        transform: scale(1.02) translate(0, 0);
    }
    100% {
        transform: scale(1.12) translate(-1%, -1%);
    }
}

.liquid-filter-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ==========================================
   PARALLAX BACKGROUND BLOBS
   ========================================== */
.parallax-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.blob-1 {
    top: 15%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
}

.blob-2 {
    top: 45%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
}

.blob-3 {
    top: 75%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-accent) 0%, transparent 70%);
}

/* ==========================================
   GLOBAL BACKGROUND WATER CANVAS
   ========================================== */
#global-water-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: transparent;
}

/* ==========================================
   LIQUID WAVE PROGRESS BAR
   ========================================== */
.scroll-wave-progress {
    position: absolute;
    bottom: -15px; /* Offset to overlap header border */
    left: 0;
    width: 100%;
    height: 18px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1005;
}

.scroll-wave-progress .wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%; /* Wider to scroll smoothly */
    height: 100%;
    transform: translate3d(-50%, 0, 0);
    transition: transform 0.1s ease-out;
}

.scroll-wave-progress .wave-back {
    fill: rgba(50, 190, 110, 0.25);
    animation: waveMove 12s linear infinite;
}

.scroll-wave-progress .wave-front {
    fill: var(--accent-color);
    opacity: 0.85;
    animation: waveMove 6s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: translate3d(0%, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================
   SUSTAINABILITY PANEL WIDGET
   ========================================== */
.sustainability-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--font-body);
}

.widget-toggle {
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: var(--accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(10, 40, 20, 0.3), 0 0 0 0 rgba(50, 190, 110, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    transition: var(--transition-bounce);
    position: relative;
    animation: widgetPulse 2s infinite;
}

@keyframes widgetPulse {
    0% {
        box-shadow: 0 10px 30px rgba(10, 40, 20, 0.3), 0 0 0 0 rgba(50, 190, 110, 0.6);
    }
    70% {
        box-shadow: 0 10px 30px rgba(10, 40, 20, 0.3), 0 0 0 15px rgba(50, 190, 110, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(10, 40, 20, 0.3), 0 0 0 0 rgba(50, 190, 110, 0);
    }
}

.widget-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: var(--primary-light);
}

.widget-toggle .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--accent-color);
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    border: 1px solid var(--primary-color);
}

.widget-dashboard {
    width: 320px;
    background-color: var(--bg-glass-dark);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    transform-origin: bottom right;
}

.sustainability-widget.active .widget-toggle {
    display: none;
}

.sustainability-widget.active .widget-dashboard {
    display: flex;
    transform: scale(1) translateY(0);
    opacity: 1;
}

.widget-header {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-header h4 {
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-header h4 i {
    color: var(--accent-glow);
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: var(--transition-smooth);
}

.widget-close:hover {
    color: var(--text-light);
    transform: scale(1.1);
}

.widget-body {
    padding: 1.5rem;
}

.widget-metric {
    margin-bottom: 1.25rem;
}

.widget-metric:last-of-type {
    margin-bottom: 1.5rem;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-glow);
}

.metric-unit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 1px;
}

.metric-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.metric-progress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--accent-color));
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sustainability-widget.active .metric-progress {
    transform: scaleX(1);
}

.widget-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

/* ==========================================
   CLIP-PATH MASK SCROLL REVEALS
   ========================================== */
.liquid-reveal {
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.liquid-reveal.active {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 768px) {
    .sustainability-widget {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Full-screen widget overlay on mobile */
    .sustainability-widget.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        z-index: 1050;
    }
    
    .sustainability-widget.active .widget-dashboard {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        border: none;
    }
    
    .sustainability-widget.active .widget-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }
}
