/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors */
    --primary: #005461;
    --primary-light: #007a8c;
    --primary-dark: #003d47;

    /* Accent Colors (Light Mode) */
    --accent: #4a7c10;
    --accent-hover: #3d6a0d;
    --accent-rgb: 74, 124, 16;

    /* Light Mode Backgrounds */
    --bg-primary: #F0F0DB;
    --bg-secondary: #e8e8cc;
    --bg-tertiary: #ddddc5;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;

    /* Glass Effects - Higher opacity for text clarity */
    --glass-bg: rgba(240, 240, 219, 0.85);
    --glass-bg-solid: rgba(240, 240, 219, 0.98);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(0, 84, 97, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(74, 124, 16, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-theme: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Z-Index Scale */
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-overlay: 400;
    --z-modal: 500;
    --z-toast: 600;
    
    /* Container */
    --container-max: 1600px;
    --container-padding: 2rem;
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
    /* Dark Mode Backgrounds */
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #242424;
    
    /* Dark Mode Accent */
    --accent: #E4FF30;
    --accent-hover: #d4f020;
    --accent-rgb: 228, 255, 48;
    
    /* Text Colors */
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    /* Glass Effects - Higher opacity for text clarity */
    --glass-bg: rgba(30, 30, 30, 0.88);
    --glass-bg-solid: rgba(30, 30, 30, 0.98);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(228, 255, 48, 0.2);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-theme), color var(--transition-theme);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

[data-theme="dark"] a {
    color: var(--accent);
}

[data-theme="dark"] a:hover {
    color: var(--accent-hover);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

address {
    font-style: normal;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-md);
    z-index: var(--z-toast);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--spacing-md);
    color: var(--bg-primary);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.required {
    color: #e53e3e;
}

.section {
    padding: var(--spacing-4xl) 0;
    margin: var(--spacing-2xl) 2px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
}

[data-theme="dark"] .section {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0 auto;
}

/* ============================================
   GLASSMORPHISM COMPONENTS
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-theme);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
}

.glass-nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition-base), backdrop-filter var(--transition-base), border-color var(--transition-base);
}

.glass-nav.scrolled {
    background: var(--glass-bg-solid);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-accent {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.4);
}

.btn-accent:hover {
    background: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.5);
}

[data-theme="dark"] .btn-accent {
    color: #121212;
}

[data-theme="dark"] .btn-accent:hover {
    color: #121212;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary);
}

[data-theme="dark"] .btn-secondary {
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
    border-color: var(--primary);
}

[data-theme="dark"] .btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(228, 255, 48, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-text {
    transition: opacity var(--transition-fast);
}

.btn-loading {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.btn.loading .btn-text {
    opacity: 0;
}

.btn.loading .btn-loading {
    opacity: 1;
    transform: scale(1);
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

.spinner circle {
    stroke-dasharray: 60;
    stroke-dashoffset: 45;
    stroke-linecap: round;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--spacing-md) 0;
    transition: padding var(--transition-base), background-color var(--transition-theme);
}

.header.scrolled {
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #005461;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
}

.logo:hover {
    color: #007B8C;
}

[data-theme="dark"] .logo {
    color: #E4FF30;
}

[data-theme="dark"] .logo:hover {
    color: #E4FF30;
}

.logo-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--text-primary);
    padding: 4px;
    transition: border-color 0.3s ease;
}

.logo-light {
    display: block;
    border-color: #1a1a2e;
}

.logo-dark {
    display: none;
    border-color: #E4FF30;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 380px) {
    .logo-text {
        display: none;
    }
    
    .logo-icon {
        width: 44px;
        height: 44px;
    }
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--spacing-sm) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: inline-flex;
    }
}

.mobile-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 10000;
    position: relative;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: background var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: transform var(--transition-base);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Contact & Social */
.mobile-menu-contact {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: var(--bg-primary);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
        z-index: 9999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        padding: var(--spacing-3xl) var(--spacing-md);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-xs);
        padding: var(--spacing-lg) 0;
        margin-bottom: var(--spacing-xl);
    }

    .nav-link {
        font-size: 0.9375rem;
        font-weight: 500;
        padding: var(--spacing-md) var(--spacing-sm);
        text-align: left;
        position: relative;
        transition: color var(--transition-base);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: var(--spacing-sm);
        left: var(--spacing-sm);
        height: 2px;
        width: 0;
        background: var(--accent);
        transition: width var(--transition-base);
    }

    .nav-link:hover {
        color: var(--text-primary);
    }

    .nav-link:hover::after {
        width: calc(100% - var(--spacing-sm));
    }

    .nav-link.active {
        color: var(--text-primary);
    }

    .nav-link.active::after {
        width: calc(100% - var(--spacing-sm));
    }

    /* Mobile Menu Contact Info */
    .mobile-menu-contact {
        display: block;
        width: 100%;
        padding-top: var(--spacing-lg);
        border-top: 1px solid var(--glass-border);
    }

    .mobile-menu-contact h4 {
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        margin-bottom: var(--spacing-md);
        font-weight: 700;
        padding-left: var(--spacing-sm);
    }

    .mobile-contact-items {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        color: var(--text-secondary);
        font-size: 0.9375rem;
        transition: color var(--transition-fast);
        padding-left: var(--spacing-sm);
    }

    .mobile-contact-item:hover {
        color: var(--accent);
    }

    .mobile-contact-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: var(--accent);
    }

    /* Mobile Social Links */
    .mobile-social-links {
        display: flex;
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
    }

    .mobile-social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 2px solid var(--accent);
        border-radius: var(--radius-full);
        color: var(--accent);
        transition: all var(--transition-base);
    }

    .mobile-social-links a:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: #121212;
        transform: translateY(-2px);
    }

    [data-theme="dark"] .mobile-social-links a:hover {
        color: #121212;
    }

    .mobile-social-links svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
}

/* Hero Background Image Layer */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

/* Subtle zoom animation for depth */
@keyframes subtle-zoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Hero Background Overlay - ensures text readability and blends with animations */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(240, 240, 219, 0.85) 0%,
        rgba(240, 240, 219, 0.75) 50%,
        rgba(240, 240, 219, 0.85) 100%
    );
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Dark Mode Background Overlay */
[data-theme="dark"] .hero-bg-overlay {
    background: linear-gradient(
        135deg,
        rgba(18, 18, 18, 0.88) 0%,
        rgba(18, 18, 18, 0.80) 50%,
        rgba(18, 18, 18, 0.88) 100%
    );
}

/* Adjust animation layers to work with background */
.neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.6;
}

[data-theme="dark"] .neural-canvas {
    opacity: 0.4;
    mix-blend-mode: screen;
}

.thermal-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 84, 97, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 84, 97, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 3;
}

[data-theme="dark"] .thermal-grid {
    background-image: 
        linear-gradient(rgba(228, 255, 48, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(228, 255, 48, 0.03) 1px, transparent 1px);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 4;
    opacity: 0.7;
    animation: float 20s ease-in-out infinite;
}

[data-theme="dark"] .glow-orb {
    opacity: 0.5;
    mix-blend-mode: screen;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.glow-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    bottom: 10%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

[data-theme="dark"] .hero-title {
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: #2a2a2a;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

[data-theme="dark"] .hero-subtitle {
    color: var(--text-secondary);
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Uncomment when hero-stats are shown
.hero-cta {
    margin-bottom: var(--spacing-3xl);
}
*/

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    padding: var(--spacing-lg);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

[data-theme="dark"] .stat-value {
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    padding: var(--spacing-xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* .feature-card:hover {
    transform: translateY(-8px);
} */

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

/* Dark Mode: Accent background for service icons */
[data-theme="dark"] .feature-icon {
    background: var(--accent);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Dark Mode: Dark icon color for better contrast */
[data-theme="dark"] .feature-icon svg {
    color: #121212;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Section Feature Cards with Images */
.about-feature-card {
    padding: var(--spacing-2xl);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 84, 97, 0.15);
}

[data-theme="dark"] .about-feature-card:hover {
    box-shadow: 0 16px 48px rgba(228, 255, 48, 0.1);
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, rgba(74, 124, 16, 0.05), rgba(0, 84, 97, 0.05));
}

[data-theme="dark"] .about-image-wrapper {
    background: linear-gradient(135deg, rgba(228, 255, 48, 0.03), rgba(0, 84, 97, 0.08));
}

.about-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow), filter var(--transition-base);
    display: block;
}

.about-feature-card:hover .about-feature-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

[data-theme="dark"] .about-feature-card:hover .about-feature-image {
    filter: brightness(1.15) contrast(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(0, 84, 97, 0.1) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

[data-theme="dark"] .about-image-overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(228, 255, 48, 0.08) 100%
    );
}

.about-feature-card:hover .about-image-overlay {
    opacity: 1;
}

/* Responsive adjustments for About images */
@media (max-width: 768px) {
    .about-image-wrapper {
        height: 200px;
    }

    .about-feature-card {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .about-image-wrapper {
        height: 180px;
    }
}

/* Hero Background - Responsive Adjustments */
@media (max-width: 768px) {
    .hero-bg-image {
        transform: scale(1.1);
    }

    .hero-bg-overlay {
        background: linear-gradient(
            135deg,
            rgba(240, 240, 219, 0.72) 0%,
            rgba(240, 240, 219, 0.64) 50%,
            rgba(240, 240, 219, 0.72) 100%
        );
    }

    [data-theme="dark"] .hero-bg-overlay {
        background: linear-gradient(
            135deg,
            rgba(18, 18, 18, 0.90) 0%,
            rgba(18, 18, 18, 0.82) 50%,
            rgba(18, 18, 18, 0.90) 100%
        );
    }
}

@media (max-width: 480px) {
    .hero-bg-image {
        object-position: 65% center;
        transform: scale(1.15);
    }

    .hero-bg-overlay {
        background: linear-gradient(
            135deg,
            rgba(240, 240, 219, 0.75) 0%,
            rgba(240, 240, 219, 0.68) 50%,
            rgba(240, 240, 219, 0.75) 100%
        );
    }

    [data-theme="dark"] .hero-bg-overlay {
        background: linear-gradient(
            135deg,
            rgba(18, 18, 18, 0.92) 0%,
            rgba(18, 18, 18, 0.85) 50%,
            rgba(18, 18, 18, 0.92) 100%
        );
    }
}

/* Service Badges */
.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.tech-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 84, 97, 0.2);
}

[data-theme="dark"] .tech-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--bg-primary);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    position: relative;
}

/* Premium Process Section - Billion Dollar Design */
.premium-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-3xl);
    position: relative;
}

@media (max-width: 992px) {
    .premium-process-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
}

.premium-process-card {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: premiumFadeUp 0.8s ease-out forwards;
    background: var(--glass-bg);
    border-radius: 24px;
    padding: var(--spacing-lg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;

    /* 3D Layered Paper Effect - Multiple Shadows */
    box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.04),
        0 2px 2px rgba(0, 0, 0, 0.04),
        0 4px 4px rgba(0, 0, 0, 0.04),
        0 6px 8px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.05),
        0 16px 32px rgba(0, 0, 0, 0.05);

    /* Subtle paper texture with gradient */
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%),
        var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .premium-process-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
        var(--glass-bg);
    box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.15),
        0 2px 2px rgba(0, 0, 0, 0.15),
        0 4px 4px rgba(0, 0, 0, 0.15),
        0 6px 8px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-process-card:hover {
    transform: translateY(-16px) rotateX(1deg);
    box-shadow:
        0 2px 4px rgba(var(--accent-rgb), 0.08),
        0 4px 8px rgba(var(--accent-rgb), 0.08),
        0 8px 16px rgba(var(--accent-rgb), 0.08),
        0 12px 24px rgba(var(--accent-rgb), 0.1),
        0 16px 32px rgba(var(--accent-rgb), 0.12),
        0 24px 48px rgba(var(--accent-rgb), 0.15),
        0 32px 64px rgba(var(--accent-rgb), 0.18);
    border-color: rgba(var(--accent-rgb), 0.2);
}

[data-theme="dark"] .premium-process-card:hover {
    box-shadow:
        0 2px 4px rgba(228, 255, 48, 0.12),
        0 4px 8px rgba(228, 255, 48, 0.12),
        0 8px 16px rgba(228, 255, 48, 0.12),
        0 12px 24px rgba(228, 255, 48, 0.15),
        0 16px 32px rgba(228, 255, 48, 0.18),
        0 24px 48px rgba(228, 255, 48, 0.22),
        0 32px 64px rgba(228, 255, 48, 0.25);
    border-color: rgba(228, 255, 48, 0.2);
}

.premium-process-card:nth-child(1) { animation-delay: 0.1s; }
.premium-process-card:nth-child(2) { animation-delay: 0.25s; }
.premium-process-card:nth-child(3) { animation-delay: 0.4s; }
.premium-process-card:nth-child(4) { animation-delay: 0.55s; }

@keyframes premiumFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-process-visual {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.premium-process-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-process-card:hover .premium-process-image-wrapper {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 4px 8px rgba(var(--accent-rgb), 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .premium-process-card:hover .premium-process-image-wrapper {
    box-shadow:
        0 4px 8px rgba(228, 255, 48, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.15);
}

.premium-process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-process-card:hover .premium-process-image {
    transform: scale(1.08);
}

.premium-process-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 84, 97, 0.7) 0%,
        rgba(74, 124, 16, 0.6) 100%
    );
    opacity: 0.4;
    transition: opacity 0.4s ease;
    z-index: 1;
}

[data-theme="dark"] .premium-process-overlay {
    background: linear-gradient(
        135deg,
        rgba(228, 255, 48, 0.2) 0%,
        rgba(0, 84, 97, 0.3) 100%
    );
    opacity: 0.5;
}

.premium-process-card:hover .premium-process-overlay {
    opacity: 0.65;
}

[data-theme="dark"] .premium-process-card:hover .premium-process-overlay {
    opacity: 0.7;
}

.premium-process-number {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-process-card:hover .premium-process-number {
    transform: scale(1.15) rotate(5deg);
    background: rgba(var(--accent-rgb), 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 24px rgba(var(--accent-rgb), 0.4),
        0 0 40px rgba(var(--accent-rgb), 0.3);
}

[data-theme="dark"] .premium-process-number {
    background: rgba(228, 255, 48, 0.2);
    border-color: rgba(228, 255, 48, 0.4);
    color: #ffffff;
}

[data-theme="dark"] .premium-process-card:hover .premium-process-number {
    background: rgba(228, 255, 48, 0.95);
    border-color: rgba(228, 255, 48, 0.8);
    color: #121212;
    box-shadow:
        0 8px 24px rgba(228, 255, 48, 0.5),
        0 0 50px rgba(228, 255, 48, 0.4);
}

.premium-process-content {
    padding: 0 var(--spacing-md);
}

.premium-process-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.premium-process-card:hover .premium-process-title {
    color: var(--accent);
}

.premium-process-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Add connecting lines between cards - Desktop only */
/* Vertical line */
.premium-process-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--accent) 20%,
        var(--accent) 80%,
        transparent 100%
    );
    transform: translateX(-50%);
    opacity: 0.15;
    z-index: 0;
}

/* Horizontal line */
.premium-process-grid::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent) 20%,
        var(--accent) 80%,
        transparent 100%
    );
    transform: translateY(-50%);
    opacity: 0.15;
    z-index: 0;
}

[data-theme="dark"] .premium-process-grid::before,
[data-theme="dark"] .premium-process-grid::after {
    opacity: 0.2;
}

@media (max-width: 992px) {
    .premium-process-grid::before,
    .premium-process-grid::after {
        display: none; /* Completely hide lines on mobile */
    }
}

/* Add pulse animation to active step */
@keyframes premiumPulse {
    0%, 100% {
        box-shadow:
            0 25px 50px rgba(var(--accent-rgb), 0.12),
            0 8px 20px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow:
            0 35px 70px rgba(var(--accent-rgb), 0.3),
            0 15px 30px rgba(var(--accent-rgb), 0.2);
    }
}

[data-theme="dark"] .premium-process-card:hover .premium-process-image-wrapper {
    animation: premiumPulse 2s ease-in-out infinite;
}

/* Tablet Adjustments */
@media (max-width: 768px) {
    .premium-process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: var(--spacing-md);
        right: var(--spacing-md);
    }

    .premium-process-content {
        padding: 0;
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .premium-process-grid {
        gap: var(--spacing-xl);
    }

    .premium-process-image-wrapper {
        aspect-ratio: 4 / 3;
    }

    .premium-process-title {
        font-size: 1.375rem;
    }

    .premium-process-description {
        font-size: 1rem;
    }
}

/* Premium Active Step Animation */
.premium-process-card.premium-step-active {
    transform: translateY(-20px) rotateX(2deg) scale(1.01);
    box-shadow:
        0 2px 4px rgba(var(--accent-rgb), 0.12),
        0 4px 8px rgba(var(--accent-rgb), 0.12),
        0 8px 16px rgba(var(--accent-rgb), 0.15),
        0 12px 24px rgba(var(--accent-rgb), 0.18),
        0 16px 32px rgba(var(--accent-rgb), 0.22),
        0 24px 48px rgba(var(--accent-rgb), 0.25),
        0 32px 64px rgba(var(--accent-rgb), 0.28);
    border-color: rgba(var(--accent-rgb), 0.3);
}

[data-theme="dark"] .premium-process-card.premium-step-active {
    box-shadow:
        0 2px 4px rgba(228, 255, 48, 0.15),
        0 4px 8px rgba(228, 255, 48, 0.15),
        0 8px 16px rgba(228, 255, 48, 0.18),
        0 12px 24px rgba(228, 255, 48, 0.22),
        0 16px 32px rgba(228, 255, 48, 0.25),
        0 24px 48px rgba(228, 255, 48, 0.28),
        0 32px 64px rgba(228, 255, 48, 0.32);
    border-color: rgba(228, 255, 48, 0.3);
}

.premium-process-card.premium-step-active .premium-process-image-wrapper {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 4px 8px rgba(var(--accent-rgb), 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 0 0 2px var(--accent);
    animation: premiumPulseActive 2s ease-in-out infinite;
}

[data-theme="dark"] .premium-process-card.premium-step-active .premium-process-image-wrapper {
    box-shadow:
        0 4px 8px rgba(228, 255, 48, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(228, 255, 48, 0.8);
}

@keyframes premiumPulseActive {
    0%, 100% {
        box-shadow:
            0 4px 8px rgba(var(--accent-rgb), 0.15),
            0 8px 16px rgba(0, 0, 0, 0.08),
            0 0 0 2px var(--accent);
    }
    50% {
        box-shadow:
            0 6px 12px rgba(var(--accent-rgb), 0.25),
            0 12px 24px rgba(var(--accent-rgb), 0.15),
            0 0 0 2px var(--accent),
            0 0 40px rgba(var(--accent-rgb), 0.2);
    }
}

.premium-process-card.premium-step-active .premium-process-image {
    transform: scale(1.1);
}

.premium-process-card.premium-step-active .premium-process-overlay {
    opacity: 0.75;
    background: linear-gradient(
        135deg,
        rgba(var(--accent-rgb), 0.6) 0%,
        rgba(0, 84, 97, 0.5) 100%
    );
}

[data-theme="dark"] .premium-process-card.premium-step-active .premium-process-overlay {
    background: linear-gradient(
        135deg,
        rgba(228, 255, 48, 0.4) 0%,
        rgba(0, 84, 97, 0.4) 100%
    );
}

.premium-process-card.premium-step-active .premium-process-number {
    transform: scale(1.3) rotate(10deg);
    background: var(--accent);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 12px 32px rgba(var(--accent-rgb), 0.6),
        0 0 60px rgba(var(--accent-rgb), 0.5);
}

[data-theme="dark"] .premium-process-card.premium-step-active .premium-process-number {
    background: rgba(228, 255, 48, 1);
    color: #121212;
    border-color: rgba(228, 255, 48, 1);
    box-shadow:
        0 12px 32px rgba(228, 255, 48, 0.7),
        0 0 80px rgba(228, 255, 48, 0.6);
}

.premium-process-card.premium-step-active .premium-process-title {
    color: var(--accent);
    transform: translateX(4px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-process-card.premium-step-active .premium-process-description {
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 992px) {
    .process-grid::before {
        display: none;
    }
}

.process-card {
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.6s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:nth-child(1) { animation-delay: 0.2s; }
.process-card:nth-child(2) { animation-delay: 0.4s; }
.process-card:nth-child(3) { animation-delay: 0.6s; }
.process-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.process-badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent);
    opacity: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

.process-card:nth-child(1) .process-badge::before { animation-delay: 0.2s; }
.process-card:nth-child(2) .process-badge::before { animation-delay: 0.4s; }
.process-card:nth-child(3) .process-badge::before { animation-delay: 0.6s; }
.process-card:nth-child(4) .process-badge::before { animation-delay: 0.8s; }

@keyframes badgePulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.process-card:hover .process-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.6);
}

[data-theme="dark"] .process-badge {
    color: #121212;
}

.process-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
}

.process-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.process-card:hover .process-icon svg {
    color: var(--accent);
}

/* Arrow connectors between cards */
.process-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 60px;
    right: -20px;
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0;
    animation: arrowFade 0.4s ease-out forwards;
    animation-delay: 1s;
}

.process-card:nth-child(1)::after { animation-delay: 0.7s; }
.process-card:nth-child(2)::after { animation-delay: 0.9s; }
.process-card:nth-child(3)::after { animation-delay: 1.1s; }

@keyframes arrowFade {
    to {
        opacity: 0.7;
    }
}

@media (max-width: 992px) {
    .process-card:not(:last-child)::after {
        display: none;
    }
}

[data-theme="dark"] .process-icon svg {
    color: var(--accent);
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.process-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Process Step Highlighting Animation */
.process-card.step-active {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.4);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--accent-rgb), 0.1));
    z-index: 10;
}

.process-card.step-active .process-badge {
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.8);
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.process-card.step-active .process-icon {
    transform: scale(1.2) rotate(5deg);
}

.process-card.step-active .process-icon svg {
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.6));
}

.process-card.step-active .process-title {
    color: var(--accent);
}

/* Smooth transition for all process cards */
.process-card {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-badge,
.process-icon {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-title {
    transition: color 0.4s ease;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof {
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.social-proof-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xl);
}

.logo-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: var(--spacing-3xl);
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(1);
    transition: opacity var(--transition-base), filter var(--transition-base);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    align-items: start;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.pricing-card {
    padding: var(--spacing-xl);
    position: relative;
    transition: transform var(--transition-base);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    z-index: 1;
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="dark"] .pricing-badge {
    color: #121212;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--glass-border);
}

.pricing-tier {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    margin-bottom: var(--spacing-sm);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

[data-theme="dark"] .price-amount {
    color: var(--accent);
}

.price-period {
    color: var(--text-muted);
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pricing-features {
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   FAQ SECTION
   ============================================ */
/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

/* FAQ Image Section */
.faq-image-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.faq-image-wrapper:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 255, 48, 0.2);
    box-shadow: 0 16px 48px rgba(0, 84, 97, 0.15);
}

.faq-feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow), filter var(--transition-base);
}

.faq-image-wrapper:hover .faq-feature-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.faq-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 18, 0.1) 0%,
        rgba(18, 18, 18, 0.7) 70%,
        rgba(18, 18, 18, 0.9) 100%
    );
    z-index: 1;
    transition: opacity var(--transition-base);
}

[data-theme="dark"] .faq-image-overlay {
    background: linear-gradient(
        180deg,
        rgba(18, 18, 18, 0.2) 0%,
        rgba(18, 18, 18, 0.8) 70%,
        rgba(18, 18, 18, 0.95) 100%
    );
}

.faq-image-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-2xl);
    color: #ffffff;
}

.faq-image-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-image-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .faq-image-wrapper {
        min-height: 400px;
    }
}

.faq-item {
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(228, 255, 48, 0.2);
    box-shadow: 0 12px 32px rgba(0, 84, 97, 0.12);
}

.faq-item[open]::before {
    opacity: 1;
}

.faq-item[open] {
    border-color: rgba(228, 255, 48, 0.3);
}

.faq-question {
    padding: var(--spacing-xl);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    list-style: none;
    transition: all var(--transition-base);
    user-select: none;
}

.faq-question:hover {
    color: var(--text-primary);
}

.faq-question span {
    flex: 1;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: all var(--transition-base);
    color: var(--text-muted);
    background: var(--glass-bg);
    padding: 4px;
    border-radius: var(--radius-md);
}

.faq-item:hover .faq-icon {
    color: var(--accent);
    background: rgba(228, 255, 48, 0.1);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
    background: rgba(228, 255, 48, 0.15);
}

.faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p {
    margin: 0;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--glass-border);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    padding: var(--spacing-2xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-primary);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 84, 97, 0.1);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(228, 255, 48, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent);
}

.checkbox-label a {
    text-decoration: underline;
}

.form-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.form-status.error {
    display: block;
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    padding: var(--spacing-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

/* Dark Mode: Accent background for contact icons */
[data-theme="dark"] .info-icon {
    background: var(--accent);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Dark Mode: Dark icon color for better contrast */
[data-theme="dark"] .info-icon svg {
    color: #121212;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.info-content a,
.info-content address {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.info-content a:hover {
    color: var(--primary);
}

[data-theme="dark"] .info-content a:hover {
    color: var(--accent);
}

/* Premium Contact Section Enhancements */
.premium-form {
    padding: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

.premium-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.8;
}

[data-theme="dark"] .premium-form::before {
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .premium-form {
        padding: var(--spacing-2xl);
    }
}

.form-group input,
.form-group textarea {
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
}

.form-group input:hover,
.form-group textarea:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 84, 97, 0.2);
}

[data-theme="dark"] .form-group input:hover,
[data-theme="dark"] .form-group textarea:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(228, 255, 48, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.required {
    color: #e53e3e;
    font-weight: 700;
}

/* Contact Info Enhancements */
.contact-info-header {
    margin-bottom: var(--spacing-xl);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.contact-info-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.premium-info-card {
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.premium-info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 84, 97, 0.15);
}

[data-theme="dark"] .premium-info-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(228, 255, 48, 0.1);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    transition: transform var(--transition-base);
}

.premium-info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.info-description {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.info-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-base);
}

[data-theme="dark"] .info-link {
    color: var(--accent);
}

.info-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

[data-theme="dark"] .info-link:hover {
    color: var(--accent-hover);
}

.info-content address {
    font-style: normal;
}

/* Trust Badge */
.contact-trust-badge {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(0, 84, 97, 0.05), rgba(74, 124, 16, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
    border: 1px solid rgba(0, 84, 97, 0.1);
}

[data-theme="dark"] .contact-trust-badge {
    background: linear-gradient(135deg, rgba(228, 255, 48, 0.03), rgba(0, 84, 97, 0.08));
    border-color: rgba(228, 255, 48, 0.1);
}

.contact-trust-badge svg {
    flex-shrink: 0;
}

/* Enhanced Submit Button for Contact Form */
.contact-form .btn-block {
    margin-top: var(--spacing-xl);
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 84, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form .btn-block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form .btn-block:hover::before {
    width: 300px;
    height: 300px;
}

[data-theme="dark"] .contact-form .btn-block {
    box-shadow: 0 4px 16px rgba(228, 255, 48, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-tertiary);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

[data-theme="dark"] .social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #121212;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-nav h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-modal);
    padding: var(--spacing-md);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.cookie-header h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.cookie-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent);
}

.cookie-option input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-label {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.cookie-label strong {
    font-size: 0.9375rem;
}

.cookie-label small {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.cookie-actions .btn {
    flex: 1;
    min-width: 140px;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.cookie-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    font-size: 0.8125rem;
}

.cookie-links a {
    color: var(--text-muted);
    text-decoration: underline;
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: var(--spacing-lg);
    width: 380px;
    max-width: calc(100vw - 2rem);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-base);
}

.chat-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 500px;
    max-height: calc(100vh - 180px);
    overflow: hidden;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar svg {
    width: 24px;
    height: 24px;
    color: white;
}

.chat-info {
    flex: 1;
}

.chat-info h4 {
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
}

.chat-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.chat-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: white;
    transition: background var(--transition-fast);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-close svg {
    width: 20px;
    height: 20px;
}

.chat-messages {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.chat-message {
    display: flex;
    gap: var(--spacing-sm);
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-content {
    max-width: 80%;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.chat-message.bot .message-content {
    background: var(--bg-tertiary);
    border-bottom-left-radius: var(--radius-sm);
}

.chat-message.user .message-content {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: var(--radius-sm);
}

.chat-message.typing .message-content {
    display: flex;
    gap: 4px;
    padding: var(--spacing-md);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-6px);
    }
}

.chat-suggestions {
    padding: 0 var(--spacing-md) var(--spacing-sm);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.suggestion-chip {
    padding: 0.375rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.suggestion-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.chat-input-form {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-top: 1px solid var(--glass-border);
}

.chat-input-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.chat-input-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-send {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: var(--radius-full);
    color: #1a1a1a;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .chat-send {
    color: #121212;
}

.chat-send:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.chat-send svg {
    width: 20px;
    height: 20px;
}

/* Chat Toggle Button */
.chat-toggle {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
    z-index: var(--z-overlay);
    transition: all var(--transition-base);
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    color: #1a1a1a;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

[data-theme="dark"] .chat-toggle svg {
    color: #121212;
}

.chat-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

.chat-toggle.active .chat-icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.chat-toggle.active .chat-icon-close {
    opacity: 1;
    transform: rotate(0);
}

.chat-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e53e3e;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast);
}

.chat-notification.hidden {
    transform: scale(0);
}

/* ============================================
   ANIMATIONS
   ============================================ */
/* Scroll Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-30px);
}

[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(30px);
}

[data-reveal="right"].revealed {
    transform: translateX(0);
}

[data-reveal="scale"] {
    transform: scale(0.9);
}

[data-reveal="scale"].revealed {
    transform: scale(1);
}

/* Stagger Animation */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
}

[data-stagger].revealed > * {
    animation: staggerIn 0.5s ease forwards;
}

[data-stagger].revealed > *:nth-child(1) { animation-delay: 0s; }
[data-stagger].revealed > *:nth-child(2) { animation-delay: 0.1s; }
[data-stagger].revealed > *:nth-child(3) { animation-delay: 0.2s; }
[data-stagger].revealed > *:nth-child(4) { animation-delay: 0.3s; }
[data-stagger].revealed > *:nth-child(5) { animation-delay: 0.4s; }
[data-stagger].revealed > *:nth-child(6) { animation-delay: 0.5s; }

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Animation */
.counting {
    transition: none;
}

/* ============================================
   PREMIUM UI/UX ENHANCEMENTS
   ============================================ */

/* Enhanced Smooth Reveal Animations */
[data-reveal] {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient Text Effects */
.text-gradient-enhanced {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: var(--primary); /* Fallback for browsers that don't support background-clip */
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Card Gradient Overlay on Hover - Subtle for Text Clarity */
.glass-card {
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(var(--accent-rgb), 0.015) 0%,
        transparent 50%,
        rgba(0, 84, 97, 0.015) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 0.5;
}

/* Enhanced Card Hover Effects with 3D Depth */
.feature-card {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* .feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 84, 97, 0.2),
        0 10px 20px rgba(0, 84, 97, 0.1),
        0 0 0 1px rgba(var(--accent-rgb), 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
} */

/* Animated Gradient Border on Card Hover */
/* .feature-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--primary),
        var(--accent)
    );
    background-size: 200% 200%;
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradient-rotate 3s linear infinite;
} */

/* .feature-card:hover::after {
    opacity: 1;
} */

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Icon Animations */
.feature-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
} */

.process-card {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 20px 48px rgba(var(--accent-rgb), 0.25),
        0 8px 16px rgba(0, 84, 97, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.process-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover .process-icon {
    transform: scale(1.15) rotate(5deg);
}

.process-card:hover .process-icon svg {
    filter: drop-shadow(0 4px 12px rgba(var(--accent-rgb), 0.5));
}

/* Button Gradient Enhancement - Shine Effect */
.btn-accent {
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent * {
    position: relative;
    z-index: 1;
}

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Focus States */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
    transition: outline-offset 0.2s ease;
}

/* Form Input Animations */
.form-group input:focus,
.form-group textarea:focus {
    transform: scale(1.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Animation for Background Elements */
@keyframes float-smooth {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.03);
    }
    50% {
        transform: translate(-15px, 15px) scale(0.97);
    }
    75% {
        transform: translate(-20px, -15px) scale(1.01);
    }
}

.glow-orb {
    animation: float-smooth 25s ease-in-out infinite;
}

.glow-orb-1 { animation-delay: 0s; }
.glow-orb-2 { animation-delay: -8s; }
.glow-orb-3 { animation-delay: -16s; }

/* Shimmer Loading Effect */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.shimmer {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--accent-rgb), 0.1) 50%,
        transparent 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Pulse Animation for Icons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.6);
    }
}

.feature-icon:hover {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Smooth Page Load Fade */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fade-in-up 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Stagger Enhanced */
[data-stagger].revealed > *:nth-child(7) { animation-delay: 0.6s; }
[data-stagger].revealed > *:nth-child(8) { animation-delay: 0.7s; }
[data-stagger].revealed > *:nth-child(9) { animation-delay: 0.8s; }

/* Section Title Underline Animation */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: var(--radius-full);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.revealed::after {
    width: 100%;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Link Hover Animation */
a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

[data-theme="dark"] .ripple {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   DARK MODE PREMIUM ENHANCEMENTS
   ============================================ */

/* Dark Mode - Enhanced Card Shadows */
/* [data-theme="dark"] .feature-card:hover {
    box-shadow:
        0 25px 50px rgba(228, 255, 48, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(228, 255, 48, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
} */

[data-theme="dark"] .process-card:hover {
    box-shadow:
        0 20px 48px rgba(228, 255, 48, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Dark Mode - Card Gradient Overlay - Very Subtle */
[data-theme="dark"] .glass-card::before {
    background: linear-gradient(135deg,
        rgba(228, 255, 48, 0.02) 0%,
        transparent 50%,
        rgba(0, 84, 97, 0.02) 100%);
}

/* Dark Mode - Gradient Text - Brighter for Visibility */
[data-theme="dark"] .text-gradient-enhanced {
    background: linear-gradient(135deg, #E4FF30, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E4FF30; /* Fallback */
    text-shadow: 0 0 20px rgba(228, 255, 48, 0.2);
}

/* Dark Mode - Button Shine Effect */
[data-theme="dark"] .btn-accent::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(228, 255, 48, 0.2),
        transparent
    );
}

/* Dark Mode - Card Animated Border */
[data-theme="dark"] .feature-card::after {
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--primary-light),
        var(--accent)
    );
}

/* Dark Mode - Icon Glow */
[data-theme="dark"] .feature-icon:hover {
    box-shadow: 0 0 30px rgba(228, 255, 48, 0.4);
}

[data-theme="dark"] .process-card:hover .process-icon svg {
    filter: drop-shadow(0 4px 12px rgba(228, 255, 48, 0.6));
}

/* Dark Mode - Section Title Underline */
[data-theme="dark"] .section-title::after {
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
}

/* Dark Mode - Shimmer Effect */
[data-theme="dark"] .shimmer {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(228, 255, 48, 0.15) 50%,
        transparent 100%
    );
}

/* Dark Mode - Form Focus Glow */
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(228, 255, 48, 0.15);
}

/* Dark Mode - Enhanced Glass Effect on Hover */
[data-theme="dark"] .glass-card:hover {
    background: rgba(30, 30, 30, 0.85);
    border-color: rgba(228, 255, 48, 0.2);
}

/* ============================================
   PREMIUM 3D SERVICES SHOWCASE
   ============================================ */

.premium-services {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 64px;
}

/* Premium 3D Card */
.premium-card {
    display: grid;
    grid-template-columns: 45% 55%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    height: 480px;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 84, 97, 0.03) 0%,
        transparent 50%,
        rgba(74, 124, 16, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 50px 100px rgba(0, 84, 97, 0.2),
        0 25px 50px rgba(0, 84, 97, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.premium-card:hover::before {
    opacity: 1;
}

/* Card Image Section */
.premium-card-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.premium-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover .premium-card-image img {
    transform: scale(1.1);
}

.premium-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 84, 97, 0.6) 0%,
        rgba(74, 124, 16, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-card:hover .premium-card-overlay {
    opacity: 1;
}

/* Card Content Section */
.premium-card-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.premium-card-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.premium-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, #005461, #4a7c10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.premium-card:hover .premium-card-title {
    transform: translateX(8px);
}

.premium-card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Premium Button */
.premium-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #005461, #4a7c10);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 84, 97, 0.3);
    align-self: flex-start;
    margin-top: 8px;
}

.premium-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.6s ease;
}

.premium-card-btn:hover::before {
    left: 100%;
}

.premium-card-btn:hover {
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 84, 97, 0.4);
}

.premium-card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.premium-card-btn:hover svg {
    transform: translateX(4px);
}

/* Dark Mode Styles */
[data-theme="dark"] .premium-card {
    background: rgba(30, 30, 30, 0.95);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .premium-card::before {
    background: linear-gradient(135deg,
        rgba(228, 255, 48, 0.05) 0%,
        transparent 50%,
        rgba(0, 217, 255, 0.05) 100%);
}

[data-theme="dark"] .premium-card:hover {
    box-shadow:
        0 50px 100px rgba(228, 255, 48, 0.25),
        0 25px 50px rgba(228, 255, 48, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .premium-card-overlay {
    background: linear-gradient(
        135deg,
        rgba(228, 255, 48, 0.3) 0%,
        rgba(0, 217, 255, 0.2) 100%
    );
}

[data-theme="dark"] .premium-card-title {
    background: linear-gradient(135deg, #E4FF30, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .premium-card-btn {
    background: linear-gradient(135deg, #E4FF30, #00D9FF);
    color: #000000;
    box-shadow: 0 8px 20px rgba(228, 255, 48, 0.3);
}

[data-theme="dark"] .premium-card-btn:hover {
    box-shadow: 0 12px 30px rgba(228, 255, 48, 0.4);
}

/* ============================================
   AI SOLUTIONS GRID SECTION
   ============================================ */

.solutions-grid-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-top: 64px;
}

/* Solution Card */
.solution-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    background: var(--glass-bg-solid);
    backdrop-filter: blur(20px);
    box-shadow:
        0px 20px 80px rgba(0, 84, 97, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 32px;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 84, 97, 0.1);
    min-height: 380px;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0px 30px 100px rgba(0, 84, 97, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Image Section */
.solution-card__img {
    width: 300px;
    min-width: 300px;
    flex-shrink: 0;
    height: 300px;
    /* 3D Layered Shadows for Depth */
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 84, 97, 0.08),
        0 16px 32px rgba(0, 84, 97, 0.1),
        0 32px 64px rgba(0, 84, 97, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transform: translateX(-70px);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, box-shadow;
}

.solution-card__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 84, 97, 0.3) 0%,
        rgba(74, 124, 16, 0.2) 100%);
    border-radius: 24px;
    opacity: 0.4;
    z-index: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Enhanced 3D Hover Effects */
.solution-card:hover .solution-card__img {
    transform: translateX(-70px) translateY(-8px) scale(1.02);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 84, 97, 0.12),
        0 24px 48px rgba(0, 84, 97, 0.15),
        0 48px 96px rgba(0, 84, 97, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.solution-card:hover .solution-card__img::after {
    opacity: 0.6;
}

.solution-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.solution-card:hover .solution-card__img img {
    transform: scale(1.1);
}

/* Content Section */
.solution-card__content {
    flex: 1;
    min-width: 0;
    padding-right: 4px;
    padding-left: 6px;
    margin-left: -40px;  /* Move content left to close gap from image transform */
}

.solution-card__code {
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.solution-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, #005461, #4a7c10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-card__title {
    transform: translateX(8px);
}

.solution-card__text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.solution-card__button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #005461, #4a7c10);
    padding: 12px 32px;
    border-radius: 50px;
    color: #ffffff;
    box-shadow: 0px 10px 25px rgba(0, 84, 97, 0.3);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-card__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.6s ease;
}

.solution-card__button:hover::before {
    left: 100%;
}

.solution-card__button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0px 14px 35px rgba(0, 84, 97, 0.4);
}

/* Dark Mode Styles */
[data-theme="dark"] .solution-card {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(228, 255, 48, 0.15);
    box-shadow:
        0px 20px 80px rgba(0, 0, 0, 0.5),
        0 10px 40px rgba(228, 255, 48, 0.1);
}

[data-theme="dark"] .solution-card:hover {
    box-shadow:
        0px 30px 100px rgba(228, 255, 48, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .solution-card__img {
    /* 3D Layered Shadows for Dark Mode */
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(228, 255, 48, 0.08),
        0 16px 32px rgba(228, 255, 48, 0.1),
        0 32px 64px rgba(228, 255, 48, 0.12),
        inset 0 1px 0 rgba(228, 255, 48, 0.08);
}

[data-theme="dark"] .solution-card:hover .solution-card__img {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(228, 255, 48, 0.12),
        0 24px 48px rgba(228, 255, 48, 0.15),
        0 48px 96px rgba(228, 255, 48, 0.1),
        inset 0 1px 0 rgba(228, 255, 48, 0.1);
}

[data-theme="dark"] .solution-card__img::after {
    background: linear-gradient(135deg,
        rgba(228, 255, 48, 0.2) 0%,
        rgba(0, 217, 255, 0.15) 100%);
}

[data-theme="dark"] .solution-card:hover .solution-card__img::after {
    opacity: 0.6;
}

[data-theme="dark"] .solution-card__code {
    color: #E4FF30;
}

[data-theme="dark"] .solution-card__title {
    background: linear-gradient(135deg, #E4FF30, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .solution-card__button {
    background: linear-gradient(135deg, #E4FF30, #00D9FF);
    color: #000000;
    box-shadow: 0px 10px 25px rgba(228, 255, 48, 0.3);
}

[data-theme="dark"] .solution-card__button:hover {
    box-shadow: 0px 14px 35px rgba(228, 255, 48, 0.45);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-3xl) 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero {
        min-height: 100svh;
        padding: calc(80px + var(--spacing-2xl)) 0 var(--spacing-2xl);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .glow-orb {
        opacity: 0.3;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Premium Services Mobile */
    .premium-services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .premium-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .premium-card-image {
        height: 280px;
    }

    .premium-card-content {
        padding: 32px 24px;
    }

    .premium-card-title {
        font-size: 1.5rem;
    }

    .premium-card-btn {
        width: 100%;
        justify-content: center;
    }

    /* Solutions Grid Mobile */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solution-card {
        flex-direction: column;
        gap: 24px;
        min-height: auto;
        padding: 24px;
    }

    .solution-card__img {
        transform: translateY(-40px);  /* Move up on mobile only */
        width: 100%;
        min-width: auto;
        height: 260px;
    }

    .solution-card__content {
        margin-top: -60px;
        margin-left: 0;  /* Reset desktop negative margin */
        text-align: left;
        padding: 0 16px;
    }

    .solution-card__title {
        font-size: 1.35rem;
    }

    .solution-card__text {
        font-size: 0.9rem;
    }

    .solution-card__button {
        width: 100%;
        justify-content: center;
    }

    .chat-widget {
        right: var(--spacing-sm);
        bottom: 80px;
        width: calc(100vw - 1rem);
    }
    
    .chat-toggle {
        width: 52px;
        height: 52px;
    }
    
    .chat-toggle svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stat-card {
        padding: var(--spacing-md);
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .glow-orb {
        animation: none;
    }
    
    .logo-track {
        animation: none;
    }
    
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
    
    [data-stagger] > * {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
/* ============================================
   PROCESS2 & CASE STUDY STYLES
   ============================================ */
#process2 .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
#process2 .process-card {
    background: var(--glass-bg);
    border-radius: 1.2rem;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s;
}
#process2 .process-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
#process2 .process-badge {
    background: var(--accent);
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#process2 .process-icon {
    margin-bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#process2 .process-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
#process2 .process-microcopy {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    background: var(--glass-bg-light);
    padding: 0.2rem 0.7rem;
    border-radius: 0.7rem;
    font-style: italic;
}
#process2 .process-description {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0;
}

#case-study {
    margin-top: 4rem;
}
#case-study .section-header {
    margin-bottom: 2rem;
}
/* Side-by-Side Layout */
#case-study .comparison-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
#case-study .comparison-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: var(--glass-bg);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: scale(0.98);
}
#case-study .comparison-view.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.3);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), transparent);
}
#case-study .before-view.active {
    border-color: #ef4444;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), transparent);
}
/* View Headers */
#case-study .view-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#case-study .view-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
#case-study .before-view .view-title {
    color: #ef4444;
}
#case-study .after-view .view-title {
    color: var(--accent);
}
#case-study .view-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}
#case-study .progress-bar {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: var(--glass-bg-light);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
#case-study .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    transition: width 0.04s linear;
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}
#case-study .before-view .progress-fill {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}
/* Mobile Responsive */
@media (max-width: 768px) {
    #case-study .comparison-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    #case-study .view-title {
        font-size: 1.2rem;
    }
    /* Enhanced mobile animations */
    #case-study .comparison-view {
        opacity: 0.4;
        transform: scale(0.95);
    }
    #case-study .comparison-view.active {
        opacity: 1;
        transform: scale(1);
        border-width: 3px;
        box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.4);
    }
    #case-study .before-view.active {
        box-shadow: 0 12px 40px rgba(239, 68, 68, 0.4);
        border-width: 3px;
    }
    /* Make progress bars more visible on mobile */
    #case-study .progress-bar {
        height: 6px;
        max-width: 100%;
    }
    #case-study .progress-fill {
        box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.7);
    }
    #case-study .before-view .progress-fill {
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
    }
    /* Add pulse animation to active view title on mobile */
    #case-study .comparison-view.active .view-title {
        animation: titlePulse 2s ease-in-out infinite;
    }
    @keyframes titlePulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }
}
#case-study .comparison-phase {
    background: var(--glass-bg);
    border-radius: 1.2rem;
    box-shadow: var(--glass-shadow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 260px;
    transition: box-shadow 0.3s;
}
#case-study .comparison-phase:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
#case-study .comparison-icon {
    margin-bottom: 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
#case-study .comparison-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}
#case-study .comparison-icon.grayscale {
    color: #ef4444;
}
#case-study .comparison-icon.grayscale svg {
    opacity: 0.8;
}
#case-study .comparison-icon.vibrant {
    color: var(--accent);
}
#case-study .comparison-icon.vibrant svg {
    filter: drop-shadow(0 2px 8px rgba(var(--accent-rgb), 0.3));
}
#case-study .comparison-phase:hover .comparison-icon {
    transform: scale(1.1) rotate(5deg);
}
#case-study .comparison-phase:hover .comparison-icon.grayscale {
    color: #dc2626;
}
#case-study .comparison-phase:hover .comparison-icon.vibrant svg {
    filter: drop-shadow(0 4px 16px rgba(var(--accent-rgb), 0.5));
}
#case-study .comparison-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
#case-study .comparison-desc {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}
#case-study .comparison-tag {
    font-size: 0.9rem;
    color: var(--accent);
    background: var(--glass-bg-light);
    padding: 0.2rem 0.7rem;
    border-radius: 0.7rem;
    font-style: italic;
}
#case-study .comparison-metrics {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}
#case-study .metric {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #ffffff;
    font-weight: 700;
    border-radius: 1rem;
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    #case-study .comparison-slider {
        flex-direction: column;
        gap: 0;
    }
    #case-study .comparison-view {
        width: 100%;
    }
    #case-study .comparison-phase {
        min-width: 0;
    }
    #case-study .comparison-metrics {
        flex-direction: column;
        gap: 0.7rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .cookie-banner,
    .chat-widget,
    .chat-toggle,
    .neural-canvas,
    .thermal-grid,
    .glow-orb {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .glass-card {
        background: white;
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* ============================================
   SECURITY FEATURES
   ============================================ */

/* Field Error Messages */
.field-error {
    color: var(--error, #ef4444);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    animation: slideDown 0.2s ease-out;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Error State */
.form-group input.error,
.form-group textarea.error {
    border-color: var(--error, #ef4444);
    background-color: rgba(239, 68, 68, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    outline-color: var(--error, #ef4444);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Character Counter */
.character-counter {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: right;
    margin-top: 0.375rem;
    transition: color 0.2s ease;
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    justify-content: center;
    opacity: 0.8;
}

.security-badge svg {
    color: var(--accent, #22c55e);
}

/* Loading State for Contact Links */
[data-email]:empty::after,
[data-phone]:empty::after {
    content: 'Loading...';
    color: var(--text-secondary);
    font-style: italic;
}

/* Protected Contact Links */
[data-email],
[data-phone] {
    position: relative;
}

[data-email]:hover,
[data-phone]:hover {
    opacity: 0.8;
}

/* Form Status Enhanced */
.form-status {
    padding: 1rem;
    border-radius: var(--radius-md, 0.5rem);
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.form-status.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.form-status.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

/* Rate Limit Warning */
.rate-limit-warning {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(251, 146, 60, 0.3);
    padding: 1rem;
    border-radius: var(--radius-md, 0.5rem);
    margin-top: 1rem;
    color: #ea580c;
    font-size: 0.9375rem;
}

/* ============================================
   HERO CARDS (League of Legends Style)
   ============================================ */

.modern-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .modern-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modern-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* BEGIN CARD DESIGN */
.service-hero-card {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.service-hero-card .hero-profile-img {
    height: 60%;
    width: 100%;
    object-fit: cover;
}

.service-hero-card .hero-description-bk {
    background-image: linear-gradient(135deg, #ec4899, #a855f7);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 45%;
    width: 100%;
    border-radius: 50% 50% 0 0 / 20% 20% 0 0;
}

.service-hero-card.second .hero-description-bk {
    background-image: linear-gradient(135deg, #f59e0b, #eab308);
}

.service-hero-card.third .hero-description-bk {
    background-image: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.service-hero-card .hero-logo {
    height: 70px;
    width: 70px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 18%;
    left: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    z-index: 10;
}

.service-hero-card .hero-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.service-hero-card .hero-logo svg {
    width: 100%;
    height: 100%;
    color: #fff;
    stroke: #fff;
}

.service-hero-card .hero-description {
    position: absolute;
    color: #fff;
    font-weight: 700;
    left: 120px;
    right: 30px;
    bottom: 22%;
    z-index: 5;
}

.service-hero-card .hero-description h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.service-hero-card .hero-description p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
}

.service-hero-card .hero-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    bottom: 30px;
    padding: 10px 24px;
    border: 2px solid #fff;
    border-radius: 8px;
    z-index: 5;
    transition: all 0.3s ease;
}

.service-hero-card .hero-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.service-hero-card .hero-btn a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.service-hero-card .hero-date {
    position: absolute;
    color: #fff;
    left: 30px;
    bottom: 30px;
    z-index: 5;
}

.service-hero-card .hero-date p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 640px) {
    .service-hero-card {
        height: 350px;
    }

    .service-hero-card .hero-description {
        left: 20px;
        right: 20px;
        bottom: 80px;
    }

    .service-hero-card .hero-description h3 {
        font-size: 1rem;
    }

    .service-hero-card .hero-description p {
        font-size: 0.8rem;
    }

    .service-hero-card .hero-logo {
        height: 55px;
        width: 55px;
        left: 20px;
        bottom: 20px;
    }

    .service-hero-card .hero-date {
        display: none;
    }

    .service-hero-card .hero-btn {
        right: 20px;
        bottom: 20px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
/* END CARD DESIGN */

/* ============================================
   GOOGLE reCAPTCHA BADGE STYLING
   ============================================ */
/* Style the reCAPTCHA v3 badge - Position on LEFT to avoid chatbot */
.grecaptcha-badge {
    /* Move to bottom-left instead of bottom-right (to avoid chatbot conflict) */
    right: auto !important;
    left: 20px !important;
    bottom: 20px !important;

    transition: all var(--transition-base) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.grecaptcha-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

/* Dark mode support for reCAPTCHA badge */
[data-theme="dark"] .grecaptcha-badge {
    opacity: 0.9;
    filter: brightness(0.95);
}

/* Position the badge nicely on mobile */
@media (max-width: 768px) {
    .grecaptcha-badge {
        transform: scale(0.85);
        transform-origin: bottom left;
        bottom: 10px !important;
        left: 10px !important;
    }
}

/* Security badge styling (added by contact-security.js) */
.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    justify-content: center;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.security-badge:hover {
    opacity: 1;
}

.security-badge svg {
    color: var(--accent);
}

/* Character counter styling */
.character-counter {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    text-align: right;
    transition: color var(--transition-base);
}

/* Field error styling */
.field-error {
    font-size: 0.875rem;
    color: var(--error, #ef4444);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

input.error,
textarea.error {
    border-color: var(--error, #ef4444) !important;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Print Styles - Hide Contact Info */
@media print {
    [data-email],
    [data-phone],
    .mobile-contact-items,
    .contact-info {
        display: none !important;
    }

    .contact-form::after {
        content: 'Visit veblaaro.com to contact us';
        display: block;
        text-align: center;
        padding: 2rem;
        font-weight: 500;
    }
}
