/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --secondary-color: #7C3AED;
    --accent-color: #06B6D4;
    --accent-orange: #F59E0B;
    --cyber-green: #10B981;
    --cyber-teal: #14B8A6;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --text-white: #ffffff;
    --bg-light: #F8FAFC;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --bg-gradient-modern: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px 0 rgba(37, 99, 235, 0.15);
    --shadow-lg: 0 12px 24px 0 rgba(37, 99, 235, 0.2);
    --shadow-xl: 0 20px 40px 0 rgba(37, 99, 235, 0.25);
    --shadow-glow: 0 8px 32px rgba(37, 99, 235, 0.3);
    --shadow-neon: 0 0 20px rgba(37, 99, 235, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --border-radius: 16px;
    --max-width: 1320px;
    --section-spacing: 140px;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Animated gradient orbs background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundMove 20s ease-in-out infinite;
}

/* Animated particles effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(37, 99, 235, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(124, 58, 237, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(6, 182, 212, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(16, 185, 129, 0.4), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(37, 99, 235, 0.3), transparent),
        radial-gradient(1px 1px at 33% 50%, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(1px 1px at 10% 90%, rgba(6, 182, 212, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    pointer-events: none;
    z-index: 0;
    animation: particlesFloat 30s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%;
    }
    25% {
        background-position: 100% 0%, 0% 100%, 30% 70%, 60% 40%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 70% 30%, 40% 60%;
    }
    75% {
        background-position: 0% 100%, 100% 0%, 50% 50%, 70% 30%;
    }
}

@keyframes particlesFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%, 90% 60%, 33% 50%, 10% 90%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 25% 75%, 10% 80%, 60% 90%, 66% 25%, 90% 10%;
        opacity: 0.8;
    }
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.3));
    transition: var(--transition);
}

.logo a:hover .logo-icon {
    transform: scale(1.08) translateY(-1px);
    filter: drop-shadow(0 8px 24px rgba(37, 99, 235, 0.45));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--primary-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.lang-btn:hover {
    background-color: var(--bg-light);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    padding: 4rem 0 3.5rem;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

/* Animated wave effect in hero */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(16, 185, 129, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 100%, rgba(124, 58, 237, 0.2) 0%, transparent 40%);
    animation: waveMove 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

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

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    filter: brightness(0.9) contrast(1.2) saturate(1.2) hue-rotate(5deg);
    transform: scale(1.05);
    animation: videoZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
    0% {
        transform: scale(1.05);
        filter: brightness(0.9) contrast(1.2) saturate(1.2) hue-rotate(5deg);
    }
    100% {
        transform: scale(1.15);
        filter: brightness(0.85) contrast(1.3) saturate(1.3) hue-rotate(-5deg);
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.6) 0%, rgba(124, 58, 237, 0.5) 100%),
        radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

/* Scanning grid overlay effect */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(16, 185, 129, 0.1) 25%, rgba(16, 185, 129, 0.1) 26%, transparent 27%, transparent 74%, rgba(16, 185, 129, 0.1) 75%, rgba(16, 185, 129, 0.1) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(6, 182, 212, 0.1) 25%, rgba(6, 182, 212, 0.1) 26%, transparent 27%, transparent 74%, rgba(6, 182, 212, 0.1) 75%, rgba(6, 182, 212, 0.1) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

/* Diagonal scan line effect */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(16, 185, 129, 0.2) 50%,
        transparent 60%
    );
    animation: diagonalScan 10s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
        background-position: 0% 0%, 30% 50%, 70% 80%;
    }
    50% {
        opacity: 0.85;
        background-position: 100% 100%, 70% 30%, 30% 20%;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 50px 50px;
    }
}

@keyframes diagonalScan {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(100%, 100%) rotate(45deg);
        opacity: 0;
    }
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-white);
    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(16, 185, 129, 0.5),
        0 0 60px rgba(6, 182, 212, 0.3);
    animation: heroTitleEntry 1s ease-out, titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow:
            0 4px 24px rgba(0, 0, 0, 0.4),
            0 0 80px rgba(255, 255, 255, 0.2),
            0 0 30px rgba(16, 185, 129, 0.5),
            0 0 60px rgba(6, 182, 212, 0.3);
    }
    50% {
        text-shadow:
            0 4px 24px rgba(0, 0, 0, 0.4),
            0 0 100px rgba(255, 255, 255, 0.3),
            0 0 50px rgba(16, 185, 129, 0.8),
            0 0 80px rgba(6, 182, 212, 0.5);
    }
}

@keyframes heroTitleEntry {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 36px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.98);
    animation: heroSubtitleEntry 1s ease-out 0.2s backwards;
}

@keyframes heroSubtitleEntry {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroCTAEntry 1s ease-out 0.4s backwards;
}

@keyframes heroCTAEntry {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.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.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-glow);
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1E40AF 0%, #6D28D9 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Section Header (Reusable)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.section-header h2:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   Introduction Section
   ============================================ */
.intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Loop/Infinity Symbol - representing continuous recovery process */
.intro-section::before {
    content: '∞';
    position: absolute;
    top: 15%;
    left: 10%;
    font-size: 200px;
    color: rgba(37, 99, 235, 0.15);
    animation: loopFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    font-weight: bold;
}

/* Animated Shield Symbol - representing protection and security */
.intro-section::after {
    content: '🛡';
    position: absolute;
    top: 60%;
    right: 8%;
    font-size: 180px;
    opacity: 0.2;
    animation: shieldPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(100%) brightness(0) opacity(0.25);
}

/* Law Scales Symbol */
.intro-content::before {
    content: '⚖';
    position: absolute;
    bottom: -20%;
    left: 15%;
    font-size: 190px;
    opacity: 0.15;
    animation: scalesBalance 7s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Search/Magnifying glass loop on opposite side */
.intro-content::after {
    content: '🔍';
    position: absolute;
    top: -10%;
    right: 5%;
    font-size: 170px;
    opacity: 0.18;
    animation: searchFloat 5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: grayscale(100%) brightness(0) opacity(0.22);
}

@keyframes loopFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.1);
        opacity: 0.12;
    }
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.15) translateY(-15px);
        opacity: 0.2;
    }
}

@keyframes scalesBalance {
    0%, 100% {
        transform: rotate(-5deg) translateX(0);
        opacity: 0.08;
    }
    25% {
        transform: rotate(5deg) translateX(10px);
        opacity: 0.12;
    }
    50% {
        transform: rotate(-5deg) translateX(0);
        opacity: 0.08;
    }
    75% {
        transform: rotate(5deg) translateX(-10px);
        opacity: 0.12;
    }
}

@keyframes searchFloat {
    0%, 100% {
        transform: scale(1) rotate(-10deg) translateY(0);
        opacity: 0.12;
    }
    50% {
        transform: scale(1.15) rotate(10deg) translateY(-20px);
        opacity: 0.18;
    }
}

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

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.intro-content h2:hover {
    color: var(--secondary-color);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Steps Section
   ============================================ */
.steps-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: var(--bg-white);
    padding: 48px 36px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    color: var(--text-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.step-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.step-card:hover h3 {
    color: var(--secondary-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   Domestic & International Sections
   ============================================ */
.domestic-section,
.international-section {
    padding: var(--section-spacing) 0;
}

.domestic-section {
    background-color: var(--bg-white);
}

.international-section {
    background-color: var(--bg-accent);
}

.content-layout {
    max-width: 900px;
    margin: 0 auto;
}

.main-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.main-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1.2rem;
    font-weight: 600;
}

.main-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   Accordion
   ============================================ */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    padding: 1.5rem 2rem;
    background-color: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.accordion-header:hover {
    background-color: #e9ecef;
}

.accordion-header h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem 2rem;
}

.accordion-content p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.accordion-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

/* ============================================
   Tools List (International Section)
   ============================================ */
.tools-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tool-item {
    background-color: var(--bg-white);
    padding: 1.8rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tool-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.tool-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tool-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-icon svg {
    width: 64px;
    height: 64px;
    padding: 16px;
    background: var(--bg-gradient);
    border-radius: 16px;
    stroke: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.benefit-card:hover h3 {
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.member-photo {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.team-member:hover .member-photo img {
    transform: scale(1.02);
}

.member-photo img.photo-top {
    object-position: top;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.member-location {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.member-specializations,
.member-languages {
    margin-bottom: 1.5rem;
}

.member-specializations h4,
.member-languages h4 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-specializations ul {
    list-style: none;
    padding: 0;
}

.member-specializations ul li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.member-specializations ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.member-languages p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 143, 0.1);
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    margin-top: 0.3rem;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        align-items: flex-start;
        gap: 1.5rem;
    }

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

    .language-switcher {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

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

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

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

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

    .logo-tagline {
        display: none;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 0 3rem;
        min-height: 500px;
    }

    /* Adjust video overlay for better mobile readability */
    .hero-overlay {
        background: rgba(15, 53, 102, 0.6);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .intro-section,
    .steps-section,
    .domestic-section,
    .international-section,
    .benefits-section,
    .team-section,
    .contact-section {
        padding: 3.5rem 0;
    }

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

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .member-photo {
        height: 350px;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
    }

    .accordion-content {
        padding: 0 1.5rem;
    }

    .accordion-item.active .accordion-content {
        padding: 1.2rem 1.5rem;
    }
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* ============================================
   Services Overview (Home Page)
   ============================================ */
.services-overview {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

/* Loop/Infinity Symbol for services continuity */
.services-overview::before {
    content: '∞';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 250px;
    color: rgba(37, 99, 235, 0.18);
    animation: loopFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    font-weight: bold;
}

/* Shield Symbol for security services */
.services-overview::after {
    content: '🛡';
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 230px;
    opacity: 0.25;
    animation: shieldPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    filter: grayscale(100%) brightness(0) opacity(0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Scales of Justice for services section */
.services-grid::before {
    content: '⚖';
    position: absolute;
    bottom: 5%;
    right: 8%;
    font-size: 240px;
    opacity: 0.2;
    animation: scalesBalance 7s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Search/Investigation symbol */
.services-grid::after {
    content: '🔍';
    position: absolute;
    top: 30%;
    left: 3%;
    font-size: 220px;
    opacity: 0.22;
    animation: searchFloat 5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: grayscale(100%) brightness(0) opacity(0.25);
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

/* Glowing border effect */
.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        var(--cyber-green),
        var(--primary-color)
    );
    background-size: 300% 300%;
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientRotate 3s linear infinite;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-card:hover::before {
    opacity: 1;
}

/* Shine effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.service-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 64px;
    height: 64px;
    padding: 16px;
    background: var(--bg-gradient);
    border-radius: 16px;
    stroke: var(--text-white);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon svg {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--shadow-neon);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: rotate(5deg) scale(1.1); }
    50% { transform: rotate(-5deg) scale(1.15); }
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: var(--section-spacing) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-100px, 100px); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* ============================================
   Info Boxes
   ============================================ */
.info-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.info-box h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-box p {
    margin: 0;
    line-height: 1.7;
}

.attorney-role-box {
    background-color: var(--bg-accent);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.attorney-role-box h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.attorney-role-box ul {
    list-style: none;
    padding: 0;
}

.attorney-role-box ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.attorney-role-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* ============================================
   Team Page - Additional Styles
   ============================================ */
.member-experience {
    margin-top: 1.5rem;
}

.member-experience h4 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-experience p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Contact Page - Enhanced Styles
   ============================================ */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-dark);
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

/* ============================================
   Active Navigation Link
   ============================================ */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

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

.step-card,
.benefit-card,
.team-member,
.tool-item {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Modern Interactive Effects
   ============================================ */

/* Spotlight effect on cards */
.service-card::after {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.service-card:hover::after {
    opacity: 1;
}

/* Smooth page transitions */
body {
    animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Enhanced link underline effect */
.nav-links a {
    position: relative;
}

.nav-links a.active::after {
    width: 100%;
}

/* Floating animation for CTA section */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatReverse 20s ease-in-out infinite;
}

@keyframes floatReverse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, -100px); }
}

/* ============================================
   Cyber Security Tech Enhancements
   ============================================ */

/* Digital grid background overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Cyber glow effect for service cards with security/tech focus */
.service-card:nth-child(5),
.service-card:nth-child(6) {
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.service-card:nth-child(5):hover,
.service-card:nth-child(6):hover {
    border-color: var(--cyber-green);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(16, 185, 129, 0.2);
}

.service-card:nth-child(5) .service-icon svg,
.service-card:nth-child(6) .service-icon svg {
    background: linear-gradient(135deg, var(--cyber-green) 0%, var(--cyber-teal) 100%);
}

/* Tech-inspired section headers */
.section-header h2::before {
    content: '< ';
    opacity: 0.3;
    font-weight: 400;
}

.section-header h2::after {
    content: ' />';
    opacity: 0.3;
    font-weight: 400;
    position: static;
    width: auto;
    height: auto;
    background: none;
    margin-left: 8px;
}

/* Binary code subtle animation in background */
@keyframes binaryFall {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Scanning line effect for hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
    animation: scan 3s ease-in-out infinite;
    z-index: 2;
    opacity: 0.5;
}

@keyframes scan {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(450px); opacity: 0.5; }
}

/* Lock icon animation for security services */
.service-card:nth-child(2) .service-icon svg,
.service-card:nth-child(5) .service-icon svg {
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 12px var(--cyber-green)); }
}

/* Data stream effect */
.hero-content::before {
    content: '01001001';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-family: 'Courier New', monospace;
    color: var(--cyber-green);
    opacity: 0.2;
    letter-spacing: 4px;
    animation: dataStream 4s linear infinite;
}

@keyframes dataStream {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   Modern Forensics & Cyber Security Effects
   ============================================ */

/* Digital fingerprint pattern for sections */
.services-overview, .benefits-section, .intro-section {
    position: relative;
    overflow: hidden;
}

.services-overview::before,
.benefits-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background:
        radial-gradient(circle, transparent 30%, rgba(37, 99, 235, 0.03) 30%, rgba(37, 99, 235, 0.03) 31%, transparent 31%),
        radial-gradient(circle, transparent 40%, rgba(124, 58, 237, 0.03) 40%, rgba(124, 58, 237, 0.03) 41%, transparent 41%),
        radial-gradient(circle, transparent 50%, rgba(6, 182, 212, 0.02) 50%, rgba(6, 182, 212, 0.02) 51%, transparent 51%);
    pointer-events: none;
    z-index: 0;
    animation: fingerprintRotate 60s linear infinite;
    opacity: 0.6;
}

@keyframes fingerprintRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Circuit board traces effect */
.page-header::after,
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, transparent 49%, rgba(16, 185, 129, 0.1) 49%, rgba(16, 185, 129, 0.1) 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(16, 185, 129, 0.1) 49%, rgba(16, 185, 129, 0.1) 51%, transparent 51%);
    background-size: 100px 100px;
    background-position: 0 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Holographic data overlay effect */
.service-card::before,
.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(37, 99, 235, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover::before,
.benefit-card:hover::before {
    animation: holoScan 1.5s ease-in-out;
}

@keyframes holoScan {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

/* Binary code rain effect for hero */
.hero {
    position: relative;
}

.hero::after {
    content: '01001001 01001110 01010110 01000101 01010011 01010100';
    position: absolute;
    top: 20px;
    left: 10%;
    font-size: 10px;
    font-family: 'Courier New', monospace;
    color: rgba(16, 185, 129, 0.2);
    letter-spacing: 3px;
    animation: binaryScroll 15s linear infinite;
    white-space: nowrap;
    pointer-events: none;
    z-index: 2;
}

@keyframes binaryScroll {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* Glowing connection lines */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    transition: height 0.6s ease;
    opacity: 0.5;
}

.service-card:hover::after {
    height: 40px;
}

/* Pulsing security shield effect */
.navbar {
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 4px;
    height: 40%;
    background: linear-gradient(to bottom, var(--cyber-green), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::before {
    opacity: 0.6;
    animation: securityPulse 2s ease-in-out infinite;
}

@keyframes securityPulse {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scaleY(1); }
    50% { opacity: 0.8; transform: translateY(-50%) scaleY(1.2); }
}

/* Forensic scan line effect */
.steps-section {
    position: relative;
    overflow: hidden;
}

.steps-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(37, 99, 235, 0.05) 50%,
        transparent
    );
    animation: forensicScan 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes forensicScan {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Modern card hover with depth */
.service-card,
.benefit-card,
.step-card {
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
}

.service-card:hover,
.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1),
        inset 0 0 20px rgba(37, 99, 235, 0.03);
}

/* Hexagon pattern for footer */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Data encryption visualization */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '🔒 ENCRYPTED 🔐 SECURE 🛡️ PROTECTED';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(16, 185, 129, 0.1);
    white-space: nowrap;
    animation: encryptionScroll 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes encryptionScroll {
    0% { left: -100%; }
    100% { left: 100%; }
}
