/* ===== Neumorphism Portfolio — Blessings Motani ===== */
:root {
  --bg: #e0e5ec;
  --bg-alt: #d1d9e6;
  --text: #2d3436;
  --text-muted: #636e72;
  --accent: #6c5ce7;
  --accent-soft: #a29bfe;
  --success: #00b894;
  --wa: #25D366;
  --shadow-light: #ffffff;
  --shadow-dark: #a3b1c6;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  border: none; border-radius: 50px; cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--bg); color: var(--text);
  box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
}
.btn-primary:hover { box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light); transform: translateY(1px); }
.btn-primary:active { box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light); }
.btn-ghost {
  background: transparent; color: var(--text-muted);
  box-shadow: 4px 4px 10px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
}
.btn-ghost:hover { color: var(--text); box-shadow: 2px 2px 5px var(--shadow-dark), -2px -2px 5px var(--shadow-light); }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all var(--transition); }
.nav.scrolled { background: rgba(224, 229, 236, 0.85); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(163, 177, 198, 0.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; }
.logo-mark {
  display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  background: var(--bg); border-radius: 12px; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}
.nav-links { display: flex; gap: 8px; }
.nav-links a { padding: 10px 18px; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); border-radius: 50px; transition: all var(--transition); }
.nav-links a:hover { color: var(--text); background: var(--bg); box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light); }
.nav-cta {
  padding: 10px 22px; font-size: 0.9rem; font-weight: 600; background: var(--bg); border-radius: 50px;
  box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light); transition: all var(--transition);
}
.nav-cta:hover { box-shadow: 2px 2px 5px var(--shadow-dark), -2px -2px 5px var(--shadow-light); }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: var(--bg); border: none; padding: 12px; border-radius: 12px; cursor: pointer;
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 16px; right: 16px; background: var(--bg); border-radius: var(--radius);
  padding: 24px; flex-direction: column; gap: 12px; z-index: 999;
  box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
  transform: translateY(-20px); opacity: 0; pointer-events: none; transition: all var(--transition);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { padding: 14px 18px; font-weight: 500; border-radius: var(--radius-sm); }

/* ===== HERO with 3D parallax background ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}
.hero-bg-image {
  position: absolute;
  top: -10%;
  right: -2%;
  width: 58%;
  height: 120%;
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  transform-origin: center center;
  transform-style: preserve-3d;
  pointer-events: none;
  opacity: 0.65;
  filter: drop-shadow(14px 14px 28px rgba(163, 177, 198, 0.5));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    var(--bg) 0%,
    var(--bg) 38%,
    rgba(224, 229, 236, 0.7) 52%,
    rgba(224, 229, 236, 0.15) 70%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.orb {
  position: absolute; border-radius: 50%; background: var(--bg);
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light); opacity: 0.5;
}
.orb-1 { width: 280px; height: 280px; top: 10%; right: 5%; animation: float 12s ease-in-out infinite; }
.orb-2 { width: 180px; height: 180px; bottom: 20%; left: 8%; animation: float 10s ease-in-out infinite reverse; }
.orb-3 { width: 120px; height: 120px; top: 40%; left: 50%; animation: float 14s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -30px); } }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 640px;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: var(--bg); border-radius: 50px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted); margin-bottom: 32px;
  box-shadow: 5px 5px 12px var(--shadow-dark), -5px -5px 12px var(--shadow-light);
}
.status-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.4); } 50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 184, 148, 0); } }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero-title .outline { -webkit-text-stroke: 2px var(--text); color: transparent; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; }
.stat-card {
  background: var(--bg); padding: 28px 16px; border-radius: var(--radius);
  box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light); transition: all var(--transition);
  text-align: center;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light); }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

.section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block; padding: 8px 16px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); background: var(--bg); border-radius: 50px; margin-bottom: 16px;
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
.section-desc { margin-top: 16px; color: var(--text-muted); max-width: 560px; font-size: 1.05rem; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}
.about-photo { display: flex; justify-content: center; }
.photo-frame {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
  background: var(--bg);
}
.photo-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  min-height: 200px;
  background: var(--bg-alt);
}
.photo-frame:hover img { transform: scale(1.03); }
.about-text p { margin-bottom: 20px; font-size: 1.05rem; color: var(--text-muted); }
.about-text strong { color: var(--text); font-weight: 600; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.tag {
  padding: 8px 16px; font-size: 0.85rem; font-weight: 500; background: var(--bg); border-radius: 50px;
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light); transition: all var(--transition);
}
.tag:hover { box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light); }
.location-card {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--bg); border-radius: var(--radius);
  box-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light); margin-top: 8px;
}
.location-icon { font-size: 1.75rem !important; color: var(--accent); }
.location-card strong { display: block; font-size: 1rem; }
.location-card span { font-size: 0.85rem; color: var(--text-muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg); padding: 36px 28px; border-radius: var(--radius-lg);
  box-shadow: 9px 9px 18px var(--shadow-dark), -9px -9px 18px var(--shadow-light); transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light); }
.service-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: var(--bg); border-radius: 16px; margin-bottom: 20px;
  box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}
.service-icon .material-icons-round { font-size: 1.6rem; color: var(--accent); }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: 0.875rem; font-weight: 500; padding: 8px 14px; background: var(--bg); border-radius: 8px;
  box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
}
.cta-card { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, #e8ecf2, #d8dee8); }
.cta-card .btn { margin-top: auto; align-self: flex-start; }

.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card {
  background: var(--bg); padding: 36px 32px; border-radius: var(--radius-lg);
  box-shadow: 9px 9px 18px var(--shadow-dark), -9px -9px 18px var(--shadow-light); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light); }
.project-badge {
  display: inline-block; align-self: flex-start; padding: 6px 14px; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); background: var(--bg); border-radius: 50px; margin-bottom: 16px;
  box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
}
.project-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
.project-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
.project-link { font-weight: 600; font-size: 0.95rem; color: var(--accent); transition: all var(--transition); }
.project-link:hover { color: var(--text); }
.more-card { background: linear-gradient(145deg, #e8ecf2, #d8dee8); justify-content: center; text-align: center; align-items: center; }
.more-card .btn { margin-top: 8px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; max-width: 960px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--bg); padding: 24px 28px; border-radius: var(--radius);
  box-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
}
.info-label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
.info-card strong, .info-card a { font-size: 1.05rem; font-weight: 600; }
.info-card a:hover { color: var(--accent); }
.status-available { color: var(--success); font-weight: 600; }
.contact-cta-box {
  background: var(--bg); padding: 48px 40px; border-radius: var(--radius-lg);
  box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
  display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center;
}
.cta-wa-icon { font-size: 2.5rem !important; color: var(--wa); margin-bottom: 16px; }
.contact-cta-box h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; }
.contact-cta-box p { color: var(--text-muted); margin-bottom: 28px; max-width: 320px; }

.footer { padding: 40px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding: 28px 32px; background: var(--bg); border-radius: var(--radius);
  box-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.footer-brand .logo-mark { width: 36px; height: 36px; font-size: 0.8rem; }
.footer-copy { font-size: 0.875rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 6px 6px 16px rgba(37, 211, 102, 0.35), -4px -4px 12px rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 8px 8px 20px rgba(37, 211, 102, 0.45), -4px -4px 12px rgba(255, 255, 255, 0.5);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 6px 6px 16px rgba(37, 211, 102, 0.35), -4px -4px 12px rgba(255,255,255,0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 6px 6px 16px rgba(37, 211, 102, 0.35), -4px -4px 12px rgba(255,255,255,0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 280px 1fr; gap: 36px; }
  .hero-bg-image { width: 52%; opacity: 0.55; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .hero-bg-image {
    width: 100%; right: 0; top: 0; height: 55%;
    background-position: center top; opacity: 0.28;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(224, 229, 236, 0.2) 0%, var(--bg) 48%, var(--bg) 100%);
  }
  .hero-content { text-align: center; max-width: 100%; padding-top: 28vh; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo { order: -1; }
  .photo-frame { max-width: 260px; margin: 0 auto; }
  .tags { justify-content: center; }
  .location-card { justify-content: center; text-align: left; }
  .hero { padding: 100px 0 60px; }
  .section { padding: 70px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .stat-num { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
