/* ============================================
   PROFESSIONAL PORTFOLIO - STYLE.CSS
   ============================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  color:#1e293b; background:#f8fafc; line-height:1.7; overflow-x:hidden;
}
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  box-sizing: border-box;
}
.section > .container {
  width: 100%;
}
.section-header { text-align:center; margin-bottom:60px; }
.section-title {
  font-size:2.5rem; font-weight:800; color:#0f172a;
  margin-bottom:16px; letter-spacing:-1px;
}
.section-line {
  width:70px; height:4px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  margin:0 auto 16px; border-radius:4px;
}
.section-subtitle { font-size:1.1rem; color:#64748b; font-weight:400; }

/* ----- NAVBAR ----- */
.navbar {
  position:fixed; top:0; left:0; width:100%;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  box-shadow:0 1px 3px rgba(0,0,0,0.06);
  z-index:1000; padding:18px 0; transition:all 0.3s ease;
}
.navbar .container { display:flex; justify-content:space-between; align-items:center; }
.nav-logo {
  font-size:1.5rem; font-weight:900;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; letter-spacing:-0.5px;
}
.nav-menu { display:flex; gap:28px; }
.nav-link {
  font-size:0.85rem; font-weight:600; color:#475569;
  transition:color 0.3s ease; position:relative; padding:4px 0;
  display:inline-flex; align-items:center; gap:6px;
}
.nav-link i {
  font-size:0.78rem;
  opacity:0.7;
  transition:opacity 0.3s ease, transform 0.3s ease;
}
.nav-link::after {
  content:''; position:absolute; bottom:-2px; left:0; width:0; height:2.5px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  transition:width 0.3s ease; border-radius:2px;
}
.nav-link:hover, .nav-link.active { color:#2563eb; }
.nav-link:hover i, .nav-link.active i { opacity:1; transform:scale(1.15); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.hamburger { display:none; cursor:pointer; flex-direction:column; gap:6px; }
.hamburger span { width:28px; height:3px; background:#1e293b; border-radius:3px; transition:all 0.3s ease; }

/* ----- HERO ----- */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding:120px 0 80px;
  background:linear-gradient(135deg,#0f172a 0%,#1e293b 50%,#0f172a 100%);
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-30%; right:-10%;
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(37,99,235,0.12) 0%,transparent 70%);
  border-radius:50%; pointer-events:none;
}
.hero::after {
  content:''; position:absolute; bottom:-20%; left:-5%;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(124,58,237,0.08) 0%,transparent 70%);
  border-radius:50%; pointer-events:none;
}
.hero-content {
  display:flex; align-items:center; gap:80px;
  position:relative; z-index:1;
  animation:fadeInUp 0.8s ease;
}
.hero-left { flex:0 0 320px; display:flex; flex-direction:column; align-items:center; gap:24px; }
.hero-photo { position:relative; }
.photo-frame {
  width:300px; height:300px; border-radius:50%; overflow:hidden;
  position:relative; border:3px solid rgba(255,255,255,0.2);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.photo-frame img { width:100%; height:100%; object-fit:cover; }
.photo-ring {
  position:absolute; top:-6px; left:-6px; right:-6px; bottom:-6px;
  border-radius:50%; border:2px solid rgba(37,99,235,0.4);
  animation:pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,100% { transform:scale(1); opacity:0.4; }
  50% { transform:scale(1.05); opacity:0.8; }
}
.photo-badge {
  position:absolute; bottom:20px; right:20px; width:48px; height:48px;
  background:linear-gradient(135deg,#2563eb,#7c3aed); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#fff;
  font-size:1.4rem; box-shadow:0 4px 16px rgba(37,99,235,0.4);
  border:3px solid #0f172a;
}
.hero-social { display:flex; gap:16px; }
.hs-item {
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
  color:#94a3b8; font-size:1.3rem; transition:all 0.3s ease;
}
.hs-item:hover {
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff; border-color:transparent;
  transform:translateY(-4px); box-shadow:0 8px 24px rgba(37,99,235,0.3);
}
.hero-right { flex:1; }
.hero-greeting {
  font-size:1rem; color:#60a5fa; font-weight:600;
  margin-bottom:8px; letter-spacing:3px; text-transform:uppercase;
}
.hero-name { font-size:3.8rem; font-weight:900; color:#fff; line-height:1.1; margin-bottom:12px; letter-spacing:-1.5px; }
.hero-role { font-size:1.3rem; color:#60a5fa; font-weight:500; margin-bottom:20px; }
.hero-desc { font-size:1.05rem; color:#94a3b8; line-height:1.8; margin-bottom:36px; max-width:560px; }
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; }

.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:16px 36px; border-radius:12px;
  font-weight:600; font-size:0.95rem;
  transition:all 0.3s ease; cursor:pointer; border:none;
}
.btn-primary {
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff; box-shadow:0 4px 20px rgba(37,99,235,0.3);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 8px 32px rgba(37,99,235,0.4); }
.btn-outline { background:transparent; color:#60a5fa; border:2px solid rgba(96,165,250,0.3); }
.btn-outline:hover { background:rgba(96,165,250,0.1); border-color:#60a5fa; transform:translateY(-3px); }

/* ----- ABOUT ME ----- */
.about { background:#fff; }
.about-wrap { display:flex; align-items:center; gap:60px; }
.about-photo { flex:0 0 380px; display:flex; flex-direction:column; align-items:center; gap:20px; }
.about-frame {
  position:relative; width:100%; max-width:340px;
  border-radius:24px; overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.08); border:1px solid #e2e8f0;
}
.about-frame img { width:100%; display:block; }
.about-exp-badge {
  position:absolute; bottom:16px; right:16px;
  background:#fff; border-radius:16px; padding:10px 16px;
  text-align:center; box-shadow:0 4px 16px rgba(0,0,0,0.1);
  border:1px solid #e2e8f0;
}
.aeb-num { display:block; font-size:1.2rem; font-weight:800; color:#2563eb; line-height:1.2; }
.aeb-label { font-size:0.7rem; color:#64748b; font-weight:500; line-height:1.3; }
.about-stats { display:flex; gap:16px; width:100%; }
.stat-item { flex:1; background:#f8fafc; border:1px solid #e2e8f0; border-radius:16px; padding:14px 8px; text-align:center; }
.stat-item i { display:block; font-size:1.1rem; color:#2563eb; margin-bottom:4px; }
.stat-num { display:block; font-size:1.1rem; font-weight:800; color:#0f172a; }
.stat-label { font-size:0.7rem; color:#64748b; font-weight:500; }
.about-text { flex:1; }
.about-greeting { font-size:0.95rem; color:#2563eb; font-weight:600; letter-spacing:2px; text-transform:uppercase; margin-bottom:8px; }
.about-name { font-size:2.2rem; font-weight:700; color:#0f172a; margin-bottom:8px; letter-spacing:-0.5px; }
.about-name span { color:#2563eb; }
.about-role { font-size:1rem; color:#475569; margin-bottom:20px; display:flex; align-items:center; gap:8px; }
.about-role i { color:#f59e0b; }
.about-desc { color:#64748b; font-size:0.95rem; line-height:1.7; margin-bottom:16px; }
.about-tags { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px; }
.about-tags span { padding:6px 16px; background:#f1f5f9; border:1px solid #e2e8f0; border-radius:20px; font-size:0.85rem; font-weight:500; color:#334155; transition:all 0.2s ease; }
.about-tags span:hover { background:#2563eb; color:#fff; border-color:#2563eb; }
.about-buttons { display:flex; gap:12px; flex-wrap:wrap; }

/* ----- EXPERIENCE (ALTERNATING LAYOUT) ----- */
.experience {
  padding-bottom: 0;
  background: #f8fafc;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}
.experience .section-header { padding-bottom: 60px; padding-top: 80px; }

.exp-row {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  background: var(--bg);
}
.exp-row-flip { flex-direction: row-reverse; }

/* --- Text side --- */
.exp-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  color: var(--text);
}

.exp-row-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.9;
}

.exp-row-title {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.exp-row-sub {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sub);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-row-desc {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--sub);
  margin-bottom: 28px;
  max-width: 500px;
}

.exp-row-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-row-chips span {
  padding: 5px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
}

/* --- Photo side --- */
.exp-row-photos {
  flex: 0 0 46%;
  overflow: hidden;
  min-height: 420px;
  max-height: 560px;
  align-self: center;
  border-radius: 16px;
  margin: 40px 40px 40px 0;
}
.exp-row-flip .exp-row-photos {
  margin: 40px 0 40px 40px;
}

.exp-rp-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.exp-row:hover .exp-rp-main { transform: scale(1.04); }

/* Responsive */
@media (max-width: 1024px) {
  .exp-row-text { padding: 52px 48px; }
  .exp-row-title { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .exp-row, .exp-row-flip { flex-direction: column; }
  .exp-row-text { padding: 40px 28px; }
  .exp-row-title { font-size: 1.4rem; }
  .exp-row-photos { flex: 0 0 260px; min-height: 260px; }
}

/* ----- PROJECT LINKS (3 tombol bawah) ----- */
.project-links {
  background: #0f172a;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.plinks-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.plinks-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.plink-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.plink-btn i:first-child { font-size: 1.1rem; }
.plink-arrow { font-size: 0.8rem; opacity: 0; transform: translateX(-6px); transition: all 0.3s ease; }
.plink-btn:hover .plink-arrow { opacity: 1; transform: translateX(0); }

.plink-ecommerce {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.plink-ecommerce:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,99,235,0.5);
}
.plink-company {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.plink-company:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(124,58,237,0.5);
}
.plink-info {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: none;
}
.plink-info:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .plinks-wrap { flex-direction: column; align-items: stretch; }
  .plink-btn { justify-content: center; }
}

/* ----- DOKUMENTASI INTERNAL ----- */
.documentation { background: #f8fafc; }

.doc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.doc-card { background:#fff; border-radius:16px; overflow:hidden; border:1px solid #e2e8f0; transition:all 0.4s ease; box-shadow:0 2px 8px rgba(0,0,0,0.04); }
.doc-card:hover { transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,0.08); border-color:rgba(37,99,235,0.2); }
.doc-img { height:200px; overflow:hidden; cursor:pointer; }
.doc-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.doc-card:hover .doc-img img { transform:scale(1.08); }
.doc-body { padding:20px 24px 24px; }
.doc-body h3 { font-size:1.05rem; font-weight:700; color:#0f172a; margin-bottom:8px; }
.doc-body p { font-size:0.88rem; color:#64748b; line-height:1.6; margin-bottom:12px; }
.doc-tag { display:inline-flex; align-items:center; gap:6px; font-size:0.8rem; font-weight:500; color:#2563eb; background:#eef2ff; padding:4px 14px; border-radius:20px; }

/* ----- INTERN PHOTO GRID (3x3) ----- */
.intern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.intern-photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.intern-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(0,0,0,0.16);
  z-index: 1;
}

.intern-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intern-photo:hover img {
  transform: scale(1.07);
}

.intern-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intern-photo:hover .intern-overlay {
  opacity: 1;
}

.intern-overlay i {
  font-size: 1.5rem;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.intern-photo:hover .intern-overlay i {
  transform: scale(1.1);
}

/* ----- MOMENT CAPTION ----- */
.moment-cap .intern-overlay { display: none; }

.moment-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 18px;
  background: linear-gradient(to top, rgba(10,10,30,0.88) 0%, rgba(10,10,30,0.4) 70%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s ease;
}

.moment-cap:hover .moment-caption {
  opacity: 1;
  transform: translateY(0);
}

.moment-caption h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.moment-caption p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
}

/* Label selalu tampil di bawah foto (tidak hover) */
.moments-grid-cap .moment-cap::after {
  content: attr(data-title);
}

/* ----- EDUCATION ----- */
.education { background:linear-gradient(135deg,#f8fafc 0%,#eef2ff 100%); }
.edu-container { max-width:900px; margin:0 auto; display:flex; flex-direction:column; gap:32px; }
.edu-item { display:flex; gap:28px; background:#fff; border-radius:20px; padding:32px; box-shadow:0 4px 20px rgba(0,0,0,0.04); border:1px solid #e2e8f0; transition:all 0.4s ease; }
.edu-item:hover { box-shadow:0 12px 40px rgba(0,0,0,0.08); transform:translateY(-3px); }
.edu-icon { flex:0 0 60px; height:60px; background:linear-gradient(135deg,#eef2ff,#f5f3ff); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:#2563eb; }
.edu-content { flex:1; }
.edu-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:4px; flex-wrap:wrap; gap:8px; }
.edu-head h3 { font-size:1.3rem; font-weight:700; color:#0f172a; }
.edu-year { font-size:0.85rem; font-weight:600; color:#2563eb; background:#eef2ff; padding:6px 16px; border-radius:20px; }
.edu-content h4 { font-size:1rem; color:#475569; font-weight:500; margin-bottom:4px; }
.edu-content > p { color:#64748b; font-size:0.9rem; margin-bottom:16px; }
.edu-achievements { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:16px; }
.achieve-group h5 { font-size:0.9rem; font-weight:700; color:#0f172a; margin-bottom:8px; display:flex; align-items:center; gap:8px; }
.achieve-group h5 i { color:#f59e0b; }
.achieve-group ul { display:flex; flex-direction:column; gap:6px; }
.achieve-group li { font-size:0.88rem; color:#475569; padding-left:20px; position:relative; }
.achieve-group li::before { content:'\203A'; position:absolute; left:0; color:#2563eb; font-weight:700; font-size:1.2rem; }
.edu-photos { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:12px; }
.edu-photos img { width:100%; height:100px; object-fit:cover; border-radius:8px; cursor:pointer; transition:all 0.3s ease; }
.edu-photos img:hover { transform:scale(1.05); box-shadow:0 4px 16px rgba(0,0,0,0.15); }

/* ----- EXPERTISE ----- */
.expertise { background:#fff; }
.expertise-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.expert-card { background:#f8fafc; padding:32px 28px; border-radius:20px; border:1px solid #e2e8f0; transition:all 0.4s ease; }
.expert-card:hover { transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,0.06); border-color:rgba(37,99,235,0.2); }
.expert-icon { width:64px; height:64px; margin:0 auto 20px; background:linear-gradient(135deg,#eef2ff,#f5f3ff); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:#2563eb; transition:all 0.4s ease; }
.expert-card:hover .expert-icon { background:linear-gradient(135deg,#2563eb,#7c3aed); color:#fff; transform:scale(1.1) rotate(-5deg); }
.expert-card h3 { font-size:1.15rem; font-weight:700; color:#0f172a; margin-bottom:12px; text-align:center; }
.expert-card > p { color:#64748b; font-size:0.9rem; line-height:1.7; margin-bottom:16px; text-align:center; }
.expert-tags { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-bottom:16px; }
.expert-tags span { padding:4px 14px; background:#eef2ff; color:#2563eb; border-radius:20px; font-size:0.8rem; font-weight:500; }
.expert-photos { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin-top:12px; }
.expert-photos img { width:100%; height:80px; object-fit:cover; border-radius:6px; cursor:pointer; transition:all 0.3s ease; }
.expert-photos img:hover { transform:scale(1.08); box-shadow:0 4px 12px rgba(0,0,0,0.15); }

/* ----- SKILLS ----- */
.skills { background:linear-gradient(135deg,#f8fafc 0%,#eef2ff 100%); }
.skills-wrap { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.skill-block-title { font-size:1.3rem; font-weight:700; color:#0f172a; margin-bottom:28px; display:flex; align-items:center; gap:10px; }
.skill-block-title i { color:#2563eb; }
.skill-list { display:flex; flex-direction:column; gap:20px; }
.skill-item { display:flex; flex-direction:column; gap:6px; }
.skill-info { display:flex; justify-content:space-between; font-size:0.95rem; font-weight:600; color:#334155; }
.skill-bar { width:100%; height:10px; background:#e2e8f0; border-radius:10px; overflow:hidden; }
.skill-progress { height:100%; background:linear-gradient(135deg,#2563eb,#7c3aed); border-radius:10px; width:0; transition:width 1.5s ease; }
.skill-desc { font-size:0.82rem; color:#64748b; font-style:italic; line-height:1.5; }

/* ----- SOFT SKILLS ----- */
.soft-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.soft-item { background:#fff; padding:24px 20px; border-radius:16px; text-align:center; border:1px solid #e2e8f0; transition:all 0.3s ease; }
.soft-item:hover { border-color:rgba(37,99,235,0.2); box-shadow:0 8px 24px rgba(0,0,0,0.06); transform:translateY(-4px); }
.soft-icon { width:48px; height:48px; margin:0 auto 12px; background:linear-gradient(135deg,#eef2ff,#f5f3ff); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; color:#2563eb; }
.soft-item h4 { font-size:1rem; font-weight:600; color:#0f172a; margin-bottom:8px; }
.soft-stars { color:#f59e0b; font-size:0.85rem; display:flex; justify-content:center; gap:3px; margin-bottom:8px; }
.soft-item p { font-size:0.82rem; color:#64748b; line-height:1.5; }

/* ----- BEST MOMENTS ----- */
.moments { background:#fff; }
.moments-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.moment-card { background:#f8fafc; border-radius:20px; overflow:hidden; border:1px solid #e2e8f0; transition:all 0.4s ease; }
.moment-card:hover { transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,0.08); }
.moment-image { position:relative; height:220px; overflow:hidden; }
.moment-image > img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; cursor:pointer; }
.moment-card:hover .moment-image > img { transform:scale(1.1); }
.moment-blur { position:absolute; bottom:0; left:0; right:0; height:60%; overflow:hidden; pointer-events:none; }
.moment-blur img { width:100%; height:100%; object-fit:cover; filter:blur(20px); opacity:0.7; transform:scale(1.2); }
.moment-info { padding:20px 24px 24px; }
.moment-info h3 { font-size:1.1rem; font-weight:700; color:#0f172a; margin-bottom:8px; }
.moment-info p { font-size:0.9rem; color:#64748b; line-height:1.6; margin-bottom:12px; }
.moment-date { font-size:0.85rem; color:#2563eb; font-weight:500; display:flex; align-items:center; gap:6px; }

/* ----- CONTACT (Logo Only) ----- */
.contact { background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%); padding:70px 0 80px; }
.contact .section-title { color:#fff; }
.contact .section-line { background:linear-gradient(135deg,#60a5fa,#a78bfa); }
.contact .section-subtitle { color:#94a3b8; }
.contact-grid { display:flex; justify-content:center; align-items:center; gap:40px; flex-wrap:wrap; margin-top:40px; }
.contact-icon {
  width:80px; height:80px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:2.4rem; transition:all 0.3s ease; position:relative;
}
.contact-icon::after {
  content:''; position:absolute; top:-4px; left:-4px; right:-4px; bottom:-4px;
  border-radius:50%; border:2px solid rgba(255,255,255,0.1); transition:all 0.3s ease;
}
.contact-icon.wa { background:rgba(37,211,102,0.2); color:#25D366; }
.contact-icon.ig { background:rgba(221,42,123,0.2); color:#dd2a7b; }
.contact-icon.email { background:rgba(234,67,53,0.2); color:#EA4335; }
.contact-icon.yt { background:rgba(255,0,0,0.2); color:#FF0000; }
.contact-icon:hover { transform:translateY(-6px) scale(1.1); }
.contact-icon.wa:hover { background:#25D366; color:#fff; box-shadow:0 8px 32px rgba(37,211,102,0.4); }
.contact-icon.ig:hover { background:#dd2a7b; color:#fff; box-shadow:0 8px 32px rgba(221,42,123,0.4); }
.contact-icon.email:hover { background:#EA4335; color:#fff; box-shadow:0 8px 32px rgba(234,67,53,0.4); }
.contact-icon.yt:hover { background:#FF0000; color:#fff; box-shadow:0 8px 32px rgba(255,0,0,0.4); }
.contact-icon:hover::after { border-color:transparent; transform:scale(0.8); }

/* ----- FOOTER ----- */
.footer { background:#020617; color:#64748b; padding:32px 0; text-align:center; }
.footer-content p { font-size:0.9rem; margin-bottom:4px; }
.footer-content strong { color:#e2e8f0; }
.footer-content i { color:#ef4444; }

/* ----- MODAL (Lightbox) ----- */
.modal { display:none; position:fixed; top:0; left:0; width:100%; height:100%; z-index:9999; align-items:center; justify-content:center; padding:24px; }
.modal.active { display:flex; }
.modal-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(15,23,42,0.92); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); }
.modal-container { position:relative; background:#fff; border-radius:24px; max-width:900px; width:100%; max-height:90vh; overflow:hidden; box-shadow:0 40px 80px rgba(0,0,0,0.4); animation:modalIn 0.3s ease; }
@keyframes modalIn { from{opacity:0;transform:scale(0.92) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
.modal-header { display:flex; justify-content:space-between; align-items:center; padding:20px 28px; border-bottom:1px solid #e2e8f0; }
.modal-title { font-size:1.2rem; font-weight:700; color:#0f172a; }
.modal-close { width:36px; height:36px; display:flex; align-items:center; justify-content:center; background:#f1f5f9; border:none; border-radius:50%; font-size:1.5rem; color:#64748b; cursor:pointer; transition:all 0.3s ease; line-height:1; }
.modal-close:hover { background:#ef4444; color:#fff; transform:rotate(90deg); }
.modal-body { padding:20px 28px 28px; }
.modal-slider { display:flex; align-items:center; gap:16px; }
.modal-image-wrapper { flex:1; position:relative; border-radius:16px; overflow:hidden; background:#f1f5f9; aspect-ratio:16/10; display:flex; align-items:center; justify-content:center; }
.modal-image-wrapper img { width:100%; height:100%; object-fit:contain; }
.modal-counter { position:absolute; bottom:16px; right:16px; background:rgba(15,23,42,0.75); color:#fff; padding:6px 14px; border-radius:20px; font-size:0.85rem; font-weight:500; backdrop-filter:blur(4px); }
.modal-nav { width:48px; height:48px; display:flex; align-items:center; justify-content:center; background:#fff; border:1px solid #e2e8f0; border-radius:50%; font-size:1.2rem; color:#334155; cursor:pointer; transition:all 0.3s ease; box-shadow:0 4px 12px rgba(0,0,0,0.08); flex-shrink:0; }
.modal-nav:hover { background:#2563eb; color:#fff; border-color:#2563eb; transform:scale(1.05); }
.modal-nav:disabled { opacity:0.3; cursor:not-allowed; transform:none; }

/* ----- RESPONSIVE ----- */
@media (max-width:1024px) {
  .hero-name { font-size:2.8rem; }
  .expertise-grid { grid-template-columns:repeat(2,1fr); }
  .moments-grid { grid-template-columns:repeat(2,1fr); }
  .doc-grid { grid-template-columns:repeat(2,1fr); }
  .intern-grid { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .plinks-wrap { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:768px) {
  .section { padding:64px 0; }
  .section-title { font-size:2rem; }
  .nav-menu {
    position:fixed; top:70px; left:-100%; width:100%;
    flex-direction:column; background:rgba(255,255,255,0.98);
    backdrop-filter:blur(20px); padding:32px 24px; gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:left 0.3s ease; align-items:center;
  }
  .nav-menu.active { left:0; }
  .hamburger { display:flex; }
  .hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(6px,6px); }
  .hamburger.active span:nth-child(2) { opacity:0; }
  .hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(6px,-7px); }
  .hero-content { flex-direction:column; text-align:center; gap:48px; }
  .hero-left { flex:0 0 auto; }
  .photo-frame { width:220px; height:220px; }
  .hero-name { font-size:2.4rem; }
  .hero-desc { margin:0 auto 32px; }
  .hero-buttons { justify-content:center; }
  .about-wrap { flex-direction:column; text-align:center; gap:40px; }
  .about-photo { flex:0 0 auto; max-width:320px; margin:0 auto; }
  .about-name { font-size:1.8rem; }
  .about-tags { justify-content:center; }
  .about-buttons { justify-content:center; }
  .plinks-wrap { grid-template-columns:1fr; }
  .expertise-grid { grid-template-columns:1fr; }
  .moments-grid { grid-template-columns:1fr; }
  .doc-grid { grid-template-columns:1fr; }
  .intern-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .skills-wrap { grid-template-columns:1fr; gap:40px; }
  .soft-grid { grid-template-columns:1fr; }
  .edu-achievements { grid-template-columns:1fr; }
  .edu-item { flex-direction:column; }
}

@media (max-width:480px) {
  .hero-name { font-size:1.8rem; }
  .photo-frame { width:180px; height:180px; }
  .section-title { font-size:1.6rem; }
  .btn { padding:12px 24px; font-size:0.9rem; }
}

/* ----- ANIMATIONS ----- */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ----- CLICKABLE IMAGES ----- */
.exp-gallery img, .edu-photos img, .expert-photos img, .moment-image > img, .doc-img {
  cursor:pointer;
}
