/* --- Global fixes for mobile scaling --- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img, svg, video, canvas { max-width: 100%; height: auto; }
/* Ensure sections don't cause horizontal overflow on small screens */
body { overflow-x: hidden; }

:root {
  --grey: #1f1f1f;
  --light-grey: #2a2a2a;
  --accent-green: #2ecc71;
  --accent-blue: #00d4ff;
  --neon-blue: #00bfff;
  --blue-glow: rgba(0, 212, 255, 0.3);
  --accent-red: #e74c3c;
  --contact-orange: #ff6b35;
  --contact-red: #ff4757;
  --orange-glow: rgba(255, 107, 53, 0.3);
  --text: #f5f5f5;
  --font: 'Segoe UI', sans-serif;
  --service-bg: rgba(11,18,35,0.5);
  --sheet-bg: rgba(255,255,255,0.1);
  --monitor-frame: #1a1a1a;
  --monitor-screen: #0d1421;
  --monitor-glow: rgba(0, 212, 255, 0.3);
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  background: linear-gradient(135deg, var(--grey), var(--light-grey));
  color: var(--text);
  font-family: var(--font);
  position: relative;
}

/* Progress Bar */
#progress { position: fixed; top:0; left:0; height:4px; background: var(--accent-green); width:0; z-index:100; }
/* Binary Rain Canvas */
#holo { position: fixed; top:0; left:0; width:100%; height:100%; z-index:0; pointer-events:none; }

/* Navbar */
nav { position: fixed; top:0; left:0; width:100%; padding:1rem 2rem; display:flex; justify-content:space-between; align-items:center; background: rgba(31,31,31,0.95); backdrop-filter: blur(10px); transition: all 0.3s; z-index:90; border-bottom: 1px solid rgba(46,204,113,0.2); }
nav.scrolled { background: rgba(31,31,31,0.98); border-bottom: 1px solid rgba(46,204,113,0.4); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav-left { display: flex; align-items: center; gap: 1rem; }
.logo-container { display: flex; align-items: center; gap: 0.5rem; }
.logo-image { width: 26px; height: 26px; object-fit: contain; border-radius: 4px; transition: all 0.3s ease; }
.logo-image:hover { transform: scale(1.05); filter: brightness(1.1); }
nav .logo { color: var(--accent-green); font-size:1.5rem; font-weight:bold; cursor:pointer; font-family: monospace; }
.tagline { color: #888; font-size: 0.8rem; font-family: monospace; margin-left: 0.5rem; }

/* Desktop Menu */
nav .menu { display:flex; gap:2rem; align-items: center; }
nav .menu a { 
  color: var(--text); 
  text-decoration:none; 
  position:relative; 
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}
nav .menu a::after { content:''; position:absolute; left:0; bottom:-4px; width:0; height:2px; background: var(--accent-green); transition: width 0.3s; }
nav .menu a:hover { background: rgba(46,204,113,0.1); }
nav .menu a:hover::after { width:100%; }

.nav-cta {
  background: linear-gradient(45deg, var(--accent-green), #27ae60);
  color: #fff !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(46,204,113,0.2);
}
.nav-cta:hover {
  background: linear-gradient(45deg, #27ae60, var(--accent-green)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(46,204,113,0.3);
}
.nav-cta::after { display: none; }

/* Mobile Menu Button */
.mobile-menu-btn { display: none; flex-direction: column; cursor: pointer; padding: 0.5rem; gap: 4px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--accent-green); transition: all 0.3s ease; border-radius: 2px; display:block; }
.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(5px, -5px); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100dvh; background: linear-gradient(135deg, rgba(31,31,31,0.98), rgba(42,42,42,0.98)); backdrop-filter: blur(20px); transition: right 0.3s ease; z-index: 95; padding: 6rem 2rem 2rem 2rem; border-left: 1px solid rgba(46,204,113,0.2); }
.mobile-menu.active { right: 0; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu-links a { color: var(--text); text-decoration: none; padding: 1rem; border-radius: 8px; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.1); text-align: center; font-weight: 500; }
.mobile-menu-links a:hover { background: rgba(46,204,113,0.1); border-color: rgba(46,204,113,0.3); }
.mobile-menu-links .nav-cta { background: linear-gradient(45deg, var(--accent-green), #27ae60); color: #fff; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; border: none; }

/* Mobile Overlay */
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100dvh; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 94; }
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Responsive */
@media (max-width: 768px) {
  .menu { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .tagline { display: none; }
  nav .logo { font-size: 1.3rem; }
  .logo-icon { width: 28px; height: 28px; font-size: 1rem; }
}

/* Hero Split */
.hero { display:grid; grid-template-columns:1fr 1fr; height:100vh; z-index:1; }
.welcome { padding:2rem; display:flex; flex-direction:column; justify-content:center; }
.welcome h1 { font-size:clamp(1.8rem, 4.5vw, 3rem); margin-bottom:1rem; }
.welcome h1 span { background: var(--accent-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
.welcome p { font-size:1.1rem; opacity:0.8; }
.terminal { margin:2rem; background: var(--light-grey); border-radius:8px; box-shadow:0 5px 25px rgba(0,0,0,0.5); display:flex; flex-direction:column; }
.term-header { background:#333; padding:0.5rem; display:flex; gap:0.5rem; }
.circle { width:12px; height:12px; border-radius:50%; }
.red { background: var(--accent-red); }
.yellow { background: #f1c40f; }
.green { background: var(--accent-green); }
.term-body { padding:1rem; font-family:monospace; font-size:0.9rem; color:var(--accent-green); position:relative; }
#cmd { display:inline-block; }
.cursor { display:inline-block; width:10px; background:var(--accent-green); margin-left:2px; animation: blink 0.8s steps(2) infinite; }
@keyframes blink { 0%,50%{opacity:1;}51%,100%{opacity:0;} }

/* Stack hero on small screens and avoid cropping */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 100dvh; height:auto; }
  .terminal { margin: 1rem 1rem 2rem; }
}

/* Sections */
section { padding:6rem 2rem; position:relative; z-index:1; }

/* Services */
.services { background: transparent; color:#fff; position: relative; padding: 4rem 2rem 6rem 2rem; }
.services-terminal { background: var(--light-grey); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.7); margin: 0 auto; max-width: 1200px; position: relative; overflow: hidden; opacity: 0; transform: translateY(50px) scale(0.95); transition: all 0.8s ease; }
.services-terminal.animate-in { opacity: 1; transform: translateY(0) scale(1); }
.services-terminal::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%); z-index: 1; }
.services-term-header { background: #333; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; position: relative; z-index: 2; border-bottom: 1px solid #444; }
.services-term-header .title { color: #ccc; font-family: monospace; font-size: 0.9rem; margin-left: 1rem; }
.services-term-body { padding: 3rem 2rem; position: relative; z-index: 2; background: rgba(15, 15, 15, 0.8); }
.services h2 { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; position: relative; z-index: 2; }
.services-content { position: relative; z-index: 2; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 2; }

/* Monitor Card Styling */
.card { position: relative; background: var(--monitor-frame); padding: 1.5rem; border-radius: 15px; box-shadow: 0 0 20px rgba(0,0,0,0.8), inset 0 0 0 3px #333, inset 0 0 0 6px #1a1a1a; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.3s ease; border: 2px solid #333; text-decoration: none; color: inherit; }
.card::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px; background: var(--monitor-screen); border-radius: 8px; z-index: 1; box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 0 15px var(--blue-glow); }
.card::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 8px; background: var(--monitor-frame); border-radius: 4px; z-index: 0; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.9), 0 0 30px var(--blue-glow), 0 0 50px rgba(0, 212, 255, 0.2), inset 0 0 0 3px #444, inset 0 0 0 6px #2a2a2a; }
.card-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1rem; }
.card i { font-size: 2.2rem; margin-bottom: 1rem; color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); filter: drop-shadow(0 0 5px var(--neon-blue)); transition: all 0.3s ease; }
.card h3 { margin-bottom: 0.5rem; color: var(--neon-blue); font-size: 1.1rem; text-shadow: 0 0 5px var(--neon-blue); transition: all 0.3s ease; }
.card p { font-size: 0.95rem; line-height: 1.4; max-width: 180px; color: #b0b0b0; }
.learn-more-btn { background: linear-gradient(45deg, var(--neon-blue), #0088cc); color: #fff; border: none; padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.9rem; font-weight: bold; margin-top: 1rem; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; position: relative; z-index: 4; }
.learn-more-btn:hover { background: linear-gradient(45deg, #0088cc, var(--neon-blue)); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4); }

/* Cards responsive */
@media (max-width: 1024px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .cards { grid-template-columns: 1fr; } }

/* Team */
.team { background: transparent; color:#fff; position: relative; padding: 4rem 2rem 6rem 2rem; }
.team-terminal { background: var(--light-grey); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.7); margin: 0 auto; max-width: 1200px; position: relative; overflow: hidden; opacity: 0; transform: translateY(50px) scale(0.95); transition: all 0.8s ease; }
.team-terminal.animate-in { opacity: 1; transform: translateY(0) scale(1); }
.team-terminal::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%); z-index: 1; }
.team-term-header { background: #333; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; position: relative; z-index: 2; border-bottom: 1px solid #444; }
.team-term-header .title { color: #ccc; font-family: monospace; font-size: 0.9rem; margin-left: 1rem; }
.team-term-body { padding: 3rem 2rem; position: relative; z-index: 2; background: rgba(15, 15, 15, 0.8); }
.team-content { position: relative; z-index: 2; }
.profile-layout { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.profile-image-section { display: flex; flex-direction: column; align-items: center; }
.profile-image { width: 250px; height: 250px; border-radius: 20px; background: linear-gradient(45deg, #333, #555); border: 3px solid #ffd700; box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); display: flex; align-items: center; justify-content: center; font-size: 6rem; position: relative; overflow: hidden; margin-bottom: 1rem; }
.profile-image::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent); animation: shimmer 3s ease-in-out infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } }
.profile-status { background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 20px; padding: 0.5rem 1rem; font-family: monospace; font-size: 0.9rem; color: #ffd700; }
.profile-info { text-align: left; }
.profile-name { font-size: 2.5rem; color: #ffd700; margin-bottom: 0.5rem; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); line-height: 1.2; }
.profile-title { font-size: 1.3rem; color: #ccc; margin-bottom: 1.5rem; font-family: monospace; }
.profile-description { color: #bbb; line-height: 1.6; margin-bottom: 2rem; font-size: 1rem; }
.skills-section { grid-column: 1 / -1; margin-top: 2rem; text-align: center; }
.skills-title { color: #ffd700; font-size: 1.2rem; margin-bottom: 1rem; font-family: monospace; }
.skills-icons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.skill-icon { width: 60px; height: 60px; background: rgba(255, 215, 0, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #ffd700; border: 1px solid rgba(255, 215, 0, 0.3); transition: all 0.3s ease; cursor: pointer; position: relative; }
.skill-icon:hover { background: rgba(255, 215, 0, 0.2); box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); transform: translateY(-5px); }
.skill-icon::after { content: attr(title); position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.8); color: #ffd700; padding: 0.3rem 0.6rem; border-radius: 4px; font-size: 0.7rem; white-space: nowrap; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.skill-icon:hover::after { opacity: 1; }
@media (max-width: 768px) {
  .profile-layout { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .profile-info { text-align: center; }
  .profile-image { width: 200px; height: 200px; font-size: 4rem; }
  .profile-name { font-size: 2rem; }
}

/* About */
/* About */
.about { background: transparent; color:#fff; position: relative; padding: 4rem 2rem 6rem 2rem; }
.about-terminal { background: var(--light-grey); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.7); margin: 0 auto; max-width: 1200px; position: relative; overflow: hidden; opacity: 0; transform: translateY(50px) scale(0.95); transition: all 0.8s ease; }
.about-terminal.animate-in { opacity: 1; transform: translateY(0) scale(1); }
.about-terminal::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%); z-index: 1; }
.about-term-header { background: #333; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; position: relative; z-index: 2; border-bottom: 1px solid #444; }
.about-term-header .title { color: #ccc; font-family: monospace; font-size: 0.9rem; margin-left: 1rem; }
.about-term-body { padding: 3rem 2rem; position: relative; z-index: 2; background: rgba(15, 15, 15, 0.8); }
.about-content { position: relative; z-index: 2; text-align: center; }
.about-content h2 { color: var(--accent-green); font-size: 2.2rem; margin-bottom: 1.5rem; text-shadow: 0 0 10px rgba(46, 204, 113, 0.5); }
.about-intro { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; max-width: 800px; margin-left: auto; margin-right: auto; }

.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 3rem 0; }
.about-card { background: rgba(46, 204, 113, 0.05); padding: 2rem; border-radius: 12px; border: 1px solid rgba(46, 204, 113, 0.2); transition: all 0.3s ease; text-align: center; }
.about-card:hover { background: rgba(46, 204, 113, 0.1); border-color: rgba(46, 204, 113, 0.4); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2); }
.about-icon { font-size: 3rem; margin-bottom: 1rem; filter: drop-shadow(0 0 10px var(--accent-green)); }
.about-card h3 { color: var(--accent-green); font-size: 1.3rem; margin-bottom: 1rem; }
.about-card p { color: #ccc; line-height: 1.6; }

.about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(46, 204, 113, 0.2); }
.feature-item { text-align: center; }
.feature-number { display: block; font-size: 3rem; font-weight: bold; color: var(--accent-green); margin-bottom: 0.5rem; text-shadow: 0 0 20px rgba(46, 204, 113, 0.5); }
.feature-label { display: block; color: #ccc; font-size: 1rem; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
}



/* Contact */
.contact { background: transparent; color:#fff; position: relative; padding: 4rem 2rem 6rem 2rem; }
.contact-terminal { background: var(--light-grey); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.7); margin: 0 auto; max-width: 1200px; position: relative; overflow: hidden; opacity: 0; transform: translateY(50px) scale(0.95); transition: all 0.8s ease; }
.contact-terminal.animate-in { opacity: 1; transform: translateY(0) scale(1); }
.contact-terminal::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%); z-index: 1; }
.contact-term-header { background: #333; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; position: relative; z-index: 2; border-bottom: 1px solid #444; }
.contact-term-header .title { color: #ccc; font-family: monospace; font-size: 0.9rem; margin-left: 1rem; }
.contact-term-body { padding: 3rem 2rem; position: relative; z-index: 2; background: rgba(15, 15, 15, 0.8); }
.contact-content { position: relative; z-index: 2; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.contact-form-section h2 { color: #ffd700; font-size: 2rem; margin-bottom: 1.5rem; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { color: #ffd700; font-family: monospace; font-size: 0.9rem; }
.form-input, .form-textarea { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 8px; padding: 0.75rem 1rem; color: #fff; font-family: inherit; font-size: 0.95rem; transition: all 0.3s ease; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: #ffd700; box-shadow: 0 0 10px rgba(255, 215, 0, 0.2); background: rgba(255, 255, 255, 0.08); }
.form-input::placeholder, .form-textarea::placeholder { color: #888; }
.form-textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.submit-btn { background: linear-gradient(45deg, #ffd700, #ffed4e); border: none; border-radius: 8px; padding: 0.75rem 2rem; color: #000; font-weight: bold; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); }
.contact-info-section { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-section h2 { color: #ffd700; font-size: 2rem; margin-bottom: 1rem; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: rgba(255, 215, 0, 0.05); border-radius: 10px; border: 1px solid rgba(255, 215, 0, 0.2); transition: all 0.3s ease; }
.contact-item:hover { background: rgba(255, 215, 0, 0.1); border-color: rgba(255, 215, 0, 0.4); transform: translateX(5px); }
.contact-icon { width: 40px; height: 40px; background: rgba(255, 215, 0, 0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #ffd700; flex-shrink: 0; }
.contact-text { flex: 1; }
.contact-label { color: #ffd700; font-size: 0.9rem; font-family: monospace; margin-bottom: 0.2rem; }
.contact-value { color: #ccc; font-size: 1rem; }
.availability-status { background: rgba(255, 107, 53, 0.1); border: 1px solid rgba(255, 107, 53, 0.3); border-radius: 10px; padding: 1rem; text-align: center; margin-top: 1rem; }
.status-indicator { display: inline-block; width: 10px; height: 10px; background: var(--contact-orange); border-radius: 50%; margin-right: 0.5rem; animation: pulse-orange 2s infinite; }
@keyframes pulse-orange { 0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--contact-orange); } 50% { opacity: 0.5; box-shadow: 0 0 10px var(--contact-orange); } }
.status-text { color: var(--contact-orange); font-family: monospace; font-size: 0.9rem; }
.response-time { color: #ccc; font-size: 0.8rem; margin-top: 0.5rem; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 2rem; } .contact-form-section h2, .contact-info-section h2 { font-size: 1.5rem; } }

/* Footer */
footer { background: linear-gradient(135deg, #1a1a1a, #0f0f0f); color: var(--text); padding: 4rem 2rem 2rem 2rem; border-top: 1px solid rgba(46,204,113,0.2); position: relative; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo-icon { width: 48px; height: 48px; background: linear-gradient(45deg, var(--accent-green), #27ae60); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; font-weight: bold; }
.footer-logo-image{width: 32px; height: 32px, object-fit: contain; border-radius: 8px; transition: all 0.3s ease;}
.footer-logo-image:hover {transform: scale(1.05); filter: brightness(1.1);}
.footer-logo-text { color: var(--accent-green); font-size: 1.8rem; font-weight: bold; font-family: monospace; }
.footer-description { color: #ccc; line-height: 1.6; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 40px; height: 40px; background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent-green); text-decoration: none; transition: all 0.3s ease; font-size: 1.2rem; }
.social-link:hover { background: rgba(46,204,113,0.2); border-color: var(--accent-green); transform: translateY(-2px); }
.footer-section h3 { color: var(--accent-green); font-size: 1.2rem; margin-bottom: 1rem; font-family: monospace; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s ease; padding: 0.3rem 0; }
.footer-links a:hover { color: var(--accent-green); }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; color: #ccc; }
.footer-contact-item .icon { color: var(--accent-green); width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { color: #888; font-size: 0.9rem; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: #888; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--accent-green); }
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* Service Detail Pages */
.service-hero {
  background: linear-gradient(135deg, var(--grey), var(--light-grey));
  padding: 8rem 2rem 4rem;
  text-align: center;
}

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

.service-icon-large {
  font-size: 5rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px var(--neon-blue));
}

.service-hero h1 {
  font-size: 3rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.service-subtitle {
  font-size: 1.3rem;
  color: #ccc;
}

.service-content {
  padding: 4rem 2rem;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.service-body {
  background: rgba(255,255,255,0.05);
  padding: 3rem;
  border-radius: 12px;
  line-height: 1.8;
}

.service-body h2 {
  color: var(--accent-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.service-body h3 {
  color: var(--neon-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.service-body ul {
  list-style: none;
  padding-left: 0;
}

.service-body ul li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.service-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-cta-box,
.service-info-box {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(46,204,113,0.2);
}

.service-cta-box h3,
.service-info-box h4 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-green), #27ae60);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46,204,113,0.3);
}

.related-services {
  list-style: none;
  padding: 0;
}

.related-services li {
  margin-bottom: 0.8rem;
}

.related-services a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-services a:hover {
  color: var(--neon-blue);
}

@media (max-width: 968px) {
  .service-container {
    grid-template-columns: 1fr;
  }
  
  .service-hero h1 {
    font-size: 2rem;
  }
  
  .service-icon-large {
    font-size: 3rem;
  }
}
