/* =====================================================
   VENIGEM ADVANCED TECHNOLOGIES - CORPORATE WEBSITE
   Premium Water Treatment Solutions
   ===================================================== */

/* =====================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   3-COLOR SCHEME: Deep Blue, Teal, White
   ===================================================== */
:root {
    /* === PRIMARY 3 COLORS === */
    --color-deep-blue: #0A2540;
    --color-teal: #00A8B5;
    --color-white: #FFFFFF;

    /* Colors - Primary (Based on Deep Blue) */
    --color-primary: var(--color-deep-blue);
    --color-primary-light: #1E3A5F;
    --color-primary-dark: #061829;

    /* Colors - Accent (Based on Teal) */
    --color-accent: var(--color-teal);
    --color-accent-light: #4DD0E1;
    --color-accent-dark: #006d75;

    /* Colors - Neutral (Derived from 3 colors) */
    --color-light: #F0FDFF;
    --color-gray-100: #E0F7FA;
    --color-gray-200: #B2EBF2;
    --color-gray-300: #80DEEA;
    --color-gray-400: #4DD0E1;
    --color-gray-500: #26C6DA;
    --color-gray-600: #00ACC1;
    --color-text: var(--color-deep-blue);
    --color-text-muted: #4A6F8A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-deep-blue) 0%, #1E3A5F 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-teal) 0%, #4DD0E1 100%);
    --gradient-hero: linear-gradient(180deg, var(--color-deep-blue) 0%, #0f3555 50%, var(--color-teal) 100%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(0, 168, 181, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-index */
    --z-header: 1000;
    --z-modal: 1100;
}

/* =====================================================
   CSS RESET & BASE STYLES
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--color-white);
    background: linear-gradient(180deg, #041526 0%, #0a2540 25%, #0d3555 50%, #0a3d4f 75%, #063340 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg transform='rotate(-25, 16, 16)'%3E%3Cpath d='M16 2C16 2 6 14 6 20c0 5.5 4.5 10 10 10s10-4.5 10-10C26 14 16 2 16 2z' fill='%2300A8B5' stroke='%23006d75' stroke-width='1'/%3E%3Cellipse cx='12' cy='18' rx='3' ry='4' fill='rgba(255,255,255,0.4)'/%3E%3C/g%3E%3C/svg%3E") 16 16, auto;
    position: relative;
    min-height: 100vh;
}

/* =====================================================
   PREMIUM ANIMATED OCEAN BACKGROUND
   ===================================================== */

/* Main animated gradient overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Aurora effect at top */
        radial-gradient(ellipse 120% 30% at 50% 0%, rgba(0, 212, 255, 0.15) 0%, transparent 60%),
        /* Glowing orbs */
        radial-gradient(circle at 15% 30%, rgba(0, 168, 181, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(77, 208, 225, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 136, 148, 0.15) 0%, transparent 50%),
        /* Bottom glow */
        radial-gradient(ellipse 100% 40% at 50% 100%, rgba(0, 168, 181, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: oceanGlow 12s ease-in-out infinite;
}

@keyframes oceanGlow {

    0%,
    100% {
        opacity: 1;
        filter: hue-rotate(0deg);
    }

    25% {
        opacity: 0.85;
        filter: hue-rotate(5deg);
    }

    50% {
        opacity: 0.95;
        filter: hue-rotate(-5deg);
    }

    75% {
        opacity: 0.9;
        filter: hue-rotate(3deg);
    }
}

/* Floating particles and bubbles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Large glowing orbs */
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 8%),
        radial-gradient(circle at 90% 15%, rgba(0, 168, 181, 0.1) 0%, transparent 6%),
        radial-gradient(circle at 80% 80%, rgba(77, 208, 225, 0.08) 0%, transparent 10%),
        radial-gradient(circle at 20% 85%, rgba(0, 188, 201, 0.09) 0%, transparent 7%),
        /* Small sparkles */
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 2%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 1.5%),
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 2.5%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 2%),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 1.8%),
        /* Floating bubbles */
        radial-gradient(circle at 15% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 3%),
        radial-gradient(circle at 85% 40%, rgba(0, 168, 181, 0.07) 0%, transparent 2.5%),
        radial-gradient(circle at 45% 85%, rgba(77, 208, 225, 0.06) 0%, transparent 3.5%);
    pointer-events: none;
    z-index: 0;
    animation: floatParticles 25s ease-in-out infinite;
}

@keyframes floatParticles {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.7;
    }

    20% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.85;
    }

    40% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.75;
    }

    60% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.9;
    }

    80% {
        transform: translateY(-15px) translateX(-10px);
        opacity: 0.8;
    }
}

/* Ensure content stays above background */
body>* {
    position: relative;
    z-index: 1;
}

/* Custom cursor for clickable elements - Hand Pointer */
a,
button,
.btn,
[role="button"],
input[type="submit"],
input[type="button"] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cdefs%3E%3ClinearGradient id='hand' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%234DD0E1'/%3E%3Cstop offset='100%25' style='stop-color:%2300A8B5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M13 2c1.1 0 2 .9 2 2v8h1V5c0-1.1.9-2 2-2s2 .9 2 2v7h1V7c0-1.1.9-2 2-2s2 .9 2 2v9c0 6-4 10-9 10-6 0-9-4-9-9v-5c0-1.1.9-2 2-2s2 .9 2 2v5h1V4c0-1.1.9-2 2-2z' fill='url(%23hand)' stroke='%23006d75' stroke-width='0.5'/%3E%3C/svg%3E") 10 0, pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header .section-description {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-4xl);
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn-block {
    width: 100%;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 37, 64, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1.1;
}

.logo-tagline {
    font-size: var(--font-size-xs);
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Logo Image */
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-300);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header-actions .btn-primary {
    display: none;
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 1024px) {
    .nav {
        display: block;
    }

    .header-actions .btn-primary {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Navigation */
.nav.active {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.98) 0%, rgba(0, 106, 113, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-8) var(--space-6);
    z-index: 999;
}

.nav.active .nav-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-5);
}

.nav.active .nav-link {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: #FFFFFF !important;
    padding: var(--space-2) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(30, 58, 95, 0.75) 50%, rgba(0, 168, 181, 0.4) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0, 168, 181, 0.1) 100%);
    animation: wave 25s linear infinite;
}

.wave1 {
    opacity: 0.5;
    animation-delay: 0s;
    animation-duration: 30s;
}

.wave2 {
    opacity: 0.3;
    animation-delay: -8s;
    animation-duration: 38s;
}

.wave3 {
    opacity: 0.2;
    animation-delay: -15s;
    animation-duration: 45s;
}

@keyframes wave {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    50% {
        transform: translateX(-25%) translateY(10px) rotate(1deg);
    }

    100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
}

/* Water particles animation */
.hero-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 168, 181, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(77, 208, 225, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(0, 168, 181, 0.08) 0%, transparent 30%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.01);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--space-12);
    padding: var(--space-12) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 168, 181, 0.2);
    border: 1px solid rgba(0, 168, 181, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-accent-light);
    margin-bottom: var(--space-4);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-300);
    margin-bottom: var(--space-8);
    max-width: 560px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

/* Micro-trust points below CTAs */
.hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-2);
}

.trust-point {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-gray-300);
}

.trust-point svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent-light);
}

.hero-visual {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    flex: 1;
    min-width: 180px;
    transition: transform 0.3s ease;
}

/* Subtle float animation for hero cards */
.hero-card-float {
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-card-float:nth-child(2) {
    animation-delay: -3s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.hero-card-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.hero-card-label {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--color-white);
    animation: bounce 3s ease-in-out infinite;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Industries Served Section in Hero */
.hero-industries {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.industries-label {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.industry-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.industry-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.industry-item span {
    font-size: var(--font-size-sm);
    color: var(--color-gray-300);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }

    .hero-title {
        font-size: var(--font-size-6xl);
    }

    .hero-visual {
        flex-direction: column;
        justify-content: center;
    }
}

/* =====================================================
   TRUST SIGNALS SECTION
   ===================================================== */
.trust {
    padding: var(--space-16) 0;
    background: var(--color-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent-light);
}

.trust-number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.trust-suffix {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
}

.trust-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-gray-200);
}

.cert-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
}

.cert-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    padding: var(--space-20) 0;
}

.about-grid {
    display: grid;
    gap: var(--space-12);
}

.about-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.about-feature {
    display: flex;
    gap: var(--space-4);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 238, 255, 0.5);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.feature-content h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.feature-content p {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.about-image-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 40%, rgba(2, 238, 255, 0.2) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300A8B5' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-stats {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    right: var(--space-6);
    display: flex;
    gap: var(--space-4);
}

.stat-card {
    flex: 1;
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-card svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    margin-bottom: var(--space-2);
}

.stat-value {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    padding: var(--space-20) 0;
    background: var(--color-light);
}

.services-grid {
    display: grid;
    gap: var(--space-6);
}

.service-card {
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-light);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.service-description {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-5);
}

.service-features {
    margin-bottom: var(--space-5);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.service-features li svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent);
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: var(--space-3);
}

.service-link svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-us {
    padding: var(--space-20) 0;
}

.why-grid {
    display: grid;
    gap: var(--space-6);
}

.why-card {
    position: relative;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-number {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-gray-100);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 168, 181, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.why-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.why-description {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-card:nth-child(4) {
        grid-column: 1 / 2;
    }

    .why-card:nth-child(5) {
        grid-column: 2 / 3;
    }
}

/* =====================================================
   PROJECTS SECTION
   ===================================================== */
.projects {
    padding: var(--space-20) 0;
    background: var(--color-primary);
}

.projects .section-label {
    color: var(--color-accent-light);
}

.projects .section-title {
    color: var(--color-white);
}

.projects .section-description {
    color: var(--color-gray-400);
}

.projects-grid {
    display: grid;
    gap: var(--space-6);
}

.project-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-primary-light);
    transition: all var(--transition-base);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.project-image {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.project-image-1 {
    background: linear-gradient(135deg, #1a3a5a 0%, #0a2540 100%);
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300A8B5' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #1a3a5a 0%, #0a2540 100%);
}

.project-image-2 {
    background: linear-gradient(135deg, #00838f 0%, #006064 100%);
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #00838f 0%, #006064 100%);
}

.project-image-3 {
    background: linear-gradient(135deg, #2e5a7d 0%, #1e3a5f 100%);
    background-image:
        url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234DD0E1' fill-opacity='0.15'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #2e5a7d 0%, #1e3a5f 100%);
}

.project-image-4 {
    background: linear-gradient(135deg, #00a8b5 0%, #00838f 100%);
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #00a8b5 0%, #00838f 100%);
}

.project-image-pharma-12kl {
    /* Prefer a real project image in the images/ folder if provided */
    background: url("images/project-pharma-12kl.jpg") center/cover no-repeat;
    min-height: 280px;
    border-radius: var(--radius-xl);
    display: block;
    /* Fallback gradient if image not found */
    background-color: #0d3b52;
    background-image: linear-gradient(135deg, rgba(27, 94, 125, 0.9) 0%, rgba(13, 59, 82, 0.9) 100%);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-5);
}

.project-category {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--color-accent);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    text-transform: uppercase;
}

.project-content {
    padding: var(--space-6);
}

.project-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.project-description {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    margin-bottom: var(--space-4);
}

.project-meta {
    display: flex;
    gap: var(--space-4);
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--font-size-xs);
    color: var(--color-gray-500);
}

.project-meta svg {
    width: 14px;
    height: 14px;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
    padding: var(--space-20) 0;
}

.testimonials-grid {
    display: grid;
    gap: var(--space-6);
}

.testimonial-card {
    position: relative;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
}

.testimonial-quote svg {
    width: 32px;
    height: 32px;
    color: var(--color-gray-200);
}

.testimonial-text {
    font-size: var(--font-size-lg);
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent-light);
}

.author-name {
    display: block;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

.author-role {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: #F59E0B;
    fill: #F59E0B;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   CTA / LEAD CAPTURE SECTION
   ===================================================== */
.cta {
    padding: var(--space-20) 0;
    background: var(--color-light);
}

.cta-grid {
    display: grid;
    gap: var(--space-12);
}

.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: var(--color-white);
}

.contact-btn.whatsapp:hover {
    background: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.contact-btn.call {
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-btn.call:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.cta-form {
    padding: var(--space-8);
}

.form-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-6);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 168, 181, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: var(--font-size-4xl);
    }
}

@media (min-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    padding: var(--space-16) 0 var(--space-8);
    background: var(--color-primary);
    color: var(--color-gray-300);
}

.footer-grid {
    display: grid;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-brand .logo {
    margin-bottom: var(--space-5);
}

.footer-about {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    margin-bottom: var(--space-5);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-gray-300);
}

.social-link:hover {
    background: var(--color-accent);
}

.social-link:hover svg {
    color: var(--color-white);
}

.footer-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-5);
}

.footer-links ul li {
    margin-bottom: var(--space-3);
}

.footer-links ul li a {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--color-accent-light);
}

.contact-list li {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-sm);
}

.contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list a {
    color: var(--color-gray-400);
}

.contact-list a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.footer-legal a:hover {
    color: var(--color-accent-light);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-fade-in:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.services-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.services-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.services-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}

.services-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.5s;
}

.why-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.why-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.why-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.why-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}

.why-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.5s;
}

.projects-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.projects-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.projects-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.projects-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}

.testimonials-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonials-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonials-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

/* =====================================================
   SCROLLBAR STYLING
   ===================================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-400);
}

/* =====================================================
   SELECTION STYLING
   ===================================================== */
::selection {
    background: var(--color-accent);
    color: var(--color-white);
}

/* =====================================================
   MULTI-PAGE STYLES
   ===================================================== */

/* Active Navigation Link */
.nav-link.active {
    color: var(--color-white);
}

.nav-link.active::after {
    width: 100%;
}

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.page-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-300);
}

@media (min-width: 768px) {
    .page-title {
        font-size: var(--font-size-5xl);
    }
}

/* =====================================================
   SEAMLESS DARK SECTION - No Boundaries
   Services, Why Choose Us, CTA flow together
   ===================================================== */

/* Services Preview (Home Page) - Seamless */
.services-preview {
    padding: var(--space-16) 0;
    background: transparent;
}

/* Section header text for dark backgrounds */
.water-cgi-bg-dark .section-header .section-label {
    color: #4DD0E1;
}

.water-cgi-bg-dark .section-header .section-title {
    color: var(--color-white);
}

.water-cgi-bg-dark .section-header .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.services-preview-grid {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-preview-card {
    padding: var(--space-8);
    background: linear-gradient(135deg, rgba(15, 53, 85, 0.6) 0%, rgba(0, 168, 181, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 168, 181, 0.4);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardBlueShimmer 3s ease-out forwards;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 208, 225, 0.1) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-preview-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.2) 0%, rgba(77, 208, 225, 0.15) 100%);
    box-shadow: 0 20px 60px rgba(0, 168, 181, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 168, 181, 0.8);
}

.service-preview-card:hover::before {
    opacity: 1;
}

.service-preview-card .service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #00A8B5 0%, #4DD0E1 100%);
    /* Hexagonal shape for icon */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    box-shadow: 0 8px 24px rgba(0, 168, 181, 0.5), inset -2px -2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.service-preview-card:hover .service-icon {
    transform: rotateY(10deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 168, 181, 0.6), inset -2px -2px 8px rgba(0, 0, 0, 0.3);
}

.service-preview-card .service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
    transition: all 0.4s ease;
}

.service-preview-card:hover .service-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.service-preview-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.service-preview-card p {
    color: rgba(255, 255, 255, 0.8);
}

.section-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .services-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why Preview (Home Page) - Enhanced Professional */
.why-preview {
    padding: var(--space-20) 0;
    background: transparent;
    position: relative;
}

.why-preview::before,
.why-preview::after {
    display: none;
}

.why-preview-content {
    text-align: center;
}

.why-preview-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-5);
    margin: var(--space-10) 0;
}

.why-preview-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.08) 0%, rgba(77, 208, 225, 0.04) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 168, 181, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 168, 181, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    animation: cardBlueShimmer 3s ease-out forwards;
    animation-delay: 0.5s;
}

.why-preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(77, 208, 225, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
}

.why-preview-item:hover {
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.15) 0%, rgba(77, 208, 225, 0.1) 100%);
    border-color: rgba(0, 168, 181, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 168, 181, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.why-preview-item:hover::before {
    left: 100%;
}

.why-preview-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-light);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.why-preview-item:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 6px rgba(77, 208, 225, 0.6));
}

/* Update section label and title for dark background */
.why-preview .section-label {
    color: var(--color-accent-light);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
}

.why-preview .section-title {
    color: var(--color-white);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-6);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 181, 0.3) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.btn-outline-dark:hover {
    background: rgba(0, 168, 181, 0.2);
    border-color: var(--color-accent-light);
    box-shadow: 0 0 20px rgba(0, 168, 181, 0.3);
    transform: translateY(-2px);
}

.btn-outline-dark:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Home CTA - Seamless */
.home-cta {
    padding: var(--space-16) 0;
    background: transparent;
}

.home-cta-content {
    text-align: center;
}

.home-cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.home-cta-content p {
    font-size: var(--font-size-lg);
    color: var(--color-gray-300);
    margin-bottom: var(--space-8);
}

.home-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .home-cta-content h2 {
        font-size: var(--font-size-4xl);
    }
}

/* Page CTA - Dark Blue to Teal Gradient */
.page-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0A2540 0%, #0f3555 40%, #00A8B5 100%);
    position: relative;
}

.page-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(0, 168, 181, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 70%, rgba(77, 208, 225, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cta-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
}

.page-cta .btn-primary {
    background: linear-gradient(135deg, #00A8B5 0%, #00838F 100%);
    color: var(--color-white);
    border: 2px solid transparent;
    padding: var(--space-4) var(--space-8);
    box-shadow: 0 8px 25px -5px rgba(0, 168, 181, 0.5);
}

.page-cta .btn-primary:hover {
    background: linear-gradient(135deg, #4DD0E1 0%, #00A8B5 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px -8px rgba(0, 168, 181, 0.6);
}

/* Outline Button for CTA */
.page-cta .btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: var(--space-4) var(--space-8);
}

.page-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* About Page */
.about-full {
    padding: var(--space-20) 0;
}

/* Mission Vision */
.mission-vision {
    padding: var(--space-16) 0;
    background: var(--color-light);
}

.mv-grid {
    display: grid;
    gap: var(--space-6);
}

.mv-card {
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mv-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.mv-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-accent-light);
}

.mv-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.mv-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Certifications Section */
.certifications-section {
    padding: var(--space-20) 0;
}

.cert-grid {
    display: grid;
    gap: var(--space-6);
}

.cert-card {
    padding: var(--space-6);
    background: var(--color-light);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.cert-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.cert-card svg {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.cert-card h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.cert-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Services Full Page */
.services-full {
    padding: var(--space-20) 0;
}

.service-detail {
    padding: var(--space-10) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content {
    max-width: 800px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    color: var(--color-accent-light);
}

.service-icon-large .service-icon-3d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.service-detail h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.service-detail>.service-detail-content>p {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.service-specs {
    margin-bottom: var(--space-6);
}

.service-specs h4,
.service-industries h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.specs-list {
    display: grid;
    gap: var(--space-3);
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-text);
}

.specs-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.industry-tags span {
    padding: var(--space-2) var(--space-4);
    background: var(--color-light);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .specs-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Featured Service (Aquaculture) */
.service-featured {
    background: linear-gradient(135deg, rgba(0, 200, 200, 0.05) 0%, rgba(0, 200, 200, 0.02) 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    position: relative;
}

.service-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-accent);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.service-featured .service-icon-large,
.aquaculture-icon {
    background: var(--gradient-accent);
}

.service-featured h2 {
    color: var(--color-accent);
}

.service-featured .industry-tags span {
    background: rgba(0, 200, 200, 0.15);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

/* Projects Full Page */
.projects-full {
    padding: var(--space-20) 0;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.filter-btn {
    padding: var(--space-3) var(--space-6);
    background: var(--color-light);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.projects-grid-full {
    display: grid;
    gap: var(--space-8);
}

.project-card-full {
    display: grid;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.project-card-full:hover {
    box-shadow: var(--shadow-xl);
}

.project-card-full .project-image {
    height: 240px;
}

.project-card-full .project-content {
    padding: var(--space-8);
}

.project-card-full .project-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
}

.project-card-full .project-description {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.project-detail {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.project-detail svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .projects-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .project-card-full {
        grid-template-columns: 1fr 1.5fr;
    }

    .project-card-full .project-image {
        height: auto;
    }
}

/* Projects Stats */
.projects-stats {
    padding: var(--space-16) 0;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    gap: var(--space-6);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.stat-suffix {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent-light);
}

.stat-text {
    display: block;
    font-size: var(--font-size-base);
    color: var(--color-gray-300);
    margin-top: var(--space-2);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Testimonials Full Page */
.featured-testimonial {
    padding: var(--space-16) 0;
    background: var(--color-light);
}

.featured-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.featured-quote .quote-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
}

.featured-quote .quote-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.featured-text {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: var(--space-8);
}

.featured-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.author-avatar.large {
    width: 64px;
    height: 64px;
    font-size: var(--font-size-xl);
}

.testimonials-full {
    padding: var(--space-20) 0;
}

.testimonials-grid-full {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .testimonials-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Client Logos */
.client-logos {
    padding: var(--space-16) 0;
    background: var(--color-light);
}

.logos-grid {
    display: grid;
    gap: var(--space-6);
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    text-align: center;
}

.logo-item svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
}

.logo-item span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .logos-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Contact Full Page */
.contact-full {
    padding: var(--space-20) 0;
}

.contact-grid {
    display: grid;
    gap: var(--space-12);
}

.contact-info h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.contact-intro {
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.contact-method.whatsapp .method-icon {
    background: #25D366;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.method-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.method-value {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

.office-address,
.business-hours {
    margin-bottom: var(--space-6);
}

.office-address h3,
.business-hours h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.address-content {
    display: flex;
    gap: var(--space-3);
    color: var(--color-text-muted);
}

.address-content svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-gray-200);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.business-hours ul li:last-child {
    border-bottom: none;
}

/* Contact Form - CGI/VFX STYLE */
.contact-form-wrapper {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 255, 0.9) 100%);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 25px 80px -20px rgba(0, 168, 181, 0.4),
        0 10px 40px -10px rgba(10, 37, 64, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Animated Gradient Border */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg,
            #00A8B5, #4DD0E1, #00A8B5, #006d75,
            #4DD0E1, #00A8B5, #006d75, #4DD0E1);
    background-size: 400% 400%;
    border-radius: calc(var(--radius-2xl) + 3px);
    z-index: -1;
    animation: borderGlow 6s ease-in-out infinite;
}

/* Inner Glow Effect */
.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg,
            rgba(0, 168, 181, 0.15) 0%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.contact-form {
    position: relative;
    padding: var(--space-10);
    z-index: 2;
}

.contact-form .form-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
    text-shadow: 0 4px 20px rgba(0, 168, 181, 0.2);
}

.form-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

/* VFX Form Groups */
.form-group {
    position: relative;
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: var(--font-weight-bold);
    color: #0A2540;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* 3D Glowing Inputs - Dark text on white background */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    border: 2px solid rgba(0, 168, 181, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-base);
    color: #0A2540;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 4px 15px -5px rgba(0, 168, 181, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #4A6F8A;
    opacity: 0.8;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 168, 181, 0.4);
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px -8px rgba(0, 168, 181, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 0 0 4px rgba(0, 168, 181, 0.15),
        0 12px 35px -10px rgba(0, 168, 181, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* VFX Submit Button */
.contact-form .btn-primary {
    position: relative;
    width: 100%;
    padding: var(--space-5) var(--space-8);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #00A8B5 0%, #006d75 50%, #00A8B5 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: var(--radius-xl);
    color: white;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 40px -10px rgba(0, 168, 181, 0.6),
        0 4px 15px rgba(0, 168, 181, 0.3);
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
}

.contact-form .btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 50px -15px rgba(0, 168, 181, 0.7),
        0 8px 25px rgba(0, 168, 181, 0.4);
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:active {
    transform: translateY(-2px) scale(1);
}

.form-row {
    display: grid;
    gap: var(--space-4);
}

.form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: rgba(0, 168, 181, 0.05);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(0, 168, 181, 0.3);
}

.trust-item-form {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: #0A2540;
    font-weight: var(--font-weight-bold);
}

.trust-item-form svg {
    width: 20px;
    height: 20px;
    color: #0A2540;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
    }
}

/* Map Section */
.map-section {
    padding: var(--space-16) 0;
    background: var(--color-light);
}

.map-placeholder {
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 37, 64, 0.9);
}

.map-content {
    text-align: center;
    color: var(--color-white);
}

.map-content svg {
    width: 48px;
    height: 48px;
    color: var(--color-accent-light);
    margin-bottom: var(--space-4);
}

.map-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.map-content p {
    color: var(--color-gray-300);
    margin-bottom: var(--space-6);
}

/* =====================================================
   CGI-STYLE ANIMATED LOCATION SECTION
   ===================================================== */
.location-cgi-section {
    position: relative;
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0a1628 0%, #0f2744 50%, #0a1628 100%);
    overflow: hidden;
}

/* Background Animations */
.location-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Particles */
.location-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

.location-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.location-particle:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: -2s;
    animation-duration: 12s;
}

.location-particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: -4s;
    animation-duration: 9s;
}

.location-particle:nth-child(4) {
    top: 40%;
    left: 70%;
    animation-delay: -1s;
    animation-duration: 11s;
}

.location-particle:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: -3s;
    animation-duration: 8s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-50px) translateX(-10px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) translateX(-30px) scale(1.1);
        opacity: 0.8;
    }
}

/* Grid Lines Background */
.location-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 168, 181, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 181, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Glowing Orbs */
.location-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #4DD0E1 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #00838F 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2) translate(10px, -10px);
        opacity: 0.6;
    }
}

/* Main Wrapper */
.location-cgi-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .location-cgi-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

/* Hologram Effect */
.location-hologram {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .location-hologram {
        width: 350px;
        height: 350px;
    }
}

.hologram-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringRotate 8s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 168, 181, 0.3);
    border-top-color: var(--color-accent);
    border-right-color: var(--color-accent);
    animation-duration: 6s;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(77, 208, 225, 0.2);
    border-bottom-color: var(--color-accent-light);
    border-left-color: var(--color-accent-light);
    animation-duration: 8s;
    animation-direction: reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(0, 131, 143, 0.3);
    border-top-color: var(--color-accent-dark);
    animation-duration: 10s;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 3D Pin */
.location-pin-3d {
    position: relative;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 168, 181, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.pin-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(0, 168, 181, 0.5),
        0 0 60px rgba(0, 168, 181, 0.3),
        inset 0 -5px 20px rgba(0, 0, 0, 0.3);
    animation: pinFloat 3s ease-in-out infinite;
}

.pin-core svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes pinFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Content Section */
.location-content-cgi {
    text-align: center;
}

@media (min-width: 768px) {
    .location-content-cgi {
        text-align: left;
    }
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 168, 181, 0.15);
    border: 1px solid rgba(0, 168, 181, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-accent-light);
    margin-bottom: var(--space-4);
}

.location-tag svg {
    width: 14px;
    height: 14px;
}

.location-title-cgi {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Address with animated lines */
.location-address-cgi {
    margin-bottom: var(--space-8);
}

.address-line {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
    opacity: 0;
    animation: addressSlideIn 0.6s ease-out forwards;
}

.address-line:nth-child(1) {
    animation-delay: 0.2s;
}

.address-line:nth-child(2) {
    animation-delay: 0.4s;
}

.address-line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes addressSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.line-indicator {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 181, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 168, 181, 0);
    }
}

.address-line p {
    font-size: var(--font-size-lg);
    color: var(--color-gray-300);
    margin: 0;
}

/* Stats Section */
.location-stats {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .location-stats {
        justify-content: flex-start;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 168, 181, 0.3);
    transform: translateY(-2px);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
}

/* CGI Button */
.btn-cgi {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border: none;
    box-shadow:
        0 4px 15px rgba(0, 168, 181, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cgi:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(0, 168, 181, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* =====================================================
   WATER CGI 3D ANIMATED BACKGROUNDS
   ===================================================== */

/* Base Water CGI Background Styles */
.water-cgi-bg,
.water-cgi-bg-light,
.water-cgi-bg-dark {
    position: relative;
    overflow: hidden;
}

.water-cgi-bg {
    background: linear-gradient(135deg, #e8f4f8 0%, #d0ebf1 50%, #b8e2ec 100%);
}

.water-cgi-bg-light {
    background: linear-gradient(180deg, #f0f9fc 0%, #e0f3f8 50%, #d0edf5 100%);
}

.water-cgi-bg-dark {
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a2540 100%);
}

/* Water Animation Layer */
.water-animation-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Ensure content is above animations */
.water-cgi-bg .container,
.water-cgi-bg-light .container,
.water-cgi-bg-dark .container {
    position: relative;
    z-index: 1;
}

/* =====================================================
   WATER BUBBLES - Rising Animation
   ===================================================== */
.water-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(0, 168, 181, 0.3) 50%,
            rgba(0, 168, 181, 0.1) 100%);
    box-shadow:
        inset -2px -2px 10px rgba(0, 168, 181, 0.2),
        inset 2px 2px 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 168, 181, 0.15);
    animation: bubbleRise linear infinite;
    opacity: 0;
}

.bubble-1 {
    width: 20px;
    height: 20px;
    left: 5%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble-2 {
    width: 35px;
    height: 35px;
    left: 15%;
    animation-duration: 10s;
    animation-delay: -2s;
}

.bubble-3 {
    width: 15px;
    height: 15px;
    left: 30%;
    animation-duration: 7s;
    animation-delay: -4s;
}

.bubble-4 {
    width: 40px;
    height: 40px;
    left: 50%;
    animation-duration: 12s;
    animation-delay: -1s;
}

.bubble-5 {
    width: 25px;
    height: 25px;
    left: 70%;
    animation-duration: 9s;
    animation-delay: -3s;
}

.bubble-6 {
    width: 18px;
    height: 18px;
    left: 80%;
    animation-duration: 8s;
    animation-delay: -5s;
}

.bubble-7 {
    width: 30px;
    height: 30px;
    left: 90%;
    animation-duration: 11s;
    animation-delay: -2s;
}

.bubble-8 {
    width: 22px;
    height: 22px;
    left: 45%;
    animation-duration: 9s;
    animation-delay: -6s;
}

@keyframes bubbleRise {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }

    10% {
        opacity: 0.6;
        transform: translateX(10px) scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-15px) scale(1);
    }

    90% {
        opacity: 0.4;
        transform: translateX(10px) scale(1.1);
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
}

/* =====================================================
   WATER RIPPLES - Expanding Circles
   ===================================================== */
.water-ripple {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 168, 181, 0.3);
    background: transparent;
    animation: rippleExpand 4s ease-out infinite;
}

.ripple-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.ripple-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

@keyframes rippleExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
        border-width: 3px;
    }

    50% {
        opacity: 0.4;
        border-width: 2px;
    }

    100% {
        transform: scale(3);
        opacity: 0;
        border-width: 1px;
    }
}

/* =====================================================
   WATER DROPLETS - Falling Animation
   ===================================================== */
.water-droplet {
    position: absolute;
    width: 10px;
    height: 14px;
    background: linear-gradient(180deg,
            rgba(0, 168, 181, 0.8) 0%,
            rgba(77, 208, 225, 0.6) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: dropFall linear infinite;
    opacity: 0;
    box-shadow:
        inset -1px -1px 5px rgba(255, 255, 255, 0.5),
        0 5px 15px rgba(0, 168, 181, 0.3);
}

.drop-1 {
    left: 25%;
    animation-duration: 3s;
    animation-delay: 0s;
}

.drop-2 {
    left: 55%;
    animation-duration: 2.5s;
    animation-delay: -1s;
}

.drop-3 {
    left: 75%;
    animation-duration: 3.5s;
    animation-delay: -2s;
}

@keyframes dropFall {
    0% {
        top: -5%;
        opacity: 0;
        transform: scale(0.5);
    }

    10% {
        opacity: 0.8;
        transform: scale(1);
    }

    90% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        top: 105%;
        opacity: 0;
        transform: scale(0.8);
    }
}

/* =====================================================
   WAVE EFFECT - Bottom Border
   ===================================================== */
.water-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%2300A8B5' fill-opacity='0.15' d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z'/%3E%3C/svg%3E");
    background-size: 600px 80px;
    animation: waveFlow 8s linear infinite;
}

@keyframes waveFlow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-600px);
    }
}

/* =====================================================
   WATER MOLECULES - Floating Animation
   ===================================================== */
.water-molecule {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.15;
    animation: moleculeFloat 15s ease-in-out infinite;
}

.water-molecule::before,
.water-molecule::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent);
}

/* Oxygen atom - larger center */
.water-molecule::before {
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hydrogen atoms - smaller sides */
.water-molecule::after {
    width: 14px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 36px 0 0 var(--color-accent-light);
}

.mol-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.mol-2 {
    top: 70%;
    right: 10%;
    animation-delay: -5s;
}

.mol-3 {
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes moleculeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, -50px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, -20px) rotate(270deg);
    }
}

/* =====================================================
   FLOW LINES - Horizontal Water Flow
   ===================================================== */
.water-flow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 168, 181, 0.4) 20%,
            rgba(77, 208, 225, 0.6) 50%,
            rgba(0, 168, 181, 0.4) 80%,
            transparent 100%);
    animation: flowLine 6s ease-in-out infinite;
    border-radius: 2px;
}

.line-1 {
    width: 200px;
    top: 30%;
    left: -200px;
    animation-delay: 0s;
}

.line-2 {
    width: 150px;
    top: 70%;
    left: -150px;
    animation-delay: -3s;
}

@keyframes flowLine {
    0% {
        left: -200px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* =====================================================
   H2O TEXT ICONS - Floating Labels
   ===================================================== */
.h2o-icon {
    position: absolute;
    font-size: 24px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 168, 181, 0.3);
    animation: h2oFloat 12s ease-in-out infinite;
}

.h2o-icon::before {
    content: 'H₂O';
}

.h2o-1 {
    top: 25%;
    left: 5%;
    font-size: 28px;
    animation-delay: 0s;
}

.h2o-2 {
    bottom: 20%;
    right: 8%;
    font-size: 22px;
    animation-delay: -6s;
}

@keyframes h2oFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.5;
    }
}

/* =====================================================
   DARK THEME VARIATIONS
   ===================================================== */
.water-cgi-bg-dark .water-bubble {
    background: radial-gradient(circle at 30% 30%,
            rgba(77, 208, 225, 0.4) 0%,
            rgba(0, 168, 181, 0.2) 50%,
            rgba(0, 131, 143, 0.1) 100%);
    box-shadow:
        inset -2px -2px 10px rgba(0, 168, 181, 0.3),
        inset 2px 2px 10px rgba(77, 208, 225, 0.4),
        0 0 30px rgba(0, 168, 181, 0.2);
}

.water-cgi-bg-dark .water-ripple {
    border-color: rgba(0, 168, 181, 0.4);
}

.water-cgi-bg-dark .h2o-icon {
    -webkit-text-stroke: 1px rgba(77, 208, 225, 0.4);
}

.water-cgi-bg-dark .water-molecule::before {
    background: rgba(0, 168, 181, 0.6);
}

.water-cgi-bg-dark .water-molecule::after {
    background: rgba(77, 208, 225, 0.5);
    box-shadow: 36px 0 0 rgba(77, 208, 225, 0.5);
}

/* =====================================================
   GLASS MORPHISM CARDS UPDATE
   ===================================================== */
.water-cgi-bg .trust-item,
.water-cgi-bg-light .service-preview-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.water-cgi-bg-dark .why-preview-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================================================
   WATER VFX EFFECTS - ABOUT PAGE (Different Style)
   ===================================================== */

/* VFX Layer Base */
.water-vfx-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.water-vortex-bg,
.water-stream-bg,
.water-depth-bg {
    position: relative;
    overflow: hidden;
}

.water-vortex-bg .container,
.water-stream-bg .container,
.water-depth-bg .container {
    position: relative;
    z-index: 1;
}

/* =====================================================
   VORTEX BACKGROUND - Swirling Water Effect
   ===================================================== */
.water-vortex-bg {
    background: linear-gradient(135deg, #e3f2fd 0%, #b3e5fc 30%, #81d4fa 70%, #4fc3f7 100%);
}

.water-vortex {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(0, 168, 181, 0.1) 60deg,
            transparent 120deg,
            rgba(77, 208, 225, 0.15) 180deg,
            transparent 240deg,
            rgba(0, 168, 181, 0.1) 300deg,
            transparent 360deg);
    border-radius: 50%;
    animation: vortexSpin 20s linear infinite;
    opacity: 0.5;
}

@keyframes vortexSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

/* Caustic Light Effects - Underwater Refraction */
.caustic-light {
    position: absolute;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    animation: causticMove 8s ease-in-out infinite;
    pointer-events: none;
}

.light-1 {
    width: 300px;
    height: 200px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.light-2 {
    width: 250px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: -3s;
}

.light-3 {
    width: 200px;
    height: 120px;
    bottom: 20%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes causticMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -20px) scale(1.2) rotate(5deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(-20px, 30px) scale(0.9) rotate(-3deg);
        opacity: 0.4;
    }

    75% {
        transform: translate(15px, 10px) scale(1.1) rotate(2deg);
        opacity: 0.6;
    }
}

/* Splash Particles */
.splash-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: splashBurst 4s ease-out infinite;
}

.splash-1 {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.splash-2 {
    top: 60%;
    right: 20%;
    animation-delay: -1.5s;
}

.splash-3 {
    bottom: 25%;
    left: 50%;
    animation-delay: -3s;
}

@keyframes splashBurst {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        transform: scale(3);
        opacity: 0.5;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Liquid Blobs - Morphing Shapes */
.liquid-blob {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.2) 0%, rgba(77, 208, 225, 0.15) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blobMorph 10s ease-in-out infinite;
}

.blob-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 5%;
    animation-delay: -5s;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%;
        transform: rotate(180deg) scale(0.95);
    }

    75% {
        border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* =====================================================
   STREAM BACKGROUND - Flowing Water Effect
   ===================================================== */
.water-stream-bg {
    background: linear-gradient(180deg, #0d2137 0%, #0a2540 50%, #0d3251 100%);
}

/* Water Streams */
.water-stream {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 168, 181, 0.1) 10%,
            rgba(77, 208, 225, 0.4) 50%,
            rgba(0, 168, 181, 0.1) 90%,
            transparent 100%);
    animation: streamFlow 5s linear infinite;
    border-radius: 3px;
}

.stream-1 {
    width: 40%;
    top: 25%;
    left: -40%;
    animation-duration: 4s;
}

.stream-2 {
    width: 30%;
    top: 50%;
    left: -30%;
    animation-duration: 5s;
    animation-delay: -2s;
}

.stream-3 {
    width: 50%;
    top: 75%;
    left: -50%;
    animation-duration: 6s;
    animation-delay: -3s;
}

@keyframes streamFlow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100vw + 100%));
    }
}

/* Droplet Shower */
.droplet-shower {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(77, 208, 225, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 30% 60%, rgba(0, 168, 181, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 50% 30%, rgba(77, 208, 225, 0.25) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, rgba(0, 168, 181, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 90% 40%, rgba(77, 208, 225, 0.3) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: showerFall 3s linear infinite;
}

@keyframes showerFall {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 100px;
    }
}

/* Mist Layer */
.mist-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(77, 208, 225, 0.05) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 168, 181, 0.08) 100%);
    animation: mistFloat 8s ease-in-out infinite;
}

@keyframes mistFloat {

    0%,
    100% {
        opacity: 0.5;
        transform: translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
}

/* Aqua Glow */
.aqua-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: aquaPulse 6s ease-in-out infinite;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 168, 181, 0.3);
    top: -100px;
    left: -50px;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(77, 208, 225, 0.25);
    bottom: -80px;
    right: -50px;
    animation-delay: -3s;
}

@keyframes aquaPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* =====================================================
   DEPTH BACKGROUND - Underwater Effect
   ===================================================== */
.water-depth-bg {
    background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 30%, #a5d6a7 70%, #81c784 100%);
}

/* Depth Gradient Overlay */
.depth-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.3) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 100, 80, 0.1) 100%);
}

/* Underwater Light Rays */
.underwater-ray {
    position: absolute;
    top: -20%;
    width: 100px;
    height: 150%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    transform-origin: top center;
    animation: rayWave 8s ease-in-out infinite;
}

.ray-1 {
    left: 15%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.ray-2 {
    left: 45%;
    transform: rotate(5deg);
    animation-delay: -2s;
}

.ray-3 {
    right: 20%;
    transform: rotate(15deg);
    animation-delay: -4s;
}

@keyframes rayWave {

    0%,
    100% {
        opacity: 0.3;
        transform: rotate(var(--ray-rotate, 0deg)) scaleX(1);
    }

    50% {
        opacity: 0.5;
        transform: rotate(var(--ray-rotate, 0deg)) scaleX(1.2);
    }
}

.ray-1 {
    --ray-rotate: -15deg;
}

.ray-2 {
    --ray-rotate: 5deg;
}

.ray-3 {
    --ray-rotate: 15deg;
}

/* Floating Debris - Organic Particles */
.floating-debris {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 100, 80, 0.3);
    border-radius: 50%;
    animation: debrisFloat 12s ease-in-out infinite;
}

.debris-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.debris-2 {
    top: 70%;
    right: 25%;
    animation-delay: -6s;
}

@keyframes debrisFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(30px, -50px) scale(1.5);
        opacity: 0.7;
    }

    50% {
        transform: translate(-20px, -80px) scale(1);
        opacity: 0.5;
    }

    75% {
        transform: translate(10px, -40px) scale(1.3);
        opacity: 0.6;
    }
}

/* =====================================================
   GLASS CARDS FOR VFX BACKGROUNDS
   ===================================================== */
.water-vortex-bg .about-content,
.water-vortex-bg .about-visual {
    position: relative;
    z-index: 1;
}

.water-stream-bg .mv-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.water-stream-bg .mv-card h3 {
    color: var(--color-white);
}

.water-stream-bg .mv-card p {
    color: var(--color-gray-300);
}

.water-stream-bg .mv-icon {
    background: rgba(0, 168, 181, 0.3);
}

.water-stream-bg .mv-icon svg {
    color: var(--color-accent-light);
}

.water-depth-bg .why-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* =====================================================
   SPECTACULAR CGI VFX - COMMON OVERRIDES (REVERTED)
   ===================================================== */
.water-holographic-bg .about-content,
.water-aurora-bg .mv-card,
.water-matrix-bg .why-card {
    color: var(--color-white);
}

.water-holographic-bg .section-title,
.water-aurora-bg .section-title,
.water-matrix-bg .section-title {
    color: var(--color-white);
}

.water-holographic-bg .about-text {
    color: var(--color-gray-300);
}

.water-holographic-bg .stat-value,
.water-holographic-bg .stat-label {
    color: var(--color-white);
}

/* Container for 4 stat cards in 2x2 grid */
.water-holographic-bg .about-image-wrapper {
    position: relative;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removed dark container - cards are now free-standing */
.water-holographic-bg .about-image-bg {
    display: none;
}

.water-holographic-bg .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    width: 70%;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.water-holographic-bg .stat-card {
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.15) 0%, rgba(0, 255, 200, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 20px rgba(0, 168, 181, 0.15),
        inset 0 0 30px rgba(0, 255, 200, 0.03);
}

/* Glowing border effect on hover */
.water-holographic-bg .stat-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
            rgba(0, 255, 200, 0.5),
            rgba(0, 168, 181, 0.2),
            rgba(0, 255, 200, 0.5),
            rgba(0, 168, 181, 0.2));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: stat-glow-rotate 4s linear infinite;
}

.water-holographic-bg .stat-card:hover::before {
    opacity: 1;
}

/* Shimmer effect */
.water-holographic-bg .stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.water-holographic-bg .stat-card:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.water-holographic-bg .stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 200, 0.6);
    box-shadow:
        0 15px 40px rgba(0, 168, 181, 0.3),
        0 0 50px rgba(0, 255, 200, 0.15),
        inset 0 0 40px rgba(0, 255, 200, 0.05);
}

/* Icon container with glow */
.water-holographic-bg .stat-card i,
.water-holographic-bg .stat-card svg {
    width: 48px;
    height: 48px;
    color: #00FFC8;
    margin-bottom: var(--space-2);
    filter: drop-shadow(0 0 10px rgba(0, 255, 200, 0.5));
    transition: all 0.3s ease;
}

.water-holographic-bg .stat-card:hover i,
.water-holographic-bg .stat-card:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.8));
}

.water-holographic-bg .stat-value {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #00FFC8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 200, 0.3);
}

.water-holographic-bg .stat-label {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
    color: var(--color-gray-300);
    transition: color 0.3s ease;
}

.water-holographic-bg .stat-card:hover .stat-label {
    color: #00FFC8;
}

/* Animated glow rotation */
@keyframes stat-glow-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.water-aurora-bg .mv-card h3,
.water-aurora-bg .mv-card p {
    color: var(--color-white);
}

.water-matrix-bg .why-card .why-title,
.water-matrix-bg .why-card .why-description {
    color: var(--color-white);
}


/* =====================================================
   SPECTACULAR VFX & CGI EFFECTS - PREMIUM ANIMATIONS
   ===================================================== */

/* VFX Layer */
.vfx-spectacular-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* =====================================================
   HOLOGRAPHIC BACKGROUND - 3D Water Sphere
   ===================================================== */
.water-holographic-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a192f 0%, #0d2847 30%, #1a3a5c 70%, #0a192f 100%);
}

.water-holographic-bg .container {
    position: relative;
    z-index: 1;
}

/* 3D Holographic Water Sphere */
.holo-water-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    perspective: 1000px;
}

.sphere-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 50%;
}

.ring-x {
    border-color: rgba(0, 168, 181, 0.6);
    animation: rotateX 8s linear infinite;
}

.ring-y {
    border-color: rgba(77, 208, 225, 0.5);
    animation: rotateY 10s linear infinite;
}

.ring-z {
    border-color: rgba(0, 255, 200, 0.4);
    animation: rotateZ 12s linear infinite;
}

@keyframes rotateX {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(180deg);
    }
}

@keyframes rotateY {
    from {
        transform: rotateY(0deg) rotateZ(0deg);
    }

    to {
        transform: rotateY(360deg) rotateZ(180deg);
    }
}

@keyframes rotateZ {
    from {
        transform: rotateZ(0deg) rotateX(0deg);
    }

    to {
        transform: rotateZ(360deg) rotateX(180deg);
    }
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%,
            rgba(77, 208, 225, 0.8) 0%,
            rgba(0, 168, 181, 0.4) 40%,
            rgba(0, 100, 150, 0.2) 100%);
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(0, 168, 181, 0.6),
        0 0 120px rgba(0, 168, 181, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 60px rgba(0, 168, 181, 0.6), 0 0 120px rgba(0, 168, 181, 0.4);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 80px rgba(0, 168, 181, 0.8), 0 0 160px rgba(0, 168, 181, 0.5);
    }
}

/* Orbiting Particles */
.sphere-particles {
    position: absolute;
    inset: 0;
    animation: orbitParticles 15s linear infinite;
}

.sphere-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #4DD0E1;
    border-radius: 50%;
    box-shadow: 0 0 20px #00A8B5, 0 0 40px #00A8B5;
}

.sphere-particles span:nth-child(1) {
    top: 10%;
    left: 50%;
    animation: particleGlow 2s ease-in-out infinite;
}

.sphere-particles span:nth-child(2) {
    top: 30%;
    left: 10%;
    animation: particleGlow 2s ease-in-out infinite 0.2s;
}

.sphere-particles span:nth-child(3) {
    top: 50%;
    left: 90%;
    animation: particleGlow 2s ease-in-out infinite 0.4s;
}

.sphere-particles span:nth-child(4) {
    top: 70%;
    left: 20%;
    animation: particleGlow 2s ease-in-out infinite 0.6s;
}

.sphere-particles span:nth-child(5) {
    top: 90%;
    left: 60%;
    animation: particleGlow 2s ease-in-out infinite 0.8s;
}

.sphere-particles span:nth-child(6) {
    top: 20%;
    right: 20%;
    animation: particleGlow 2s ease-in-out infinite 1s;
}

.sphere-particles span:nth-child(7) {
    top: 40%;
    right: 10%;
    animation: particleGlow 2s ease-in-out infinite 1.2s;
}

.sphere-particles span:nth-child(8) {
    top: 60%;
    left: 30%;
    animation: particleGlow 2s ease-in-out infinite 1.4s;
}

.sphere-particles span:nth-child(9) {
    top: 80%;
    left: 70%;
    animation: particleGlow 2s ease-in-out infinite 1.6s;
}

.sphere-particles span:nth-child(10) {
    top: 15%;
    left: 75%;
    animation: particleGlow 2s ease-in-out infinite 1.8s;
}

@keyframes orbitParticles {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes particleGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Neon Water Lines */
.neon-water-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 168, 181, 0.3),
            rgba(0, 255, 200, 0.8),
            rgba(0, 168, 181, 0.3),
            transparent);
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.5), 0 0 20px rgba(0, 168, 181, 0.3);
    animation: neonLineFlow 4s linear infinite;
}

.line-a {
    width: 300px;
    top: 20%;
    left: -300px;
    animation-delay: 0s;
}

.line-b {
    width: 200px;
    top: 50%;
    left: -200px;
    animation-delay: -1.5s;
}

.line-c {
    width: 250px;
    top: 80%;
    left: -250px;
    animation-delay: -3s;
}

@keyframes neonLineFlow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100vw + 100%));
    }
}

/* Holographic Drops */
.holo-drop {
    position: absolute;
    width: 40px;
    height: 60px;
    animation: holoDrop 6s ease-in-out infinite;
}

.drop-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 255, 200, 0.6) 0%,
            rgba(0, 168, 181, 0.3) 50%,
            transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow:
        0 0 30px rgba(0, 255, 200, 0.4),
        inset 0 -10px 20px rgba(0, 168, 181, 0.3);
    animation: dropGlow 2s ease-in-out infinite;
}

.drop-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.drop-2 {
    top: 60%;
    left: 5%;
    animation-delay: -1.5s;
}

.drop-3 {
    top: 30%;
    right: 5%;
    animation-delay: -3s;
}

.drop-4 {
    top: 75%;
    right: 15%;
    animation-delay: -4.5s;
}

@keyframes holoDrop {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 1;
    }
}

@keyframes dropGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 255, 200, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 255, 200, 0.8), 0 0 80px rgba(0, 168, 181, 0.5);
    }
}

/* Energy Waves */
.energy-wave {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 255, 200, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: energyExpand 4s ease-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: -1.3s;
}

.wave-3 {
    animation-delay: -2.6s;
}

@keyframes energyExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 4px;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        border-width: 1px;
    }
}

/* Glowing Particles */
.glow-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00FFC8;
    border-radius: 50%;
    box-shadow: 0 0 15px #00FFC8, 0 0 30px #00A8B5;
    animation: floatParticle 8s ease-in-out infinite;
}

.gp-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.gp-2 {
    top: 30%;
    left: 80%;
    animation-delay: -1s;
}

.gp-3 {
    top: 70%;
    left: 15%;
    animation-delay: -2s;
}

.gp-4 {
    top: 85%;
    left: 60%;
    animation-delay: -3s;
}

.gp-5 {
    top: 45%;
    left: 40%;
    animation-delay: -4s;
}

.gp-6 {
    top: 20%;
    left: 65%;
    animation-delay: -5s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 1;
    }

    50% {
        transform: translate(-10px, -60px) scale(1);
        opacity: 0.8;
    }

    75% {
        transform: translate(30px, -30px) scale(1.3);
        opacity: 0.9;
    }
}

/* Cyber Grid */
.cyber-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 168, 181, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 181, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 40px;
    }
}

/* =====================================================
   AURORA BACKGROUND - Plasma Effects
   ===================================================== */
.water-aurora-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0d0d2b 0%, #1a1a4e 50%, #0d0d2b 100%);
}

.water-aurora-bg .container {
    position: relative;
    z-index: 1;
}

/* Plasma Aurora */
.plasma-aurora {
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 168, 181, 0.2),
            rgba(0, 255, 200, 0.4),
            rgba(77, 208, 225, 0.3),
            transparent);
    filter: blur(40px);
    animation: auroraWave 8s ease-in-out infinite;
}

.aurora-1 {
    top: 10%;
    animation-delay: 0s;
}

.aurora-2 {
    top: 40%;
    animation-delay: -2.5s;
    opacity: 0.7;
}

.aurora-3 {
    top: 70%;
    animation-delay: -5s;
    opacity: 0.5;
}

@keyframes auroraWave {

    0%,
    100% {
        transform: translateX(-30%) skewX(-15deg);
        opacity: 0.5;
    }

    50% {
        transform: translateX(30%) skewX(15deg);
        opacity: 0.8;
    }
}

/* Water DNA Helix */
.water-dna-helix {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 300px;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-left-color: rgba(0, 168, 181, 0.6);
    border-right-color: rgba(0, 255, 200, 0.6);
    border-radius: 50%;
    animation: dnaRotate 6s linear infinite;
}

.strand-1 {
    animation-delay: 0s;
}

.strand-2 {
    animation-delay: -3s;
}

@keyframes dnaRotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.dna-connector {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: repeating-linear-gradient(180deg,
            rgba(0, 168, 181, 0.8) 0px,
            rgba(0, 168, 181, 0.8) 10px,
            transparent 10px,
            transparent 30px);
    transform: translateX(-50%);
    animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(0, 255, 200, 0.8),
            rgba(0, 168, 181, 0.4),
            transparent);
    box-shadow: 0 0 40px rgba(0, 168, 181, 0.5);
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-a {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.orb-b {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 25%;
    animation-delay: -2.5s;
}

.orb-c {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 25%;
    animation-delay: -5s;
}

.orb-d {
    width: 35px;
    height: 35px;
    top: 70%;
    right: 15%;
    animation-delay: -7.5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-15px, -50px) scale(0.9);
    }

    75% {
        transform: translate(10px, -20px) scale(1.05);
    }
}

/* Water Lightning */
.water-lightning {
    position: absolute;
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg,
            rgba(0, 255, 200, 0.9),
            rgba(0, 168, 181, 0.5),
            transparent);
    animation: lightningFlash 3s ease-in-out infinite;
}

.lightning-1 {
    top: 10%;
    left: 30%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.lightning-2 {
    top: 20%;
    right: 30%;
    transform: rotate(-10deg);
    animation-delay: -1.5s;
}

@keyframes lightningFlash {

    0%,
    90%,
    100% {
        opacity: 0;
    }

    92%,
    94%,
    96% {
        opacity: 1;
    }

    93%,
    95% {
        opacity: 0.3;
    }
}

/* Scanning Line */
.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 200, 0.8), transparent);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.5);
    animation: scanMove 4s linear infinite;
}

@keyframes scanMove {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* =====================================================
   MATRIX BACKGROUND - Tech Grid
   ===================================================== */
.water-matrix-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a1a2e 0%, #0d2540 50%, #0a1a2e 100%);
}

.water-matrix-bg .container {
    position: relative;
    z-index: 1;
}

/* Matrix Rain */
.matrix-rain {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
}

.rain-column {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(0, 168, 181, 0.1),
            rgba(0, 255, 200, 0.6),
            rgba(0, 168, 181, 0.3),
            transparent);
    animation: matrixFall 3s linear infinite;
}

.col-1 {
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.col-2 {
    animation-delay: -0.3s;
    animation-duration: 3s;
}

.col-3 {
    animation-delay: -0.6s;
    animation-duration: 2.8s;
}

.col-4 {
    animation-delay: -0.9s;
    animation-duration: 3.2s;
}

.col-5 {
    animation-delay: -1.2s;
    animation-duration: 2.6s;
}

.col-6 {
    animation-delay: -1.5s;
    animation-duration: 3.4s;
}

.col-7 {
    animation-delay: -1.8s;
    animation-duration: 2.9s;
}

.col-8 {
    animation-delay: -2.1s;
    animation-duration: 3.1s;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Glowing Hexagons */
.hex-grid {
    position: absolute;
    inset: 0;
}

.glow-hex {
    position: absolute;
    width: 80px;
    height: 90px;
    background: transparent;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid rgba(0, 168, 181, 0.3);
    animation: hexPulse 4s ease-in-out infinite;
}

.glow-hex::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(0, 168, 181, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hex-2 {
    top: 60%;
    left: 20%;
    animation-delay: -1s;
}

.hex-3 {
    top: 25%;
    right: 15%;
    animation-delay: -2s;
}

.hex-4 {
    top: 70%;
    right: 10%;
    animation-delay: -3s;
}

@keyframes hexPulse {

    0%,
    100% {
        border-color: rgba(0, 168, 181, 0.3);
        box-shadow: none;
    }

    50% {
        border-color: rgba(0, 255, 200, 0.8);
        box-shadow: 0 0 30px rgba(0, 255, 200, 0.4);
    }
}

/* Pulse Rings */
.pulse-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 2px solid rgba(0, 168, 181, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 3s ease-out infinite;
}

.pulse-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.pulse-2 {
    width: 100px;
    height: 100px;
    animation-delay: -1s;
}

.pulse-3 {
    width: 100px;
    height: 100px;
    animation-delay: -2s;
}

@keyframes pulseExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Corner Brackets */
.corner-bracket {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 168, 181, 0.6);
}

.corner-tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* =====================================================
   GLASS CARDS FOR VFX BACKGROUNDS
   ===================================================== */
.water-holographic-bg .about-content,
.water-holographic-bg .about-visual,
.water-holographic-bg .stat-card {
    position: relative;
    z-index: 1;
}

.water-holographic-bg .section-label {
    color: #00FFC8;
}

.water-holographic-bg .section-title {
    color: var(--color-white);
}

.water-holographic-bg .about-text {
    color: var(--color-gray-300);
}

.water-aurora-bg .mv-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 181, 0.4);
    box-shadow: 0 0 40px rgba(0, 168, 181, 0.15);
}

.water-aurora-bg .mv-card h3 {
    color: #00FFC8;
}

.water-aurora-bg .mv-card p {
    color: var(--color-gray-300);
}

.water-aurora-bg .mv-icon {
    background: rgba(0, 168, 181, 0.3);
    border: 1px solid rgba(0, 255, 200, 0.5);
}

.water-aurora-bg .mv-icon svg {
    color: #00FFC8;
}

.water-matrix-bg .section-label,
.water-matrix-bg .section-title {
    color: var(--color-white);
}

.water-matrix-bg .section-description {
    color: var(--color-gray-300);
}

.water-matrix-bg .why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 168, 181, 0.3);
}

.water-matrix-bg .why-card:hover {
    border-color: rgba(0, 255, 200, 0.5);
    box-shadow: 0 0 30px rgba(0, 168, 181, 0.2);
}

.water-matrix-bg .why-title {
    color: #00FFC8;
}

.water-matrix-bg .why-description {
    color: var(--color-gray-300);
}

.water-matrix-bg .why-number {
    color: rgba(0, 168, 181, 0.2);
}

.water-matrix-bg .why-icon {
    background: rgba(0, 168, 181, 0.2);
    border: 1px solid rgba(0, 255, 200, 0.3);
}

.water-matrix-bg .why-icon svg {
    color: #00FFC8;
}

/* =====================================================
   PRODUCTS PAGE STYLES
   ===================================================== */

/* Category Navigation Tabs */
.category-nav {
    background: var(--color-white);
    padding: var(--space-4) 0;
    position: sticky;
    top: 72px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.category-tabs {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    padding: var(--space-2) 0;
    -webkit-overflow-scrolling: touch;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-light);
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.category-tab:hover {
    background: var(--color-gray-100);
    color: var(--color-accent);
}

.category-tab.active {
    background: var(--gradient-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.category-tab svg {
    width: 20px;
    height: 20px;
}

/* Products Section */
.products-section {
    padding: var(--space-20) 0;
}

.products-section:nth-child(even) {
    background: var(--color-light);
}

.aquaculture-section {
    background: linear-gradient(180deg, #E8F5E9 0%, #F5F7FA 100%);
}

.fabrication-section {
    background: linear-gradient(180deg, #FFF3E0 0%, #F5F7FA 100%);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.components-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

/* Product Card */
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card.compact {
    border-radius: var(--radius-xl);
}

.product-card.compact .product-image {
    height: 180px;
}

.product-card.compact .product-content {
    padding: var(--space-5);
}

.product-card.compact .product-title {
    font-size: var(--font-size-lg);
}

/* Product Image */
.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-accent-light);
    gap: var(--space-2);
}

.product-image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.7;
}

.product-image-placeholder span {
    font-size: var(--font-size-sm);
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--gradient-accent);
    color: var(--color-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge.coming-soon {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
}

/* Product Content */
.product-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.product-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-accent);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-3);
}

.product-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

/* Product Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.feature-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Product Footer */
.product-footer {
    display: flex;
    gap: var(--space-3);
    margin-top: auto;
}

.product-footer .btn {
    flex: 1;
    justify-content: center;
}

/* Services Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.service-card-large {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: var(--space-6);
    transition: all var(--transition-base);
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
}

.service-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.service-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-accent);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-3);
}

.service-content>p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.service-benefits svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* Fabrication Section */
.fabrication-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.fabrication-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.fabrication-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.fabrication-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
}

.fabrication-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fabrication-content {
    padding: var(--space-6);
}

.fabrication-content h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.fabrication-content p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.fabrication-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.fabrication-specs span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--font-size-sm);
    color: var(--color-accent-dark);
    background: rgba(0, 168, 181, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.fabrication-specs svg {
    width: 14px;
    height: 14px;
}

.fabrication-cta {
    text-align: center;
    margin-top: var(--space-12);
    padding: var(--space-10);
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    color: var(--color-white);
}

.fabrication-cta h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
}

.fabrication-cta p {
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: var(--space-16) 0;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-content p {
    color: var(--color-gray-300);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Responsive for Products */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .service-card-large {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        justify-content: flex-start;
    }

    .fabrication-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   IMAGE LIGHTBOX / MODAL
   ===================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

/* Make product images clickable */
.product-image img,
.fabrication-image img {
    cursor: zoom-in;
}

/* =====================================================
   HIGHLIGHTED CLIENT LOGO ITEMS - ALL STYLED
   ===================================================== */
.logo-item {
    background: linear-gradient(135deg, #E8F4F8 0%, #D1E8F0 50%, #C5E0EB 100%);
    border: 2px solid var(--color-accent);
    box-shadow: 0 8px 25px rgba(0, 168, 181, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    transition: all 0.3s ease;
}

.logo-item span {
    color: #0A2540 !important;
    font-weight: var(--font-weight-bold) !important;
    font-size: var(--font-size-base);
    text-align: center;
}

.logo-item svg {
    color: var(--color-accent) !important;
    width: 48px;
    height: 48px;
}

.logo-item:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 168, 181, 0.3);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-4);
}

/* =====================================================
   SATISFACTION RATES WIDGET
   ===================================================== */
.stat-item.stat-satisfaction {
    flex: 1.5;
    min-width: 280px;
    padding: var(--space-5) var(--space-6);
}

.satisfaction-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.satisfaction-header svg {
    width: 24px;
    height: 24px;
    color: #4CAF50;
}

.satisfaction-header .stat-text {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.satisfaction-rates {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.rate-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.rate-label {
    font-size: var(--font-size-sm);
    color: var(--color-gray-300);
    min-width: 70px;
}

.rate-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.rate-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 20px;
    transition: width 1s ease-out;
}

.rate-value {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    min-width: 45px;
    text-align: right;
}

/* =====================================================
   STATS SOURCE NOTE
   ===================================================== */
.stats-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.stats-source {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-source svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.stats-source p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-300);
    font-style: italic;
    margin: 0;
}

/* =====================================================
   CURSOR WATER DROP TRAIL ANIMATION
   ===================================================== */
@keyframes waterDropFall {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateY(80px) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translateY(150px) scale(0.5);
    }
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

/* Make product images clickable */
.product-image img,
.fabrication-image img {
    cursor: zoom-in;
}

/* =====================================================
   HIGHLIGHTED CLIENT LOGO ITEMS - ALL STYLED
   ===================================================== */
.logo-item {
    background: linear-gradient(135deg, #E8F4F8 0%, #D1E8F0 50%, #C5E0EB 100%);
    border: 2px solid var(--color-accent);
    box-shadow: 0 8px 25px rgba(0, 168, 181, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    transition: all 0.3s ease;
}

.logo-item span {
    color: #0A2540 !important;
    font-weight: var(--font-weight-bold) !important;
    font-size: var(--font-size-base);
    text-align: center;
}

.logo-item svg {
    color: var(--color-accent) !important;
    width: 48px;
    height: 48px;
}

.logo-item:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 168, 181, 0.3);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-4);
}

/* =====================================================
   SATISFACTION RATES WIDGET
   ===================================================== */
.stat-item.stat-satisfaction {
    flex: 1.5;
    min-width: 280px;
    padding: var(--space-5) var(--space-6);
}

.satisfaction-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.satisfaction-header svg {
    width: 24px;
    height: 24px;
    color: #4CAF50;
}

.satisfaction-header .stat-text {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.satisfaction-rates {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.rate-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.rate-label {
    font-size: var(--font-size-sm);
    color: var(--color-gray-300);
    min-width: 70px;
}

.rate-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.rate-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 20px;
    transition: width 1s ease-out;
}

.rate-value {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    min-width: 45px;
    text-align: right;
}

/* =====================================================
   STATS SOURCE NOTE
   ===================================================== */
.stats-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.stats-source {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-source svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.stats-source p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-300);
    font-style: italic;
    margin: 0;
}

/* =====================================================
   CURSOR WATER DROP TRAIL ANIMATION
   ===================================================== */
@keyframes waterDropFall {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateY(80px) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translateY(150px) scale(0.5);
    }
}

/* Water Splash Click Effect Animations */
@keyframes rippleExpand {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes splashDrop {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    50% {
        opacity: 0.9;
        transform: translate(calc(var(--splash-x) * 0.7), calc(var(--splash-y) - 20px)) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translate(var(--splash-x), calc(var(--splash-y) + 40px)) scale(0.4);
    }
}

@keyframes centerSplash {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

/* =====================================================
   OCEAN DEPTH SCROLLBAR
   ===================================================== */
#ocean-depth-scrollbar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 60vh;
    width: 16px;
    z-index: 9998;
    display: flex;
}

.depth-track {
    position: relative;
    width: 8px;
    height: 100%;
    background: rgba(10, 37, 64, 0.3);
    border-radius: 20px;
    overflow: visible;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 168, 181, 0.3);
}

.depth-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg,
            hsl(195, 100%, 70%) 0%,
            hsl(200, 80%, 50%) 100%);
    border-radius: 20px;
    transition: height 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 168, 181, 0.5);
}

.depth-indicator {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    transition: top 0.1s ease-out;
    z-index: 2;
}

.depth-bubble {
    background: linear-gradient(135deg, #00A8B5 0%, #006d75 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 168, 181, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: bubbleFloat 2s ease-in-out infinite;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }
}

.depth-markers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 5px 0;
}

.depth-markers .marker {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #4DD0E1;
}

.depth-markers .marker:nth-child(1) {
    color: #87CEEB;
}

/* Surface - Light Blue */
.depth-markers .marker:nth-child(2) {
    color: #4DD0E1;
}

/* Sunlight - Cyan */
.depth-markers .marker:nth-child(3) {
    color: #00BCD4;
}

/* Twilight - Teal */
.depth-markers .marker:nth-child(4) {
    color: #00838F;
}

/* Midnight - Dark Teal */
.depth-markers .marker:nth-child(5) {
    color: #006064;
}

/* Abyssal - Deep */
.depth-markers .marker:nth-child(6) {
    color: #1A237E;
}

/* Hadal - Deep Blue */

.depth-markers .marker svg {
    width: 100%;
    height: 100%;
}

.depth-markers .marker:hover {
    opacity: 1;
    transform: scale(1.4);
    filter: drop-shadow(0 0 8px currentColor);
}

/* Bubbles inside the fill */
.depth-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.depth-bubbles .bubble {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: bubbleRise 3s ease-in-out infinite;
}

.depth-bubbles .b1 {
    left: 20%;
    animation-delay: 0s;
}

.depth-bubbles .b2 {
    left: 50%;
    animation-delay: 1s;
}

.depth-bubbles .b3 {
    left: 80%;
    animation-delay: 2s;
}

@keyframes bubbleRise {
    0% {
        bottom: 0;
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0;
        transform: scale(1);
    }
}

/* Hide default scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #ocean-depth-scrollbar {
        right: 10px;
        height: 40vh;
        width: 40px;
    }

    .depth-bubble {
        font-size: 9px;
        padding: 3px 6px;
    }

    .depth-markers .marker {
        width: 18px;
        height: 18px;
    }
}

/* =====================================================
   PREMIUM ANIMATED PARTICLE CANVAS BACKGROUND
   ===================================================== */

/* Canvas container for particle animation */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Animated Aurora Gradient Overlay */
.aurora-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 150% 50% at 50% -20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 40% at 20% 50%, rgba(0, 168, 181, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 80% 40% at 80% 50%, rgba(77, 208, 225, 0.05) 0%, transparent 50%);
    animation: auroraShift 20s ease-in-out infinite;
}

@keyframes auroraShift {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: hue-rotate(0deg);
    }

    25% {
        transform: translateY(-10px) scale(1.02);
        filter: hue-rotate(10deg);
    }

    50% {
        transform: translateY(0) scale(1);
        filter: hue-rotate(-10deg);
    }

    75% {
        transform: translateY(10px) scale(1.01);
        filter: hue-rotate(5deg);
    }
}

/* Animated Color Wave Overlay */
.color-wave-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(0, 168, 181, 0.03) 0%,
            rgba(77, 208, 225, 0.05) 25%,
            rgba(0, 136, 148, 0.04) 50%,
            rgba(77, 208, 225, 0.05) 75%,
            rgba(0, 168, 181, 0.03) 100%);
    animation: colorWave 30s linear infinite;
}

@keyframes colorWave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pulsing Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    animation: orbPulse1 12s ease-in-out infinite;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    top: 40%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 168, 181, 0.12) 0%, transparent 70%);
    animation: orbPulse2 15s ease-in-out infinite;
}

.glow-orb-3 {
    width: 350px;
    height: 350px;
    bottom: 15%;
    left: 30%;
    background: radial-gradient(circle, rgba(77, 208, 225, 0.1) 0%, transparent 70%);
    animation: orbPulse3 10s ease-in-out infinite;
}

@keyframes orbPulse1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translate(30px, 20px) scale(1.1);
        opacity: 0.8;
    }

    66% {
        transform: translate(-20px, -10px) scale(0.95);
        opacity: 0.5;
    }
}

@keyframes orbPulse2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-40px, 30px) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes orbPulse3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translate(20px, -25px) scale(1.05);
        opacity: 0.6;
    }

    75% {
        transform: translate(-30px, 15px) scale(1.1);
        opacity: 0.8;
    }
}

/* Animated Light Beams */
.light-beam {
    position: fixed;
    width: 2px;
    height: 100vh;
    background: linear-gradient(180deg,
            rgba(77, 208, 225, 0.3) 0%,
            rgba(0, 168, 181, 0.1) 40%,
            transparent 100%);
    pointer-events: none;
    z-index: -1;
    animation: lightBeam 8s ease-in-out infinite;
}

.light-beam:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
}

.light-beam:nth-child(2) {
    left: 35%;
    animation-delay: 2s;
}

.light-beam:nth-child(3) {
    left: 55%;
    animation-delay: 4s;
}

.light-beam:nth-child(4) {
    left: 75%;
    animation-delay: 6s;
}

.light-beam:nth-child(5) {
    left: 90%;
    animation-delay: 1s;
}

@keyframes lightBeam {

    0%,
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }

    20%,
    80% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 0.6;
        transform: translateY(10px);
    }
}

/* Floating Particle Styles */
.floating-particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }

    50% {
        transform: translateY(50vh) translateX(-15px) scale(1.1);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(20px) scale(1);
    }

    100% {
        transform: translateY(-10vh) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Deep Sea Shimmer Effect */
.shimmer-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(125deg,
            transparent 0%,
            rgba(77, 208, 225, 0.02) 25%,
            transparent 50%,
            rgba(0, 168, 181, 0.02) 75%,
            transparent 100%);
    background-size: 400% 400%;
    animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* =====================================================
   SCROLL SLIDE ANIMATIONS - LEFT & RIGHT
   ===================================================== */

/* Base state - hidden and positioned off-screen */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide from Left Animation */
.slide-from-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from Right Animation */
.slide-from-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Up Animation (default for animate-on-scroll) */
.animate-on-scroll:not(.slide-from-left):not(.slide-from-right) {
    transform: translateY(40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Staggered delay for child elements */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

/* Extra slide animations for section headers */
.section-header.slide-from-left,
.section-header.slide-from-right {
    transition-duration: 0.9s;
}

/* Product cards slide animations */
.product-card.slide-from-left,
.product-card.slide-from-right,
.service-preview-card.slide-from-left,
.service-preview-card.slide-from-right {
    transition-duration: 0.7s;
}

/* Trust items alternating animations */
.trust-item.slide-from-left,
.trust-item.slide-from-right {
    transition-duration: 0.6s;
}

/* Smooth hover effect on visible elements */
.animate-on-scroll.visible:hover {
    transform: translateY(-5px) translateX(0);
}

/* =====================================================
   PERFORMANCE STATS SECTION
   ===================================================== */
.performance-stats {
    padding: var(--space-12) 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.stat-box {
    background: rgba(15, 53, 85, 0.6);
    border: 1px solid rgba(0, 168, 181, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(0, 168, 181, 0.6);
    background: rgba(0, 168, 181, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 181, 0.2);
}

.stat-percent {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1;
}

.percent-sign {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-left: 2px;
}

.stat-box .stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: rgba(0, 168, 181, 0.1);
    border: 1px solid rgba(0, 168, 181, 0.3);
    border-radius: var(--radius-full);
    padding: var(--space-3) var(--space-5);
    width: fit-content;
    margin: 0 auto;
}

.stats-note i,
.stats-note svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.stats-note span {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
    .stats-row {
        gap: var(--space-4);
    }

    .stat-box {
        padding: var(--space-4) var(--space-6);
        min-width: 100px;
    }

    .stat-percent {
        font-size: 2rem;
    }

    .percent-sign {
        font-size: 1.2rem;
    }
}

/* =====================================================
   SCROLL SLIDE ANIMATIONS - LEFT & RIGHT
   ===================================================== */

/* Base state - hidden and positioned off-screen */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide from Left Animation */
.slide-from-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from Right Animation */
.slide-from-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Up Animation (default for animate-on-scroll) */
.animate-on-scroll:not(.slide-from-left):not(.slide-from-right) {
    transform: translateY(40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Staggered delay for child elements */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

/* Extra slide animations for section headers */
.section-header.slide-from-left,
.section-header.slide-from-right {
    transition-duration: 0.9s;
}

/* Product cards slide animations */
.product-card.slide-from-left,
.product-card.slide-from-right,
.service-preview-card.slide-from-left,
.service-preview-card.slide-from-right {
    transition-duration: 0.7s;
}

/* Trust items alternating animations */
.trust-item.slide-from-left,
.trust-item.slide-from-right {
    transition-duration: 0.6s;
}

/* Smooth hover effect on visible elements */
.animate-on-scroll.visible:hover {
    transform: translateY(-5px) translateX(0);
}

/* =====================================================
   PERFORMANCE STATS SECTION
   ===================================================== */
.performance-stats {
    padding: var(--space-12) 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.stat-box {
    background: rgba(15, 53, 85, 0.6);
    border: 1px solid rgba(0, 168, 181, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(0, 168, 181, 0.6);
    background: rgba(0, 168, 181, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 181, 0.2);
}

.stat-percent {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1;
}

.percent-sign {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-left: 2px;
}

.stat-box .stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: rgba(0, 168, 181, 0.1);
    border: 1px solid rgba(0, 168, 181, 0.3);
    border-radius: var(--radius-full);
    padding: var(--space-3) var(--space-5);
    width: fit-content;
    margin: 0 auto;
}

.stats-note i,
.stats-note svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.stats-note span {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
    .stats-row {
        gap: var(--space-4);
    }

    .stat-box {
        padding: var(--space-4) var(--space-6);
        min-width: 100px;
    }

    .stat-percent {
        font-size: 2rem;
    }

    .percent-sign {
        font-size: 1.2rem;
    }
}

/* =====================================================
   FOOTER PARTNER LOGOS
   ===================================================== */
.footer-logos {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}

.footer-logo-img {
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    padding: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 640px) {
    .footer-logos {
        gap: var(--space-3);
    }

    .footer-logo-img {
        max-width: 40px;
        max-height: 40px;
    }
}

/* =====================================================
   IMAGE LIGHTBOX MODAL
   ===================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    text-align: center;
    padding: var(--space-3) var(--space-6);
    background: rgba(0, 168, 181, 0.2);
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 168, 181, 0.3);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-close svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-caption {
        font-size: var(--font-size-sm);
        padding: var(--space-2) var(--space-4);
    }
}