.reports-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Hero Section */
.reports-hero {
    background-color: #ffffff; /* Fallback */
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem !important;
}

/* Background Pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ced4da 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.4;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Background Mesh Gradient */
.hero-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, rgba(25, 135, 84, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(13, 202, 240, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 193, 7, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(25, 135, 84, 0.05) 0px, transparent 50%);
    filter: blur(40px);
    z-index: 0;
    animation: meshPulse 10s ease-in-out infinite alternate;
}

@keyframes meshPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Floating Shapes (if used in HTML) */
.hero-floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

/* Wave Separator */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 100px;
}

/* Typography */
.letter-spacing-tight {
    letter-spacing: -0.03em;
}

.highlight-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    color: #198754;
    opacity: 0.2;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* 3D Document Stack Visual */
.document-stack-container {
    position: relative;
    width: 320px;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.decoration-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 2px dashed #e9ecef;
    border-radius: 50%;
    z-index: 0;
    animation: spin 60s linear infinite;
}

.decoration-dots {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#dee2e6 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 0;
}

.doc-card {
    position: absolute;
    width: 260px;
    height: 340px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.5s ease;
}

.doc-3 {
    top: 20px;
    left: 40px;
    transform: rotate(6deg);
    z-index: 1;
    background: #f8f9fa;
}

.doc-2 {
    top: 10px;
    left: 20px;
    transform: rotate(3deg);
    z-index: 2;
    background: #f1f3f5;
}

.doc-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(0deg);
}

.document-stack-container:hover .doc-1 { transform: translateY(-10px) rotate(0deg); }
.document-stack-container:hover .doc-2 { transform: translateY(-5px) translateX(10px) rotate(5deg); }
.document-stack-container:hover .doc-3 { transform: translateY(0px) translateX(20px) rotate(10deg); }

/* Mock Content */
.mock-logo { width: 40px; height: 40px; opacity: 0.2; }
.mock-lines { height: 8px; background: #e9ecef; border-radius: 4px; }
.mock-chart { display: flex; align-items: flex-end; gap: 10px; height: 60px; }
.bar { width: 20px; background: #e9ecef; border-radius: 4px 4px 0 0; }
.bar-1 { height: 60%; }
.bar-2 { height: 80%; background: #d1e7dd; }
.bar-3 { height: 40%; }

.doc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff0f0;
    color: #dc3545;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Card Styles */
.report-card {
    background: #ffffff;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    position: relative;
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.icon-wrapper-lg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.report-card:hover .icon-wrapper-lg {
    transform: scale(1.05) rotate(-3deg);
}

.transition-all {
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.2);
}

/* Animations */
.animate-fade-down { animation: fadeDown 0.8s ease-out forwards; opacity: 0; }
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; opacity: 0; }
.animate-float { animation: float 6s ease-in-out infinite; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
