:root {
    /* Brand Colors from Logo */
    --primary-navy: #1a3a5c;
    --primary-dark: #0a1628;
    --accent-teal: #2e7d8a;
    --accent-green: #2e8b57;
    --accent-light-green: #8bc34a;
    --gradient-green: linear-gradient(135deg, #2e8b57, #8bc34a);
    --gradient-blue: linear-gradient(135deg, #1a3a5c, #2e7d8a);
    --gradient-mixed: linear-gradient(135deg, #1a3a5c 0%, #2e7d8a 50%, #2e8b57 100%);
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --bg-cream: #f5f5dc;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 58, 92, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(26, 58, 92, 0.98);
    box-shadow: var(--shadow-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    border-radius: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-text span {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light-green);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--accent-light-green);
}

.nav-cta {
    background: var(--gradient-green);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 58, 92, 0.98);
    padding: 1rem;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

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

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(139, 195, 74, 0.2);
    color: var(--accent-light-green);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.4);
}

/* Page Header */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-mixed);
    position: relative;
    overflow: hidden;
    padding: 8rem 5% 4rem;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.03'%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");
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero {
    height: 95vh;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-mixed);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.03'%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");
    opacity: 0.5;
}

/* Hero Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.3), rgba(46, 139, 87, 0.2));
    filter: blur(1px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.4), transparent);
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: -3s;
    background: linear-gradient(135deg, rgba(0, 136, 169, 0.3), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -6s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: -9s;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.25), transparent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 5%;
    animation-delay: -12s;
    background: linear-gradient(135deg, rgba(0, 136, 169, 0.35), transparent);
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 25%;
    animation-delay: -15s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
}

.shape-7 {
    width: 70px;
    height: 70px;
    top: 15%;
    left: 45%;
    animation-delay: -18s;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.3), transparent);
}

.shape-8 {
    width: 55px;
    height: 55px;
    bottom: 40%;
    right: 40%;
    animation-delay: -21s;
    background: linear-gradient(135deg, rgba(0, 136, 169, 0.25), transparent);
    border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(20px, 10px) rotate(270deg) scale(1.05);
    }
}

/* Glowing Orbs */
.glow-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: pulse 8s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 136, 169, 0.35) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 139, 87, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h1 span {
    background: linear-gradient(135deg, #8bc34a, #a5d6a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--text-light);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Scrolling Text */
.scroll-text {
    background: var(--primary-navy);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-text-inner {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    padding: 0 3rem;
    font-weight: 500;
}

.scroll-text span::before {
    content: '◆';
    margin-right: 1.5rem;
    color: var(--accent-light-green);
}

/* Section Styles */
section {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

/* ============================================
   INTERACTIVE LAB-THEMED BACKGROUNDS
   ============================================ */

/* Floating Molecules Animation */
.molecules-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.molecule {
    position: absolute;
    opacity: 0.1;
    animation: floatMolecule 20s infinite ease-in-out;
}

.molecule svg {
    width: 100%;
    height: 100%;
}

.molecule-1 { width: 60px; height: 60px; top: 10%; left: 5%; animation-delay: 0s; }
.molecule-2 { width: 80px; height: 80px; top: 60%; left: 15%; animation-delay: -5s; }
.molecule-3 { width: 50px; height: 50px; top: 30%; right: 10%; animation-delay: -10s; }
.molecule-4 { width: 70px; height: 70px; bottom: 20%; right: 20%; animation-delay: -15s; }
.molecule-5 { width: 40px; height: 40px; top: 70%; left: 40%; animation-delay: -8s; }
.molecule-6 { width: 55px; height: 55px; top: 20%; left: 60%; animation-delay: -12s; }

@keyframes floatMolecule {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, 10px) rotate(180deg); }
    75% { transform: translate(15px, 5px) rotate(270deg); }
}

/* Circuit Pattern Background */
.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(46, 139, 87, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 139, 87, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.circuit-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(139, 195, 74, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 136, 169, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(46, 139, 87, 0.03) 0%, transparent 50%);
}

/* DNA Helix Animation */
.dna-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dna-strand {
    position: absolute;
    width: 100px;
    height: 200%;
    opacity: 0.05;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        var(--accent-green) 20px,
        var(--accent-green) 22px,
        transparent 22px,
        transparent 40px
    );
    animation: dnaRotate 15s linear infinite;
}

.dna-strand-left {
    left: 5%;
    animation: dnaRotate 10s linear infinite;
}

.dna-strand-right {
    right: 5%;
    animation: dnaRotate 10s linear infinite reverse;
}

@keyframes dnaRotate {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

/* Wave Animation Background */
.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232e8b57' fill-opacity='0.03' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: waveMove 20s linear infinite;
    opacity: 0.7;
}

.wave-bg svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    animation: waveMove 15s linear infinite;
}

.wave-bg svg path {
    fill: rgba(139, 195, 74, 0.03);
}

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

/* Hexagon Grid Background */
.hex-bg,
.hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%232e8b57' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Pulse Dots Background */
.pulse-dots-bg,
.pulse-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pulse-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulseDot 3s ease-in-out infinite;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.2); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.pulse-dot-1 { top: 15%; left: 10%; animation-delay: 0s; }
.pulse-dot-2 { top: 45%; left: 25%; animation-delay: -1s; }
.pulse-dot-3 { top: 75%; left: 15%; animation-delay: -2s; }
.pulse-dot-4 { top: 25%; right: 20%; animation-delay: -0.5s; }
.pulse-dot-5 { top: 55%; right: 10%; animation-delay: -1.5s; }
.pulse-dot-6 { top: 85%; right: 25%; animation-delay: -2.5s; }

/* Beaker Bubbles Animation */
.bubbles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-green);
    opacity: 0.1;
    animation: riseBubble linear infinite;
}

.bubble-1 { width: 20px; height: 20px; left: 10%; animation-duration: 12s; background: var(--accent-green); }
.bubble-2 { width: 15px; height: 15px; left: 25%; animation-duration: 10s; animation-delay: -2s; background: var(--accent-teal); }
.bubble-3 { width: 25px; height: 25px; left: 45%; animation-duration: 14s; animation-delay: -4s; background: var(--accent-light-green); }
.bubble-4 { width: 18px; height: 18px; left: 65%; animation-duration: 11s; animation-delay: -6s; background: var(--accent-green); }
.bubble-5 { width: 22px; height: 22px; left: 85%; animation-duration: 13s; animation-delay: -8s; background: var(--accent-teal); }
.bubble-6 { width: 12px; height: 12px; left: 35%; animation-duration: 9s; animation-delay: -3s; background: var(--accent-light-green); }
.bubble-7 { width: 16px; height: 16px; left: 75%; animation-duration: 15s; animation-delay: -5s; background: var(--accent-green); }

@keyframes riseBubble {
    0% { bottom: -50px; opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { bottom: 100%; opacity: 0; }
}

/* Spectrum Lines Background */
.spectrum-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.spectrum-line {
    position: absolute;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to top, var(--accent-green), var(--accent-teal), transparent);
    opacity: 0.08;
    animation: spectrumPulse 4s ease-in-out infinite;
}

@keyframes spectrumPulse {
    0%, 100% { opacity: 0.05; transform: scaleY(0.7); }
    50% { opacity: 0.12; transform: scaleY(1); }
}

.spectrum-line-1 { top: 20%; width: 100px; background: linear-gradient(90deg, transparent, var(--accent-green), transparent); animation-delay: 0s; }
.spectrum-line-2 { top: 40%; width: 150px; background: linear-gradient(90deg, transparent, var(--accent-teal), transparent); animation-delay: -2s; }
.spectrum-line-3 { top: 60%; width: 120px; background: linear-gradient(90deg, transparent, var(--accent-light-green), transparent); animation-delay: -4s; }
.spectrum-line-4 { top: 80%; width: 80px; background: linear-gradient(90deg, transparent, var(--primary-navy), transparent); animation-delay: -6s; }

@keyframes spectrumMove {
    0% { left: -200px; }
    100% { left: 100%; }
}

/* Ensure content stays above backgrounds */
.section-header,
.industries-grid,
.about-grid,
.vmv-grid,
.products-grid,
.services-grid,
.values-grid,
.brands-grid,
.contact-grid,
.logo-concept-grid,
.cta-content,
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: var(--accent-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Industries Section */
.industries {
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Flip Card Styles */
.flip-card {
    background: transparent;
    perspective: 1000px;
    height: 320px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    animation: flipHint 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes flipHint {
    0%, 85%, 100% {
        transform: rotateY(0deg);
    }
    90% {
        transform: rotateY(15deg);
    }
    95% {
        transform: rotateY(-5deg);
    }
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    animation: none;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-card-front {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.flip-card-back {
    background: var(--gradient-mixed);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.flip-card-back h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.flip-card-back p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.flip-card-back ul li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flip-card-back ul li::before {
    content: '✓';
    color: #8bc34a;
    font-weight: bold;
}

.flip-card-back .flip-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.flip-card-back .flip-cta a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.flip-card-back .flip-cta a:hover {
    gap: 1rem;
}

.flip-card .industry-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.flip-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.flip-card-front p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.flip-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-green);
    border-radius: 20px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-green);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-feature span {
    width: 25px;
    height: 25px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

/* Vision Mission Values */
.vmv {
    background: var(--gradient-mixed);
    position: relative;
    overflow: hidden;
}

.vmv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.03'%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");
}

.vmv .section-header h2,
.vmv .section-header p {
    color: white;
}

.vmv .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vmv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.vmv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vmv-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Products Section */
.products {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-mixed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-design {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.product-card:hover .product-icon-design {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.product-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.product-image-analytical {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e7d8a 60%, #2e8b57 100%);
}

.product-image-materials {
    background: linear-gradient(135deg, #2e7d8a 0%, #2e8b57 60%, #8bc34a 100%);
}

.product-image-testing {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e5a7c 60%, #2e7d8a 100%);
}

.product-image-industrial {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 60%, #2e7d8a 100%);
}

.product-image-life {
    background: linear-gradient(135deg, #2e8b57 0%, #3d9970 50%, #8bc34a 100%);
}

.product-image-essentials {
    background: linear-gradient(135deg, #2e7d8a 0%, #1a3a5c 50%, #2e8b57 100%);
}

/* Animated floating effect for SVG icons */
@keyframes floatIcon {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-8px);
    }
}

.product-card:hover .product-icon-design {
    animation: floatIcon 2s ease-in-out infinite;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.product-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-list li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
}

.product-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 1rem;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-column h3 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-column h3 span {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.service-info h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Brands Section */
.brands {
    background: var(--bg-light);
    padding: 4rem 5%;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-item {
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand-item img {
    height: 60px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

/* Core Values */
.values {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    padding: 2rem;
    border-left: 4px solid var(--accent-green);
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(46, 139, 87, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

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

/* CTA Section */
.cta {
    background: var(--gradient-mixed);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

/* CTA Interactive Animation */
.cta .hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cta #ctaParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta .floating-shapes .shape {
    opacity: 0.5;
}

.cta .glow-orbs .orb {
    opacity: 0.4;
}

.cta .orb-1 {
    width: 250px;
    height: 250px;
    top: -15%;
    left: -5%;
}

.cta .orb-2 {
    width: 200px;
    height: 200px;
    bottom: -15%;
    right: -5%;
}

.cta .orb-3 {
    width: 180px;
    height: 180px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-navy);
}

.cta .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-muted);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.4);
}

/* Logo Concept Section */
.logo-concept {
    background: white;
}

.logo-concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-image {
    text-align: center;
}

.logo-image img {
    max-width: 400px;
    width: 100%;
}

.logo-explanation h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.logo-pillar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-mixed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pillar-info h4 {
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.pillar-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-about .logo {
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-grid,
    .services-grid,
    .contact-grid,
    .logo-concept-grid {
        grid-template-columns: 1fr;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-header {
        padding-top: 120px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
