/* Base Configuration */
:root {
    --primary-orange: 245 158 11; /* amber-500 */
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #e4e4e7; /* zinc-200 */
}
/* Custom Scrollbar for aesthetics */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: #000;
}
body::-webkit-scrollbar-thumb {
    background: rgb(var(--primary-orange));
    border-radius: 4px;
}
/* --- ANIMATIONS & EFFECTS --- */
/* Pulse effect for CTA button (Requires position:relative on parent element) */
@keyframes pulse-ring {
    0% { transform: scale(0.3); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}
.pulse-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-orange), 0.5);
    border-radius: 9999px;
    animation: pulse-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 0;
}
/* Keyframe: Fade In & Slide Up (used by data-animate="fade-in" / "slide-up") */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-FadeIn {
    animation: fadeIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-SlideUp {
    animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
/* Hero Glow Animation for subtle background movement */
@keyframes subtle-glow-move {
    0% { transform: translate(0, 0) scale(1.0); }
    50% { transform: translate(10px, -10px) scale(1.02); }
    100% { transform: translate(0, 0) scale(1.0); }
}
.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    animation: subtle-glow-move 15s ease-in-out infinite alternate;
}
/* Service Section layered background animation */
@keyframes background-pan {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
}
.services-bg {
    /* Subtle dark gradient transition */
    background: linear-gradient(90deg, #0a0a0a, #18181b, #0a0a0a);
    background-size: 200% 100%;
    animation: background-pan 12s linear infinite alternate;
}
/* Card hover animation (used by data-animate="card-up") */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #27272a; /* zinc-800 */
}
.service-card:hover {
    background-color: #111111; /* Even darker on hover */
    border-color: rgb(var(--primary-orange));
    transform: translateY(-8px) scale(1.01); /* More pronounced lift */
    box-shadow: 0 15px 30px rgba(var(--primary-orange), 0.2);
}

/* Styling for the main content box - matching index style */
.article-box {
    background-color: #18181b; /* zinc-900 - same as index service cards */
    border: 1px solid #27272a; /* zinc-800 border */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-box:hover {
    background-color: #111111; /* Even darker on hover */
    border-color: rgb(var(--primary-orange));
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(var(--primary-orange), 0.1);
}

/* Scroll Reveal Initial State */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Scroll Reveal Final State (Managed by JS) */
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Privacy-specific styles */
.privacy-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #18181b 100%);
}

/* Enhanced focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}
