
/* Block 1 */
.hero-section {
position: relative;
width: 100%;
min-height: 90vh;
background-image: url('images/legal_office_modern.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
align-items: center;
overflow: hidden;
margin-bottom: 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(13, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.8) 100%);
z-index: 1;
}

.hero-container {
position: relative;
z-index: 2;
padding-top: 60px;
padding-bottom: 60px;
}

.hero-content {
color: #ffffff;
}

.hero-prelabel {
display: inline-block;
text-transform: uppercase;
letter-spacing: 0.15em;
font-size: 0.85rem;
font-weight: 700;
color: #3b82f6;
margin-bottom: 1.5rem;
padding: 8px 16px;
background: rgba(59, 130, 246, 0.1);
border: 1px solid rgba(59, 130, 246, 0.3);
border-radius: 50px;
backdrop-filter: blur(4px);
}

.hero-title {
font-size: 3.75rem;
font-weight: 800;
line-height: 1.15;
margin-bottom: 1.75rem;
text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
letter-spacing: -0.02em;
}

.hero-text {
font-size: 1.25rem;
line-height: 1.7;
font-weight: 300;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 2.5rem;
max-width: 600px;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}

.btn-hero {
padding: 16px 40px;
font-weight: 600;
font-size: 1.05rem;
text-decoration: none;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary.btn-hero {
background-color: #3b82f6;
border-color: #3b82f6;
}

.btn-primary.btn-hero:hover {
background-color: #2563eb;
border-color: #2563eb;
transform: translateY(-4px);
box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

.btn-outline-light.btn-hero {
background-color: transparent;
border: 2px solid rgba(255, 255, 255, 0.3);
color: #ffffff;
}

.btn-outline-light.btn-hero:hover {
background-color: #ffffff;
border-color: #ffffff;
color: #0f172a;
transform: translateY(-4px);
box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
}

.hero-scroll-indicator {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
opacity: 0.8;
animation: bounce 2.5s infinite;
}

.scroll-mouse {
width: 26px;
height: 42px;
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 20px;
position: relative;
}

.scroll-mouse::before {
content: '';
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 8px;
background-color: #ffffff;
border-radius: 2px;
animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
0% {
top: 8px;
opacity: 1;
}
100% {
top: 20px;
opacity: 0;
}
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0) translateX(-50%);
}
40% {
transform: translateY(-10px) translateX(-50%);
}
60% {
transform: translateY(-5px) translateX(-50%);
}
}

@media (max-width: 991.98px) {
.hero-title {
font-size: 2.5rem;
}
.hero-text {
font-size: 1.1rem;
}
.hero-section {
min-height: auto;
padding: 120px 0 100px 0;
}
.btn-hero {
width: 100%;
text-align: center;
margin-left: 0 !important;
}
}

/* Block 2 */
.futuristic-services {
background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
position: relative;
overflow: hidden;
}
.futuristic-services::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.5), transparent);
}
.service-card {
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
border: 1px solid rgba(0,0,0,0.05);
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.08);
border-color: rgba(13, 110, 253, 0.1);
}
.icon-box {
width: 80px;
height: 80px;
transition: all 0.3s ease;
}
.service-card:hover .icon-box {
background-color: #0d6efd;
transform: rotate(5deg) scale(1.05);
}
.service-card:hover .icon-box img {
filter: brightness(0) invert(1);
}
.tracking-wider {
letter-spacing: 0.05em;
}

/* Block 3 */
.interactive-data-stream {
background: radial-gradient(circle at 10% 20%, rgba(13, 110, 253, 0.1) 0%, transparent 40%),
radial-gradient(circle at 90% 80%, rgba(25, 135, 84, 0.1) 0%, transparent 40%);
}

.status-indicator {
width: 12px;
height: 12px;
box-shadow: 0 0 10px rgba(25, 135, 84, 0.6);
animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7); }
70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(25, 135, 84, 0); }
100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
}

.data-visual-card {
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.27), box-shadow 0.4s ease;
}

.data-visual-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
border-color: rgba(13, 110, 253, 0.3);
}

.chart-container {
height: 200px;
overflow: hidden;
position: relative;
}

.chart-container img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: grayscale(40%) contrast(120%);
transition: filter 0.3s ease;
}

.data-visual-card:hover .chart-container img {
filter: grayscale(0%) contrast(110%);
}

.feature-item {
opacity: 0;
animation: fade-in-up 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.3s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes fade-in-up {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.btn-outline-info {
border: 2px solid rgba(13, 110, 253, 0.5);
color: #0dcaf0;
transition: all 0.3s ease;
}

.btn-outline-info:hover {
background-color: rgba(13, 110, 253, 0.1);
border-color: #0dcaf0;
box-shadow: 0 0 20px rgba(13, 202, 240, 0.3);
transform: scale(1.02);
}

/* Block 4 */
.futuristic-contact-section {
background: #f8f9fa;
font-family: system-ui, -apple-system, sans-serif;
}
.contact-wrapper {
border: 1px solid rgba(0, 0, 0, 0.05);
background: #fff;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-wrapper:hover {
transform: translateY(-5px);
box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.1) !important;
}
.contact-info-panel {
background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
position: relative;
overflow: hidden;
}
.contact-info-panel::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
pointer-events: none;
}
.contact-info-item i {
font-size: 1.25rem;
}
.form-control:focus, .form-select:focus {
background: #fff !important;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15) !important;
border-color: transparent !important;
}
.input-group-text {
background: #f1f3f5;
border: none;
color: #adb5bd;
transition: color 0.3s ease;
}
.input-group:focus-within .input-group-text {
color: #0d6efd;
background: #fff;
}
.hover-lift {
transition: all 0.3s ease;
}
.hover-lift:hover {
transform: translateY(-2px);
box-shadow: 0 0.5rem 1.25rem rgba(13, 110, 253, 0.25) !important;
}

/* Block 1 */
.relative {
        position: relative;
    }
    .absolute {
        position: absolute;
    }
    .inset-0 {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .z-0 {
        z-index: 0;
    }
    .z-10 {
        z-index: 10;
    }
    .flex {
        display: flex;
    }
    .items-center {
        align-items: center;
    }
    .justify-center {
        justify-content: center;
    }
    .min-h-\[600px\] {
        min-height: 600px;
    }
    .overflow-hidden {
        overflow: hidden;
    }
    .w-full {
        width: 100%;
    }
    .h-full {
        height: 100%;
    }
    .object-cover {
        -o-object-fit: cover;
        object-fit: cover;
    }
    .bg-slate-900\/70 {
        background-color: rgba(15, 23, 42, 0.7);
    }
    .backdrop-blur-\[2px\] {
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
    .max-w-4xl {
        max-width: 56rem;
    }
    .max-w-2xl {
        max-width: 42rem;
    }
    .px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .text-center {
        text-align: center;
    }
    .mx-auto {
        margin-left: auto;
        margin-right: auto;
    }
    .text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    .font-bold {
        font-weight: 700;
    }
    .text-white {
        color: #ffffff;
    }
    .mb-6 {
        margin-bottom: 1.5rem;
    }
    .mb-10 {
        margin-bottom: 2.5rem;
    }
    .leading-tight {
        line-height: 1.25;
    }
    .tracking-tight {
        letter-spacing: -0.025em;
    }
    .text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .text-slate-200 {
        color: #e2e8f0;
    }
    .font-light {
        font-weight: 300;
    }
    .leading-relaxed {
        line-height: 1.625;
    }
    .inline-flex {
        display: inline-flex;
    }
    .px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .font-semibold {
        font-weight: 600;
    }
    .bg-blue-600 {
        background-color: #2563eb;
    }
    .rounded-lg {
        border-radius: 0.5rem;
    }
    .transition-all {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 300ms;
    }
    .duration-300 {
        transition-duration: 300ms;
    }
    .hover\:bg-blue-700:hover {
        background-color: #1d4ed8;
    }
    .hover\:shadow-lg:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    .hover\:shadow-blue-900\/40:hover {
        box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.4), 0 10px 10px -5px rgba(15, 23, 42, 0.2);
    }
    .focus\:outline-none:focus {
        outline: 2px solid transparent;
        outline-offset: 2px;
    }
    .focus\:ring-2:focus {
        box-shadow: 0 0 0 2px #2563eb;
    }
    .focus\:ring-offset-2:focus {
        box-shadow: 0 0 0 2px #1e293b;
    }
    .focus\:ring-offset-slate-900:focus {
        --tw-ring-offset-color: #0f172a;
    }
    .focus\:ring-blue-500:focus {
        box-shadow: 0 0 0 2px #3b82f6;
    }
    .w-5 {
        width: 1.25rem;
    }
    .h-5 {
        height: 1.25rem;
    }
    .ml-2 {
        margin-left: 0.5rem;
    }
    .-mr-1 {
        margin-right: -0.25rem;
    }
    .stroke-current {
        stroke: currentColor;
    }
    @media (min-width: 768px) {
        .md\:text-6xl {
            font-size: 3.75rem;
            line-height: 1;
        }
        .md\:text-xl {
            font-size: 1.25rem;
            line-height: 1.75rem;
        }
    }

/* Block 3 */
.specialty-card-gradient {
background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
}
