/* Website 189 - Mirror Reflection Layout - Gray Theme */
:root {
    --primary-color: #4b5563;
    --primary-dark: #1f2937;
    --primary-light: #9ca3af;
    --accent-color: #6b7280;
    --accent-light: #d1d5db;
    --background: #111827;
    --surface: #1f2937;
    --surface-light: #374151;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
}

* { 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; }

.mirror-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.mirror-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, var(--background) 0%, var(--surface) 50%, var(--background) 100%); }
.mirror-bg::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent 49.5%, rgba(75, 85, 99, 0.1) 50%, transparent 50.5%); }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(17, 24, 39, 0.95); backdrop-filter: blur(20px); padding: 0 5%; height: 70px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(156, 163, 175, 0.2); }
.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)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; position: relative; }
.logo-icon::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: inherit; border-radius: 8px; transform: scaleX(-1); opacity: 0.3; filter: blur(2px); }
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; padding: 10px 18px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; position: relative; }
.nav-links a::before { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--primary-light); transition: all 0.3s ease; transform: translateX(-50%); }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::before { width: 60%; }
.nav-links a.active { color: var(--primary-light); }
.nav-links a.active::before { width: 60%; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; }
.mobile-menu-btn span { width: 25px; height: 3px; background: var(--primary-light); border-radius: 3px; transition: all 0.3s ease; }

.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; background: linear-gradient(135deg, #ffffff, var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }

.mirror-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; max-width: 1100px; width: 100%; }
.mirror-card { background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(156, 163, 175, 0.2); border-radius: 16px; padding: 30px; width: 220px; cursor: pointer; transition: all 0.4s ease; position: relative; overflow: hidden; }
.mirror-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(156, 163, 175, 0.1), transparent); transition: all 0.5s ease; }
.mirror-card:hover { transform: translateY(-8px) scale(1.02); border-color: var(--primary-color); box-shadow: 0 15px 40px rgba(75, 85, 99, 0.3); }
.mirror-card:hover::before { left: 100%; }
.mirror-card .icon { font-size: 2.5rem; margin-bottom: 15px; display: block; position: relative; }
.mirror-card .title { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.mirror-card .desc { font-size: 0.85rem; color: var(--text-secondary); }

.cta-buttons { display: flex; gap: 20px; margin-top: 50px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 10; }
.btn { padding: 14px 32px; border-radius: 8px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(75, 85, 99, 0.4); }
.btn-secondary { background: transparent; color: var(--primary-light); border: 1px 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); }
.section-title span { color: var(--primary-light); }

.mirror-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.m-card { background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(156, 163, 175, 0.15); border-radius: 16px; padding: 30px; transition: all 0.4s ease; }
.m-card:hover { transform: translateY(-8px); border-color: var(--primary-color); box-shadow: 0 15px 40px rgba(75, 85, 99, 0.25); }
.m-card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.m-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: var(--text-primary); }
.m-card p { color: var(--text-secondary); line-height: 1.7; }

.stats-section { background: linear-gradient(135deg, var(--surface), var(--background)); padding: 60px 5%; border-top: 1px solid rgba(156, 163, 175, 0.15); border-bottom: 1px solid rgba(156, 163, 175, 0.15); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-item { padding: 20px; }
.stat-number { font-size: 2.6rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-light), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); margin-top: 8px; }

.process-steps { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 25px; }
.process-step { display: flex; align-items: center; gap: 25px; position: relative; }
.process-step::after { content: ''; position: absolute; left: 25px; bottom: -25px; width: 2px; height: 25px; background: var(--primary-color); }
.process-step:last-child::after { display: none; }
.step-num { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; flex-shrink: 0; position: relative; }
.step-num::after { content: ''; position: absolute; top: 50%; left: 100%; width: 20px; height: 2px; background: var(--primary-color); }
.step-content { background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(156, 163, 175, 0.15); border-radius: 12px; padding: 20px 25px; flex: 1; }
.step-content h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--text-primary); }
.step-content p { color: var(--text-secondary); }

.contact-section { max-width: 600px; margin: 0 auto; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; gap: 18px; }
.contact-box { flex: 1; display: flex; align-items: center; gap: 15px; padding: 18px 20px; background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(156, 163, 175, 0.15); border-radius: 12px; transition: all 0.3s ease; }
.contact-box:hover { transform: translateX(10px); border-color: var(--primary-color); }
.contact-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.contact-info h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 3px; }
.contact-info p { font-size: 1rem; color: var(--text-primary); }

.footer { background: var(--surface); padding: 50px 5% 30px; border-top: 1px solid rgba(156, 163, 175, 0.15); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 35px; max-width: 1200px; margin: 0 auto 30px; }
.footer-section h4 { font-size: 1.1rem; margin-bottom: 18px; color: var(--primary-light); }
.footer-section p, .footer-section a { color: var(--text-secondary); text-decoration: none; display: block; margin-bottom: 10px; transition: all 0.3s ease; }
.footer-section a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(156, 163, 175, 0.1); color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 768px) {
    .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: rgba(17, 24, 39, 0.98); flex-direction: column; padding: 20px; gap: 8px; transform: translateY(-100%); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
    .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; }
    .hero-subtitle { font-size: 1rem; }
    .mirror-cards { flex-direction: column; align-items: center; }
    .mirror-card { width: 100%; max-width: 300px; }
    .section-title { font-size: 1.7rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; text-align: center; }
    .process-step { flex-direction: column; align-items: flex-start; padding-left: 70px; }
    .process-step::after { left: 50px; top: 50px; bottom: auto; height: 20px; width: 2px; }
    .step-num { position: absolute; left: 0; }
    .step-num::after { display: none; }
    .step-content { width: 100%; }
    .contact-row { flex-direction: column; }
}

.page-header { padding: 120px 5% 60px; text-align: center; background: linear-gradient(135deg, var(--surface), var(--background)); }
.page-title { font-size: 2.3rem; font-weight: 700; margin-bottom: 15px; background: linear-gradient(135deg, var(--primary-light), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 650px; margin: 0 auto; }

.service-detail { padding: 60px 5%; }
.service-card { background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(156, 163, 175, 0.15); border-radius: 16px; padding: 40px; max-width: 900px; margin: 0 auto; }
.service-card h2 { font-size: 1.6rem; margin-bottom: 18px; color: var(--text-primary); }
.service-card p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 22px; }
.service-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: rgba(75, 85, 99, 0.1); border-radius: 10px; }
.service-item-icon { font-size: 1.3rem; flex-shrink: 0; }
.service-item-text h4 { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 4px; }
.service-item-text p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }

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