@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@300;400;600;700&display=swap');

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

:root {
    --primary-red: #dc2626;
    --dark-red: #7f1d1d;
    --accent-red: #ef4444;
    --text-light: #f9fafb;
    --text-dark: #1f2937;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-glass: rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('one.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5) contrast(1.1);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.05) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(127, 29, 29, 0.1) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.5));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.8));
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(220, 38, 38, 0.8));
    }
}

/* Banner Section */
.banner-section {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.banner-video {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 16px;
    animation: bannerFadeIn 1s ease-out;
}

@keyframes bannerFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav a:hover::before {
    left: 100%;
}

.nav a:hover {
    color: var(--accent-red);
    background: rgba(220, 38, 38, 0.1);
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    transform: translateY(-1px);
}

/* Main Content */
.main {
    flex: 1;
    padding: 2rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    letter-spacing: 1px;
}

.page-header p {
    color: rgba(249, 250, 251, 0.8);
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Warning Section */
.warning-section {
    margin-bottom: 3rem;
}

.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(239, 68, 68, 0.2),
        inset 0 0 60px rgba(239, 68, 68, 0.1);
    animation: warningPulse 3s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        border-color: rgba(239, 68, 68, 0.3);
        box-shadow: 
            0 8px 32px rgba(239, 68, 68, 0.2),
            inset 0 0 60px rgba(239, 68, 68, 0.1);
    }
    50% {
        border-color: rgba(239, 68, 68, 0.6);
        box-shadow: 
            0 12px 48px rgba(239, 68, 68, 0.4),
            inset 0 0 80px rgba(239, 68, 68, 0.2);
    }
}

.warning-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(239, 68, 68, 0.1) 50%, 
        transparent 70%);
    animation: warningShine 4s linear infinite;
}

@keyframes warningShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.warning-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.warning-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.warning-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(239, 68, 68, 0.8);
    }
}

.warning-content > p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.warning-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
    animation: itemSlideIn 0.5s ease-out;
}

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

@keyframes itemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.warning-item:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.check-icon {
    color: var(--accent-red);
    font-size: 1.2rem;
    font-weight: bold;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.warning-item span:last-child {
    color: var(--text-light);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background: var(--card-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-item:hover {
    border-color: var(--accent-red);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3);
    transform: translateY(-2px);
    background: rgba(220, 38, 38, 0.1);
}

.service-item a {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-light);
    gap: 1rem;
}

.service-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-content p {
    color: rgba(249, 250, 251, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    margin-top: auto;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: rgba(249, 250, 251, 0.6);
    font-size: 0.9rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-item a {
        padding: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav ul {
        gap: 0.5rem;
    }
    
    .nav a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .service-item a {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .service-icon {
        margin-bottom: 0.5rem;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.service-item a:focus,
.nav a:focus {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

/* Loading states */
.service-item {
    transition: all 0.3s ease;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .main {
        padding: 0;
    }
}

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

.service-item {
    animation: fadeInUp 0.6s ease-out;
    transform-origin: center;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }

.service-item:hover {
    animation: serviceHover 0.6s ease-out;
}

@keyframes serviceHover {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
    100% {
        transform: translateY(-2px) scale(1.01);
    }
}

.service-icon {
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.service-item:hover .service-icon::before {
    width: 100%;
    height: 100%;
}

/* Enhanced header animations */
.header {
    animation: headerSlideDown 0.8s ease-out;
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating particles background */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 10s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-red);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }
.particle:nth-child(10) { left: 95%; animation-delay: 9s; }

@keyframes particleFloat {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateX(20px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateX(-20px) scale(1);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

/* Enhanced footer animation */
.footer {
    animation: footerSlideUp 0.8s ease-out;
}

@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page load animation */
body {
    animation: pageLoad 1s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}
