/* ===============================
   M&R BUSINESS SOLUTIONS — 3D CSS
   =============================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #00f5ff;
  --secondary: #7b2fff;
  --accent: #ff6b35;
  --bg-dark: #050a1a;
  --bg-card: rgba(10, 20, 50, 0.8);
  --bg-card2: rgba(15, 25, 60, 0.9);
  --text-primary: #e8f4ff;
  --text-muted: #7a9cc4;
  --border-glow: rgba(0, 245, 255, 0.3);
  --gradient-main: linear-gradient(135deg, #00f5ff, #7b2fff);
  --gradient-warm: linear-gradient(135deg, #ff6b35, #f7c84b);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --shadow-glow: 0 0 30px rgba(0, 245, 255, 0.2);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: default;
}

/* ---- CANVAS BACKGROUND ---- */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---- PARTICLES ---- */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  box-shadow: 0 4px 30px rgba(0, 245, 255, 0.1);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

/* 3D Cube Logo */
.logo-cube {
  width: 42px; height: 42px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 8s linear infinite;
}
@keyframes rotateCube {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}
.cube-face {
  position: absolute;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--border-glow);
  background: rgba(0, 245, 255, 0.1);
  backface-visibility: visible;
}
.cube-face.front  { transform: translateZ(21px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(21px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(21px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(21px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(21px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(21px); }

.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.2rem;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gradient-main);
  transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 0; right: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--primary);
  transition: all 0.3s;
}

/* ---- SECTION COMMON ---- */
section {
  position: relative;
  z-index: 2;
  padding: 100px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(0, 245, 255, 0.05);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-desc {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  background: var(--gradient-main);
  color: #050a1a;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.4s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--border-glow);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(0,245,255,0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: 1.1rem; }

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  max-width: 100%;
  padding-left: 0; padding-right: 0;
}
.hero-content {
  flex: 1;
  padding: 0 4rem 0 6rem;
  max-width: 600px;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(0,245,255,0.08);
  border: 1px solid var(--border-glow);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title span { display: block; }
.line-reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: lineReveal 0.8s forwards;
}
.line-reveal:nth-child(1) { animation-delay: 0.3s; }
.line-reveal:nth-child(2) { animation-delay: 0.6s; }
.line-reveal:nth-child(3) { animation-delay: 0.9s; }
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--secondary);
}
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-glow);
}

/* HERO VISUAL */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}
.hero-sphere {
  width: 300px; height: 300px;
  position: relative;
}
.sphere-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
}
.sphere-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(0,245,255,0.3), rgba(123,47,255,0.6));
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  box-shadow: 0 0 60px rgba(0,245,255,0.3), inset 0 0 30px rgba(0,245,255,0.1);
  z-index: 10;
}
.sphere-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid;
  transform-style: preserve-3d;
}
.ring-1 {
  width: 220px; height: 220px;
  margin: -110px 0 0 -110px;
  border-color: rgba(0,245,255,0.5);
  animation: spin1 6s linear infinite;
}
.ring-2 {
  width: 270px; height: 270px;
  margin: -135px 0 0 -135px;
  border-color: rgba(123,47,255,0.4);
  animation: spin2 9s linear infinite;
}
.ring-3 {
  width: 300px; height: 300px;
  margin: -150px 0 0 -150px;
  border-color: rgba(255,107,53,0.3);
  animation: spin3 12s linear infinite;
}
@keyframes spin1 {
  0% { transform: rotateX(60deg) rotateZ(0deg); }
  100% { transform: rotateX(60deg) rotateZ(360deg); }
}
@keyframes spin2 {
  0% { transform: rotateX(20deg) rotateY(0deg); }
  100% { transform: rotateX(20deg) rotateY(360deg); }
}
@keyframes spin3 {
  0% { transform: rotateY(40deg) rotateX(0deg); }
  100% { transform: rotateY(40deg) rotateX(360deg); }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--bg-card2);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(10px);
  z-index: 20;
}
.floating-card i { font-size: 1.2rem; }
.card-1 { top: 10%; left: 5%; animation: float1 4s ease-in-out infinite; }
.card-2 { bottom: 20%; left: -5%; animation: float2 5s ease-in-out infinite; }
.card-3 { top: 25%; right: 0%; animation: float3 3.5s ease-in-out infinite; }
@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(20px) rotate(-2deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(10px) rotate(-1deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.mouse {
  width: 26px; height: 40px;
  border: 2px solid var(--border-glow);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.wheel {
  width: 4px; height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0; transform: translateY(8px); }
}
.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---- SERVICES ---- */
.services {
  background: linear-gradient(180deg, transparent, rgba(10,20,50,0.5), transparent);
  border-radius: 2px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(0,245,255,0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  border-color: var(--primary);
  box-shadow: 0 30px 80px rgba(0,245,255,0.25);
}
.service-card:hover::before { opacity: 0.05; }

.card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,245,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }

.service-card.featured {
  border-color: rgba(123,47,255,0.5);
  background: rgba(15,10,40,0.9);
}
.service-card.featured:hover {
  border-color: var(--secondary);
  box-shadow: 0 30px 80px rgba(123,47,255,0.3);
}
.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  background: var(--gradient-main);
  color: #050a1a;
  border-radius: 100px;
  font-weight: 700;
  z-index: 2;
}
.card-icon-wrap { margin-bottom: 1.5rem; position: relative; z-index: 1; }
.card-icon-3d {
  width: 64px; height: 64px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #050a1a;
  transform: rotateX(10deg) rotateY(-10deg);
  box-shadow: 4px 4px 20px rgba(0,245,255,0.3), -2px -2px 10px rgba(123,47,255,0.2);
  transition: transform 0.3s;
}
.service-card:hover .card-icon-3d {
  transform: rotateX(-10deg) rotateY(10deg) scale(1.1);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative; z-index: 1;
}
.service-card p {
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.service-features li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li i { color: #00ff88; font-size: 0.8rem; }
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.3s;
  position: relative; z-index: 1;
}
.card-cta:hover { gap: 1rem; }

/* ---- PORTFOLIO ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,245,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(0,245,255,0.2);
}
.portfolio-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(10,15,40,0.8);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,10,26,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  z-index: 10;
  backdrop-filter: blur(5px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-content { text-align: center; padding: 1rem; }
.portfolio-overlay-content h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.portfolio-overlay-content p {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.portfolio-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-main);
  color: #050a1a;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
}

/* Portfolio Mockups */
.portfolio-mockup {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.web-mockup {
  background: linear-gradient(135deg, #0a1428, #0f1f50);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px 8px 0 0;
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #ffbd2e; }
.mockup-bar span:nth-child(3) { background: #28ca41; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  height: 18px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
}
.mockup-body { flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 8px; }
.mockup-hero-block {
  height: 60px;
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(123,47,255,0.2));
  border-radius: 6px;
}
.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.mockup-row div {
  height: 40px;
  background: rgba(0,245,255,0.1);
  border-radius: 4px;
}
.mockup-text-lines { display: flex; flex-direction: column; gap: 4px; }
.mockup-text-lines div {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.mockup-text-lines div.short { width: 60%; }

/* App Mockup */
.app-mockup { align-items: center; justify-content: center; }
.phone-frame {
  width: 110px; height: 190px;
  background: #1a1a2e;
  border-radius: 20px;
  border: 2px solid rgba(0,245,255,0.3);
  padding: 8px;
  box-shadow: 0 0 30px rgba(0,245,255,0.15);
}
.phone-screen {
  width: 100%; height: 100%;
  background: #050a1a;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app-header {
  padding: 6px;
  font-family: var(--font-display);
  font-size: 0.55rem;
  color: var(--primary);
  background: rgba(0,245,255,0.1);
  text-align: center;
}
.app-banner {
  height: 50px;
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(123,47,255,0.2));
  margin: 4px;
  border-radius: 6px;
}
.app-icons {
  display: flex;
  justify-content: space-around;
  padding: 8px 4px;
}
.app-icons div {
  width: 28px; height: 28px;
  background: rgba(0,245,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary);
}

/* Ecom Mockup */
.ecom-mockup {
  background: linear-gradient(135deg, #0a1428, #1a0a30);
  padding: 1rem;
}
.ecom-header {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.ecom-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ecom-card {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px;
}
.ecom-img {
  height: 50px;
  background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(123,47,255,0.15));
  border-radius: 6px;
  margin-bottom: 6px;
}
.ecom-price {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--accent);
}

.portfolio-info {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.portfolio-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.3rem 0.8rem;
  background: rgba(0,245,255,0.1);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.portfolio-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ---- LAUNDRY SECTION ---- */
.laundry {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  padding: 100px 4rem;
  background: linear-gradient(180deg, transparent, rgba(15,5,40,0.7), transparent);
}
.laundry-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(123,47,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.2em;
}
.laundry-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Phones 3D */
.laundry-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  perspective: 1000px;
}
.phone-3d { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.phone-3d .phone-body {
  width: 160px;
  background: #0e1425;
  border-radius: 28px;
  border: 2px solid rgba(0,245,255,0.2);
  padding: 15px 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 30px rgba(0,245,255,0.1);
  transition: all 0.3s;
  position: relative;
}
.phone-left .phone-body { transform: rotateY(15deg) rotateX(5deg) translateZ(-20px); }
.phone-right .phone-body { transform: rotateY(-15deg) rotateX(5deg) translateZ(-20px); }
.main-phone .phone-body {
  width: 180px;
  border-color: rgba(0,245,255,0.5);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 60px rgba(0,245,255,0.2);
  transform: translateZ(20px);
}
.phone-3d:hover .phone-body { transform: translateY(-10px) !important; }

.phone-notch {
  width: 50px; height: 16px;
  background: #050a1a;
  border-radius: 10px;
  margin: 0 auto 10px;
}
.phone-screen-content {
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
}
.main-phone .phone-screen-content { height: 280px; }

/* Customer Screen */
.customer { background: #0a0e1c; }
.lapp-nav {
  padding: 8px 10px;
  background: rgba(0,245,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}
.lapp-nav.dark { background: #0f1525; }
.lapp-banner {
  margin: 8px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(123,47,255,0.3));
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,245,255,0.2);
}
.lapp-banner strong { font-size: 1rem; color: var(--primary); }
.lapp-banner span { font-size: 0.7rem; color: var(--text-muted); }
.lapp-services {
  display: flex;
  justify-content: space-around;
  padding: 8px;
}
.lsvc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.6rem;
  color: var(--text-muted);
  cursor: pointer;
}
.lsvc.active { background: rgba(0,245,255,0.1); color: var(--primary); }
.lsvc i { font-size: 0.9rem; }
.lapp-order { padding: 0 8px; }
.order-card {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
}
.order-card i { color: var(--accent); font-size: 0.8rem; }
.order-card strong { display: block; color: var(--text-primary); }
.order-card span { color: var(--text-muted); }
.status-dot {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  margin-left: auto;
  animation: pulse 2s infinite;
}

/* Delivery Screen */
.delivery { background: #080c1a; }
.online-toggle { display: flex; align-items: center; gap: 4px; font-size: 0.65rem; }
.toggle-on {
  width: 24px; height: 12px;
  background: #00ff88;
  border-radius: 6px;
}
.delivery-map {
  flex: 1;
  background: linear-gradient(135deg, #0d1535, #091230);
  margin: 6px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.map-pin {
  position: absolute;
  width: 20px; height: 20px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #050a1a;
}
.map-pin > * { transform: rotate(45deg); }
.pin-a { top: 20%; left: 20%; background: #00ff88; }
.pin-b { bottom: 20%; right: 20%; background: var(--accent); }
.map-route {
  position: absolute;
  top: 35%; left: 30%;
  width: 40%; height: 30%;
  border: 2px dashed rgba(0,245,255,0.4);
  border-radius: 50%;
  border-bottom: none;
}
.delivery-order {
  padding: 6px;
  background: rgba(255,255,255,0.04);
}
.delivery-order strong { font-size: 0.75rem; color: var(--primary); display: block; margin-bottom: 4px; }
.dorder-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.earn { color: #00ff88; font-weight: 600; }
.dorder-btns { display: flex; gap: 4px; }
.d-reject, .d-accept {
  flex: 1;
  padding: 4px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.d-reject { background: rgba(255,50,50,0.2); color: #ff6b6b; }
.d-accept { background: rgba(0,255,136,0.2); color: #00ff88; }

/* Admin Screen */
.admin { background: #06091a; }
.admin-nav { background: rgba(123,47,255,0.15); }
.admin-nav span { color: var(--secondary); }
.admin-stats {
  display: flex;
  justify-content: space-around;
  padding: 8px;
}
.ast { text-align: center; }
.ast strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--primary); }
.ast span { font-size: 0.6rem; color: var(--text-muted); }
.admin-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0 8px 4px;
  height: 70px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
}
.admin-order-list { padding: 6px; display: flex; flex-direction: column; gap: 4px; }
.aol {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  padding: 4px 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}
.aol-name { color: var(--text-primary); }
.aol-status {
  padding: 2px 6px;
  border-radius: 100px;
  font-size: 0.55rem;
}
.aol-status.done { background: rgba(0,255,136,0.15); color: #00ff88; }
.aol-status.pending { background: rgba(247,200,75,0.15); color: #f7c84b; }

.phone-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Feature Pills */
.laundry-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.3s;
}
.feature-pill i { color: var(--primary); }
.feature-pill:hover {
  background: rgba(0,245,255,0.1);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-3d-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
  transition: transform 0.4s;
}
.about-3d-card:hover { transform: rotateX(3deg) rotateY(-3deg); }
.acard-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.acard-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #050a1a;
  box-shadow: 0 0 30px rgba(0,245,255,0.3);
}
.acard-info h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.acard-info span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.acard-divider {
  height: 1px;
  background: var(--border-glow);
  margin-bottom: 1.2rem;
}
.acard-details { margin-bottom: 1.5rem; }
.acard-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
}
.acard-row i { color: var(--primary); width: 16px; }
.acard-skills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.acard-skills span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  color: var(--primary);
  background: rgba(0,245,255,0.05);
}
.about-decorative { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0,245,255,0.15);
  animation: slowSpin 15s linear infinite;
}
.r1 { width: 300px; height: 300px; top: -20px; right: -30px; animation-direction: normal; }
.r2 { width: 200px; height: 200px; bottom: -20px; left: -20px; animation-direction: reverse; }
@keyframes slowSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-content { }
.about-content h2 { margin: 1rem 0; }
.about-content p {
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-highlights { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(0,245,255,0.1);
  border-radius: 12px;
  transition: all 0.3s;
}
.highlight-item:hover {
  border-color: var(--border-glow);
  background: rgba(0,245,255,0.05);
}
.highlight-item i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.highlight-item strong { display: block; color: var(--text-primary); margin-bottom: 0.2rem; }
.highlight-item span { font-family: var(--font-body); color: var(--text-muted); font-size: 0.9rem; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(0,245,255,0.1);
  border-radius: 12px;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--primary);
  transform: translateX(8px);
}
.cc-icon {
  width: 46px; height: 46px;
  background: rgba(0,245,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-card span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-card strong { display: block; margin-top: 0.2rem; }
.contact-card a { color: var(--text-primary); text-decoration: none; font-family: var(--font-body); font-size: 0.95rem; }
.contact-card a:hover { color: var(--primary); }
.contact-tagline {
  padding: 1.5rem;
  border-left: 3px solid var(--primary);
  margin-top: 1rem;
}
.contact-tagline p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.contact-tagline span { font-family: var(--font-body); font-size: 0.75rem; color: var(--text-muted); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { position: relative; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(0,245,255,0.15);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
  appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: #0a1228; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0,245,255,0.1);
  background: rgba(0,245,255,0.03);
}
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: 8px;
  color: #00ff88;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: center;
}
.form-success i { margin-right: 0.5rem; }

/* ---- FOOTER ---- */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-glow);
  background: rgba(5,10,26,0.95);
  padding: 4rem 2rem 2rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.footer-brand p { font-family: var(--font-body); color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(0,245,255,0.1);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--primary); color: #050a1a; transform: translateY(-3px); }
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a {
  font-family: var(--font-body);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--primary); }
.footer-contact p {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact p i { color: var(--primary); width: 16px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,245,255,0.1);
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .hero { flex-direction: column; padding-top: 120px; text-align: center; }
  .hero-content { padding: 0 2rem; max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 350px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: rgba(5,10,26,0.98); justify-content: center; align-items: center; gap: 1rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.5rem; }
  .hamburger { display: flex; z-index: 1000; }
  .laundry-phones { flex-direction: column; align-items: center; }
  .phone-left .phone-body, .phone-right .phone-body { transform: none; }
  .footer-content { grid-template-columns: 1fr; }
  section { padding: 60px 1.5rem; }
  .laundry { padding: 60px 1.5rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}
