/* Website 188 - Pixel Blocks Layout - Red Theme */
:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #f87171;
    --accent-color: #ef4444;
    --accent-light: #fca5a5;
    --background: #1f0000;
    --surface: #2d0000;
    --surface-light: #4a0000;
    --text-primary: #ffffff;
    --text-secondary: #fecaca;
    --text-muted: #fecaca;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', sans-serif; background: var(--background); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }

.pixel-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: #1a0000; overflow: hidden; }
.pixel-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(220, 38, 38, 0.03) 4px, rgba(220, 38, 38, 0.03) 5px), repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(220, 38, 38, 0.03) 4px, rgba(220, 38, 38, 0.03) 5px); }
.pixel-bg::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1), transparent 70%); }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(31, 0, 0, 0.95); backdrop-filter: blur(20px); padding: 0 5%; height: 70px; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--primary-color); }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-light); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border: 3px solid var(--primary-light); image-rendering: pixelated; box-shadow: 0 0 15px rgba(220, 38, 38, 0.5); }
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; padding: 10px 18px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s ease; border: 2px solid transparent; }
.nav-links a:hover { color: var(--text-primary); background: var(--primary-color); border-color: var(--primary-light); box-shadow: 0 0 15px rgba(220, 38, 38, 0.4); }
.nav-links a.active { color: var(--primary-light); background: var(--surface-light); border-color: var(--primary-color); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; border: 2px solid var(--primary-color); background: var(--surface); }
.mobile-menu-btn span { width: 25px; height: 3px; background: var(--primary-light); display: block; }

.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 5% 50px; position: relative; }
.hero-content { text-align: center; max-width: 900px; margin-bottom: 60px; position: relative; z-index: 10; }
.hero-title { font-size: 3rem; font-weight: 800; margin-bottom: 20px; font-family: 'Courier New', monospace; text-transform: uppercase; letter-spacing: 3px; text-shadow: 4px 4px 0 var(--primary-dark), 0 0 30px rgba(220, 38, 38, 0.5); }
.hero-subtitle { font-size: 1.2rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; font-family: 'Courier New', monospace; }

.pixel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; max-width: 1000px; width: 100%; }
.pixel-block { background: var(--surface); border: 3px solid var(--primary-color); padding: 20px; cursor: pointer; transition: all 0.2s ease; position: relative; }
.pixel-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, transparent 40%, rgba(220, 38, 38, 0.1) 100%); }
.pixel-block:hover { transform: translate(-4px, -4px); box-shadow: 6px 6px 0 var(--primary-dark), 0 0 25px rgba(220, 38, 38, 0.4); background: var(--surface-light); }
.pixel-block .icon { font-size: 2.5rem; margin-bottom: 12px; display: block; image-rendering: pixelated; }
.pixel-block .title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; font-family: 'Courier New', monospace; text-transform: uppercase; }
.pixel-block .desc { font-size: 0.75rem; color: var(--text-secondary); font-family: 'Courier New', monospace; }

.cta-buttons { display: flex; gap: 20px; margin-top: 50px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 10; }
.btn { padding: 14px 32px; font-family: 'Courier New', monospace; font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.2s ease; cursor: pointer; border: none; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary { background: var(--primary-color); color: white; border: 3px solid var(--primary-light); box-shadow: 4px 4px 0 var(--primary-dark); }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--primary-dark); }
.btn-secondary { background: transparent; color: var(--primary-light); border: 3px solid var(--primary-color); }
.btn-secondary:hover { background: var(--primary-color); color: white; }

.section { padding: 80px 5%; position: relative; }
.section-title { font-size: 2.3rem; font-weight: 700; text-align: center; margin-bottom: 50px; color: var(--text-primary); font-family: 'Courier New', monospace; text-transform: uppercase; letter-spacing: 2px; text-shadow: 3px 3px 0 var(--primary-dark); }
.section-title span { color: var(--primary-light); }

.pixel-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.p-card { background: var(--surface); border: 3px solid var(--primary-color); padding: 25px; transition: all 0.2s ease; }
.p-card:hover { transform: translate(-4px, -4px); box-shadow: 6px 6px 0 var(--primary-dark); background: var(--surface-light); }
.p-card-icon { width: 55px; height: 55px; background: var(--primary-color); border: 3px solid var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; image-rendering: pixelated; }
.p-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); font-family: 'Courier New', monospace; text-transform: uppercase; }
.p-card p { color: var(--text-secondary); line-height: 1.7; font-size: 0.9rem; }

.stats-section { background: var(--surface); padding: 60px 5%; border-top: 3px solid var(--primary-color); border-bottom: 3px solid var(--primary-color); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-item { background: var(--surface-light); border: 2px solid var(--primary-color); padding: 20px; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--primary-light); font-family: 'Courier New', monospace; text-shadow: 2px 2px 0 var(--primary-dark); }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 8px; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; }

.process-timeline { max-width: 800px; margin: 0 auto; position: relative; padding-left: 40px; }
.process-timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 4px; background: var(--primary-color); box-shadow: 0 0 10px rgba(220, 38, 38, 0.5); }
.process-step { display: flex; align-items: flex-start; margin-bottom: 30px; position: relative; }
.step-marker { width: 34px; height: 34px; background: var(--primary-color); border: 3px solid var(--primary-light); position: absolute; left: -40px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Courier New', monospace; box-shadow: 0 0 15px rgba(220, 38, 38, 0.5); }
.step-content { background: var(--surface); border: 2px solid var(--primary-color); padding: 20px; flex: 1; }
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); font-family: 'Courier New', monospace; text-transform: uppercase; }
.step-content p { color: var(--text-secondary); font-size: 0.9rem; }

.contact-section { max-width: 600px; margin: 0 auto; }
.contact-list { display: flex; flex-direction: column; gap: 15px; }
.contact-block { display: flex; align-items: center; gap: 15px; padding: 18px 20px; background: var(--surface); border: 2px solid var(--primary-color); transition: all 0.2s ease; }
.contact-block:hover { transform: translateX(10px); background: var(--surface-light); border-color: var(--primary-light); box-shadow: 0 0 15px rgba(220, 38, 38, 0.3); }
.contact-icon { width: 45px; height: 45px; background: var(--primary-color); border: 2px solid var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-details h4 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; }
.contact-details p { font-size: 1rem; color: var(--text-primary); font-family: 'Courier New', monospace; }

.footer { background: var(--surface); padding: 45px 5% 25px; border-top: 3px solid var(--primary-color); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto 25px; }
.footer-section h4 { font-size: 1rem; margin-bottom: 15px; color: var(--primary-light); font-family: 'Courier New', monospace; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--primary-color); padding-bottom: 8px; display: inline-block; }
.footer-section p, .footer-section a { color: var(--text-secondary); text-decoration: none; display: block; margin-bottom: 8px; font-size: 0.9rem; transition: all 0.2s ease; }
.footer-section a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--primary-color); color: var(--text-muted); font-size: 0.85rem; font-family: 'Courier New', monospace; }

@media (max-width: 768px) {
    .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: rgba(31, 0, 0, 0.98); flex-direction: column; padding: 20px; gap: 8px; transform: translateY(-100%); opacity: 0; transition: all 0.3s ease; pointer-events: none; border-bottom: 3px solid var(--primary-color); }
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .hero-title { font-size: 2rem; letter-spacing: 1px; }
    .hero-subtitle { font-size: 0.95rem; }
    .pixel-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 1.6rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 260px; text-align: center; }
    .process-timeline { padding-left: 30px; }
    .process-timeline::before { left: 10px; }
    .step-marker { left: -30px; width: 28px; height: 28px; font-size: 0.85rem; }
    .step-content { padding: 15px; }
}

.page-header { padding: 120px 5% 50px; text-align: center; background: var(--surface); border-bottom: 3px solid var(--primary-color); }
.page-title { font-size: 2.1rem; font-weight: 700; margin-bottom: 12px; color: var(--primary-light); font-family: 'Courier New', monospace; text-transform: uppercase; letter-spacing: 2px; text-shadow: 2px 2px 0 var(--primary-dark); }
.page-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-family: 'Courier New', monospace; }

.service-detail { padding: 50px 5%; }
.service-block { background: var(--surface); border: 3px solid var(--primary-color); padding: 35px; max-width: 900px; margin: 0 auto; }
.service-block h2 { font-size: 1.5rem; margin-bottom: 18px; color: var(--text-primary); font-family: 'Courier New', monospace; text-transform: uppercase; letter-spacing: 1px; }
.service-block p { color: var(--text-secondary); margin-bottom: 15px; line-height: 1.8; }
.service-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin-top: 20px; }
.service-feature { display: flex; align-items: flex-start; gap: 12px; padding: 12px; background: var(--surface-light); border: 1px solid var(--primary-color); }
.service-feature-icon { font-size: 1.3rem; flex-shrink: 0; }
.service-feature-text h4 { font-size: 0.9rem; color: var(--text-primary); margin-bottom: 3px; font-family: 'Courier New', monospace; text-transform: uppercase; }
.service-feature-text p { font-size: 0.75rem; color: var(--text-secondary); margin: 0; }

.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
