@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-midnight: #070710;
  --bg-slate: #11121e;
  --bg-card: #181929;
  --gold: #D4AF37;
  --gold-light: #f0cc5c;
  --gold-soft: rgba(212,175,55,0.10);
  --gold-glow: rgba(212,175,55,0.25);
  --white: #F0F0F8;
  --gray: #8888aa;
  --light: #c0c0d8;
  --border: rgba(255,255,255,0.07);
  --glass: rgba(255,255,255,0.04);
  --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --nav-h: 78px;
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body { font-family:var(--font-b); background:var(--bg-midnight); color:var(--white); line-height:1.7; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
h1,h2,h3,h4,h5 { font-family:var(--font-h); letter-spacing:-0.02em; line-height:1.15; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; }
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg-midnight); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:10px; }

/* ── LAYOUT ── */
.container { max-width:1240px; margin:0 auto; padding:0 28px; }
.section-pad { padding:110px 0; position:relative; z-index:2; }

/* ── TYPOGRAPHY UTILS ── */
.text-gold { color:var(--gold); }
.text-gray { color:var(--gray); }
.text-center { text-align:center; }
.gradient-text { background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 60%,#fff8e1 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.sec-label { display:inline-flex; align-items:center; gap:12px; font-size:11px; font-weight:700; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.sec-label::before { content:''; width:36px; height:2px; background:var(--gold); border-radius:2px; display:block; }
.sec-title { font-size:clamp(34px,5vw,56px); font-weight:800; color:var(--white); margin-bottom:16px; }
.sec-sub { font-size:clamp(15px,2vw,17px); color:var(--gray); max-width:580px; margin-bottom:55px; line-height:1.8; }
.divider { width:56px; height:4px; background:linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius:2px; margin:18px 0 55px; }
.divider.cx { margin-left:auto; margin-right:auto; }

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

/* ── HEADER ── */
header { position:fixed; top:0; left:0; width:100%; height:var(--nav-h); z-index:999; transition:var(--transition); }
header.scrolled { height:64px; background:rgba(7,7,16,0.92); backdrop-filter:blur(24px); border-bottom:1px solid var(--border); box-shadow:0 8px 32px rgba(0,0,0,0.4); }
.nav-flex { display:flex; justify-content:space-between; align-items:center; height:100%; }
.logo { font-family:var(--font-h); font-size:26px; font-weight:900; color:var(--white); letter-spacing:-1px; position:relative; z-index:1001; }
.logo span { color:var(--gold); }
.nav-links { display:flex; gap:38px; align-items:center; }
.nav-links li a { font-size:12px; font-weight:700; color:var(--gray); text-transform:uppercase; letter-spacing:1.5px; transition:var(--transition); position:relative; padding-bottom:3px; }
.nav-links li a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--gold); transition:width 0.3s ease; }
.nav-links li a:hover, .nav-links li a.active { color:var(--gold); }
.nav-links li a:hover::after, .nav-links li a.active::after { width:100%; }
.nav-cta { background:var(--gold) !important; color:var(--bg-midnight) !important; padding:10px 22px !important; border-radius:6px; font-weight:800 !important; }
.nav-cta:hover { background:var(--gold-light) !important; transform:translateY(-2px); box-shadow:0 8px 20px var(--gold-glow) !important; }
.nav-cta::after { display:none !important; }
.menu-btn { display:none; background:none; border:none; font-size:24px; color:var(--gold); cursor:pointer; z-index:1001; padding:10px; position:absolute; right:20px; top:50%; transform:translateY(-50%); }

@media (max-width:880px) {
  .menu-btn { display:flex; align-items:center; justify-content:center; }
  header { height:60px; background:var(--bg-midnight); }
  .nav-flex { padding:0 50px 0 20px; }
  .hero-inner { padding:90px 20px 50px; gap:40px; }
  .hero-name { font-size:40px; }
  .hero-subtitle { font-size:16px; }
  .hero-desc { font-size:14px; }
  .hero-img-tilt { max-width:220px; }
}

/* ── HERO ── */
.hero-section { position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; z-index:1; }
.hero-section::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background:radial-gradient(ellipse at 65% 50%,rgba(212,175,55,0.06) 0%,transparent 60%),radial-gradient(ellipse at 20% 80%,rgba(50,50,150,0.07) 0%,transparent 50%); pointer-events:none; }
.hero-inner { display:grid; grid-template-columns:1.15fr 0.85fr; align-items:center; gap:60px; width:100%; padding-top:100px; position:relative; z-index:2; }
.hero-tag { display:inline-flex; align-items:center; gap:10px; background:var(--gold-soft); border:1px solid rgba(212,175,55,0.22); border-radius:100px; padding:7px 18px; font-size:12px; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:2px; margin-bottom:26px; width:fit-content; }
.hero-name { font-size:clamp(46px,7vw,84px); font-weight:900; color:var(--white); line-height:1.04; margin-bottom:18px; overflow:hidden; }
.hero-name .word { display:inline-block; overflow:hidden; margin-right:0.25em; }
.hero-name .char { display:inline-block; transform:translateY(115%) rotateX(-30deg); opacity:0; transform-origin:top center; will-change:transform,opacity; }
.hero-subtitle { font-size:clamp(18px,2.5vw,24px); color:var(--gold); font-weight:600; margin-bottom:26px; font-family:var(--font-h); min-height:1.6em; }
.hero-desc { font-size:17px; color:var(--gray); max-width:500px; line-height:1.8; margin-bottom:42px; }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }
.hero-socials { display:flex; gap:14px; margin-top:38px; }
.hero-social-link { width:42px; height:42px; border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--gray); transition:var(--transition); }
.hero-social-link:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-soft); transform:translateY(-4px); }
.hero-image-side { display:flex; justify-content:center; align-items:center; position:relative; }
.hero-img-tilt { width:100%; max-width:410px; }
.hero-img-glow { position:absolute; inset:-20px; background:radial-gradient(ellipse,rgba(212,175,55,0.18) 0%,transparent 70%); border-radius:30px; pointer-events:none; animation:pulseGlow 4s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100%{opacity:0.55;transform:scale(1)} 50%{opacity:1;transform:scale(1.06)} }
.hero-img-container { position:relative; z-index:1; border-radius:22px; overflow:hidden; border:2px solid rgba(212,175,55,0.28); box-shadow:0 30px 80px rgba(0,0,0,0.7),0 0 50px rgba(212,175,55,0.12); }
.hero-img-container img { width:100%; height:auto; object-fit:cover; display:block; transition:transform 0.6s ease; }
.hero-img-container:hover img { transform:scale(1.04); }
.hero-img-badge { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); background:rgba(7,7,16,0.88); backdrop-filter:blur(15px); border:1px solid rgba(212,175,55,0.2); border-radius:12px; padding:12px 20px; text-align:center; white-space:nowrap; }
.badge-val { font-size:22px; font-weight:900; color:var(--gold); font-family:var(--font-h); display:block; line-height:1; }
.badge-label { font-size:10px; color:var(--gray); text-transform:uppercase; letter-spacing:1.5px; }
.scroll-indicator { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; z-index:10; opacity:0; animation:fadeUp 1s ease 2.5s forwards; }
.scroll-indicator span { font-size:10px; letter-spacing:3px; color:var(--gray); text-transform:uppercase; }
.scroll-mouse { width:22px; height:35px; border:2px solid rgba(255,255,255,0.18); border-radius:20px; position:relative; }
.scroll-mouse::after { content:''; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:8px; background:var(--gold); border-radius:3px; animation:scrollWheel 2s ease infinite; }
@keyframes scrollWheel { 0%{transform:translateX(-50%) translateY(0);opacity:1} 100%{transform:translateX(-50%) translateY(13px);opacity:0} }
@keyframes fadeUp { to{opacity:1;transform:translateY(-5px) translateX(-50%)} }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:10px; padding:15px 34px; border-radius:8px; font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; transition:var(--transition); cursor:pointer; border:2px solid transparent; position:relative; overflow:hidden; }
.btn-gold { background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%); color:var(--bg-midnight); border-color:var(--gold); }
.btn-gold:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(212,175,55,0.38); }
.btn-outline { background:transparent; border-color:rgba(212,175,55,0.4); color:var(--gold); }
.btn-outline:hover { background:var(--gold-soft); border-color:var(--gold); transform:translateY(-4px); box-shadow:0 10px 30px rgba(212,175,55,0.12); }
.btn-sm { padding:10px 22px; font-size:12px; }
.btn-danger { border-color:rgba(255,77,77,0.4) !important; color:#ff6b6b !important; }
.btn-danger:hover { background:rgba(255,77,77,0.08) !important; border-color:#ff4d4d !important; }

/* ── STATS ── */
.stats-section { padding:70px 0; position:relative; z-index:2; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:20px; overflow:hidden; }
.stat-card { background:var(--bg-slate); padding:38px 28px; text-align:center; transition:var(--transition); }
.stat-card:hover { background:var(--bg-card); }
.stat-card i { font-size:26px; color:var(--gold); margin-bottom:14px; display:block; }
.stat-number { font-size:clamp(34px,4vw,50px); font-weight:900; font-family:var(--font-h); background:linear-gradient(135deg,var(--gold),var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; line-height:1; margin-bottom:8px; }
.stat-label { font-size:12px; color:var(--gray); text-transform:uppercase; letter-spacing:1.5px; font-weight:600; }

/* ── SKILLS ── */
.skills-filter { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:48px; }
.filter-btn { background:transparent; border:1px solid var(--border); color:var(--gray); padding:10px 24px; border-radius:100px; font-size:13px; font-weight:600; cursor:pointer; transition:var(--transition); }
.filter-btn.active, .filter-btn:hover { background:var(--gold-soft); border-color:var(--gold); color:var(--gold); }
.skills-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(255px,1fr)); gap:22px; }
.skill-card { background:var(--bg-slate); border:1px solid var(--border); border-radius:18px; padding:30px 26px; transition:var(--transition); position:relative; overflow:hidden; }
.skill-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:3px; background:linear-gradient(90deg,transparent,var(--gold),transparent); transform:translateX(-100%); transition:transform 0.6s ease; }
.skill-card:hover::before { transform:translateX(100%); }
.skill-card:hover { border-color:rgba(212,175,55,0.28); transform:translateY(-8px) rotateX(2deg); box-shadow:var(--shadow); background:var(--bg-card); }
.skill-top { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.skill-icon { width:48px; height:48px; background:var(--gold-soft); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--gold); transition:var(--transition); flex-shrink:0; }
.skill-card:hover .skill-icon { background:var(--gold); color:var(--bg-midnight); transform:scale(1.1) rotate(5deg); }
.skill-name { font-size:15px; font-weight:700; color:var(--white); font-family:var(--font-h); }
.skill-cat { font-size:11px; color:var(--gray); text-transform:uppercase; letter-spacing:1px; margin-top:2px; }
.skill-bar-wrap { background:rgba(255,255,255,0.06); border-radius:10px; height:5px; overflow:hidden; margin-top:12px; }
.skill-bar { height:100%; background:linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius:10px; width:0%; transition:width 1.4s cubic-bezier(0.4,0,0.2,1); box-shadow:0 0 8px rgba(212,175,55,0.4); }
.skill-meta { display:flex; justify-content:space-between; font-size:11px; color:var(--gray); margin-top:7px; }
.skill-meta span:last-child { color:var(--gold); font-weight:700; }
.skill-card.hidden { display:none; }

/* ── PROJECTS ── */
.projects-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(350px,1fr)); gap:28px; }
.project-card { background:var(--bg-slate); border:1px solid var(--border); border-radius:20px; overflow:hidden; transition:var(--transition); position:relative; }
.project-card:hover { border-color:rgba(212,175,55,0.28); transform:translateY(-10px); box-shadow:0 40px 80px rgba(0,0,0,0.55); }
.project-img-box { position:relative; height:230px; overflow:hidden; }
.project-img-box img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.project-card:hover .project-img-box img { transform:scale(1.08); }
.project-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(7,7,16,0.95) 0%,rgba(7,7,16,0.12) 60%,transparent 100%); display:flex; align-items:flex-end; padding:20px; opacity:0; transition:opacity 0.4s ease; }
.project-card:hover .project-overlay { opacity:1; }
.project-overlay-btn { padding:8px 18px; border-radius:6px; background:var(--gold); color:var(--bg-midnight); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; transition:var(--transition); }
.project-overlay-btn:hover { background:var(--gold-light); }
.project-body { padding:26px; }
.project-cat { font-size:11px; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:2px; margin-bottom:8px; }
.project-title { font-size:19px; font-weight:700; color:var(--white); margin-bottom:10px; font-family:var(--font-h); }
.project-desc { font-size:14px; color:var(--gray); line-height:1.7; margin-bottom:18px; }
.project-tags { display:flex; gap:8px; flex-wrap:wrap; }
.project-tag { padding:4px 12px; background:rgba(212,175,55,0.08); border:1px solid rgba(212,175,55,0.14); border-radius:100px; font-size:11px; color:var(--gold); font-weight:600; }

/* ── ABOUT PAGE ── */
.about-grid { display:grid; grid-template-columns:0.85fr 1.15fr; gap:80px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-frame { border-radius:22px; overflow:hidden; border:2px solid rgba(212,175,55,0.18); box-shadow:0 40px 80px rgba(0,0,0,0.55); position:relative; z-index:1; }
.about-img-frame img { width:100%; display:block; aspect-ratio:3/4; object-fit:cover; transition:transform 0.6s ease; }
.about-img-frame:hover img { transform:scale(1.04); }
.about-deco1 { position:absolute; top:-20px; right:-20px; width:110px; height:110px; border:2px solid rgba(212,175,55,0.25); border-radius:18px; z-index:0; }
.about-deco2 { position:absolute; bottom:-18px; left:-18px; width:75px; height:75px; background:var(--gold-soft); border-radius:12px; z-index:0; }
.about-exp-tag { position:absolute; top:26px; right:-28px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); color:var(--bg-midnight); padding:16px 20px; border-radius:14px; text-align:center; z-index:2; box-shadow:0 20px 40px rgba(212,175,55,0.28); }
.exp-num { font-size:34px; font-weight:900; font-family:var(--font-h); display:block; line-height:1; }
.exp-text { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:1px; }
.about-highlights { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin:28px 0; }
.hi-item { display:flex; align-items:center; gap:12px; padding:14px 18px; background:var(--bg-slate); border:1px solid var(--border); border-radius:12px; transition:var(--transition); }
.hi-item:hover { border-color:rgba(212,175,55,0.28); background:var(--bg-card); }
.hi-item i { color:var(--gold); font-size:16px; width:20px; flex-shrink:0; }
.hi-item span { font-size:13px; font-weight:600; color:var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding:155px 0 75px; text-align:center; position:relative; z-index:2; }
.page-hero-title { font-size:clamp(42px,7vw,78px); font-weight:900; color:var(--white); margin-bottom:18px; }
.page-hero-sub { font-size:17px; color:var(--gray); max-width:480px; margin:0 auto; line-height:1.8; }

/* ── CONTACT ── */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:58px; align-items:flex-start; }
.contact-info-title { font-size:clamp(26px,4vw,40px); font-weight:800; color:var(--white); margin-bottom:16px; font-family:var(--font-h); }
.contact-info-sub { font-size:15px; color:var(--gray); line-height:1.8; margin-bottom:38px; }
.contact-items { display:flex; flex-direction:column; gap:20px; }
.c-item { display:flex; align-items:center; gap:18px; padding:18px 22px; background:var(--bg-slate); border:1px solid var(--border); border-radius:14px; transition:var(--transition); }
.c-item:hover { border-color:rgba(212,175,55,0.28); background:var(--bg-card); transform:translateX(8px); }
.c-icon { width:48px; height:48px; background:var(--gold-soft); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--gold); flex-shrink:0; transition:var(--transition); }
.c-item:hover .c-icon { background:var(--gold); color:var(--bg-midnight); }
.c-label { font-size:11px; color:var(--gray); text-transform:uppercase; letter-spacing:1.2px; margin-bottom:3px; }
.c-value { font-size:15px; font-weight:600; color:var(--white); }
.contact-socials { margin-top:32px; display:flex; gap:12px; }
.social-link { width:44px; height:44px; border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:17px; color:var(--gray); transition:var(--transition); }
.social-link:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-soft); transform:translateY(-4px); }
.glass-form { background:rgba(17,18,30,0.72); backdrop-filter:blur(20px); border:1px solid var(--border); border-radius:24px; padding:46px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:12px; font-weight:700; color:var(--gray); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:9px; }
.form-group input, .form-group textarea, .form-group select { width:100%; padding:14px 16px; background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:10px; color:var(--white); font-family:inherit; font-size:15px; transition:var(--transition); resize:none; appearance:none; }
.form-group select option { background-color: var(--bg-midnight); color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline:none; border-color:var(--gold); background:rgba(212,175,55,0.04); box-shadow:0 0 0 3px rgba(212,175,55,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color:rgba(136,136,170,0.45); }

/* ── FOOTER ── */
footer { padding:75px 0 32px; background:var(--bg-slate); border-top:1px solid var(--border); position:relative; z-index:2; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:45px; margin-bottom:55px; }
.footer-brand p { font-size:14px; color:var(--gray); line-height:1.8; margin-top:18px; max-width:265px; }
.footer-heading { font-size:12px; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:2px; margin-bottom:22px; }
.footer-links { display:flex; flex-direction:column; gap:12px; }
.footer-links a { font-size:14px; color:var(--gray); transition:var(--transition); }
.footer-links a:hover { color:var(--gold); transform:translateX(4px); display:inline-block; }
.footer-contact-item { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--gray); margin-bottom:12px; }
.footer-contact-item i { color:var(--gold); width:16px; }
.footer-socials { display:flex; gap:12px; margin-top:4px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:32px; border-top:1px solid var(--border); font-size:13px; color:var(--gray); flex-wrap:wrap; gap:14px; }
.admin-discreet { opacity:0.15; color:var(--gray); font-size:11px; transition:opacity 0.3s ease; }
.admin-discreet:hover { opacity:0.5; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position:fixed; bottom:28px; right:28px; width:56px; height:56px; background:linear-gradient(135deg,#25D366,#128C7E); color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:26px; z-index:1001; box-shadow:0 8px 24px rgba(37,211,102,0.38); transition:var(--transition); animation:floatWA 3s ease-in-out infinite; }
@keyframes floatWA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.whatsapp-float:hover { transform:translateY(-4px) scale(1.1) !important; animation:none; box-shadow:0 14px 38px rgba(37,211,102,0.5) !important; }

/* ── REVEAL CLASSES (GSAP targets) ── */
.reveal-up { opacity:0; transform:translateY(50px); }
.reveal-left { opacity:0; transform:translateX(-55px); }
.reveal-right { opacity:0; transform:translateX(55px); }
.reveal-scale { opacity:0; transform:scale(0.86); }
.reveal-fade { opacity:0; }

/* ── GLASSMORPHISM CARD ── */
.glass-card { background:rgba(17,18,30,0.62); backdrop-filter:blur(20px); border:1px solid var(--border); border-radius:20px; }

/* ── ADMIN PANEL ── */
.admin-body { display:flex; min-height:100vh; background:var(--bg-midnight); }
.admin-sidebar { width:265px; min-height:100vh; background:var(--bg-slate); border-right:1px solid var(--border); position:fixed; top:0; left:0; z-index:100; display:flex; flex-direction:column; }
.admin-sidebar-logo { padding:28px 26px 20px; border-bottom:1px solid var(--border); }
.admin-nav { flex:1; padding:18px 14px; overflow-y:auto; }
.admin-nav-item { display:flex; align-items:center; gap:13px; padding:12px 15px; border-radius:10px; color:var(--gray); font-size:14px; font-weight:600; cursor:pointer; transition:var(--transition); border:none; background:none; width:100%; text-align:left; text-decoration:none; }
.admin-nav-item i { font-size:15px; width:18px; }
.admin-nav-item:hover, .admin-nav-item.active { background:var(--gold-soft); color:var(--gold); border:1px solid rgba(212,175,55,0.14); }
.admin-content-area { margin-left:265px; flex:1; padding:28px 36px; min-height:100vh; }
.admin-top-bar { display:flex; justify-content:space-between; align-items:center; padding:18px 26px; background:var(--bg-slate); border:1px solid var(--border); margin-bottom:36px; border-radius:14px; backdrop-filter:blur(10px); }
.admin-section { display:none; }
.admin-section.active-section { display:block; }
.admin-page-title { font-size:clamp(20px,3vw,30px); font-weight:800; color:var(--white); margin-bottom:28px; }
.admin-card { background:var(--bg-slate); border:1px solid var(--border); border-radius:18px; padding:28px; margin-bottom:28px; }
.admin-card-title { font-size:15px; font-weight:700; color:var(--gold); margin-bottom:22px; display:flex; align-items:center; gap:10px; padding-bottom:14px; border-bottom:1px solid var(--border); }
.admin-form-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:18px; margin-bottom:22px; }
.admin-list-item { display:flex; justify-content:space-between; align-items:center; padding:15px 18px; background:var(--bg-card); border:1px solid var(--border); border-radius:12px; margin-bottom:10px; transition:var(--transition); }
.admin-list-item:hover { border-color:rgba(212,175,55,0.18); transform:translateX(4px); }
.admin-item-info { display:flex; align-items:center; gap:12px; }
.admin-item-icon { width:38px; height:38px; background:var(--gold-soft); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:15px; color:var(--gold); flex-shrink:0; }
.admin-item-name { font-size:14px; font-weight:700; color:var(--white); }
.admin-item-sub { font-size:12px; color:var(--gray); margin-top:2px; }
.admin-item-actions { display:flex; gap:8px; }
.btn-icon { width:33px; height:33px; border-radius:8px; border:1px solid var(--border); background:none; color:var(--gray); font-size:13px; cursor:pointer; transition:var(--transition); display:flex; align-items:center; justify-content:center; }
.btn-icon:hover { border-color:var(--gold); color:var(--gold); }
.btn-icon.delete:hover { border-color:#ff4d4d; color:#ff4d4d; }
.admin-login-page { min-height:100vh; display:flex; align-items:center; justify-content:center; background:var(--bg-midnight); padding:20px; }
.admin-login-card { width:100%; max-width:420px; background:var(--bg-slate); border:1px solid rgba(212,175,55,0.2); border-radius:22px; padding:46px 40px; }
.admin-msg { padding:12px 16px; border-radius:10px; font-size:14px; font-weight:600; display:none; margin-top:14px; }
.admin-msg.error { background:rgba(255,77,77,0.1); border:1px solid rgba(255,77,77,0.28); color:#ff6b6b; }
.admin-msg.success { background:rgba(72,199,142,0.1); border:1px solid rgba(72,199,142,0.28); color:#48c78e; }
.a-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.84); backdrop-filter:blur(10px); z-index:2000; display:none; align-items:center; justify-content:center; padding:20px; }
.a-overlay.open { display:flex; }
.a-modal { background:var(--bg-slate); border:1px solid rgba(212,175,55,0.18); border-radius:20px; padding:38px; width:100%; max-width:560px; position:relative; max-height:90vh; overflow-y:auto; }
.a-modal-title { font-size:19px; font-weight:800; color:var(--gold); margin-bottom:26px; font-family:var(--font-h); }
.a-modal-close { position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:8px; border:1px solid var(--border); background:none; color:var(--gray); font-size:15px; cursor:pointer; transition:var(--transition); display:flex; align-items:center; justify-content:center; }
.a-modal-close:hover { border-color:#ff4d4d; color:#ff4d4d; }
.img-preview { width:100%; height:160px; background:var(--bg-card); border:1px solid var(--border); border-radius:10px; object-fit:cover; display:block; margin-bottom:12px; }

/* ── NOTIFICATION TOAST ── */
.toast { position:fixed; bottom:30px; left:50%; transform:translateX(-50%) translateY(100px); background:var(--bg-card); border:1px solid var(--gold); border-radius:12px; padding:14px 24px; font-size:14px; font-weight:600; color:var(--white); z-index:9999; transition:transform 0.4s cubic-bezier(0.4,0,0.2,1); display:flex; align-items:center; gap:10px; }
.toast.show { transform:translateX(-50%) translateY(0); }
.toast i { color:var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr 1fr; gap:40px; }
  .about-grid { grid-template-columns:1fr; gap:50px; }
  .about-exp-tag { right:0; }
  .footer-grid { grid-template-columns:repeat(2,1fr); gap:35px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:880px) {
  .menu-btn { display:block; }
  .nav-links { display:none !important; flex-direction:column; position:fixed; top:0; left:0; width:100%; height:100vh; background:var(--bg-midnight); justify-content:center; align-items:center; gap:36px; z-index:1000; padding-top:60px; }
  .nav-links.open { display:flex !important; }
  .hero-inner { grid-template-columns:1fr; text-align:center; padding:120px 20px 60px; }
  .hero-image-side { order:-1; }
  .hero-img-tilt { max-width:280px; margin:0 auto; }
  .hero-desc, .hero-btns, .hero-socials { margin-left:auto; margin-right:auto; }
  .hero-btns { justify-content:center; }
  .hero-socials { justify-content:center; }
  .hero-tag { margin-left:auto; margin-right:auto; }
  .contact-grid { grid-template-columns:1fr; gap:40px; }
  .form-row { grid-template-columns:1fr; }
  #hero-canvas { display: none; }
}
@media (max-width:640px) {
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .skills-grid { grid-template-columns:1fr; }
  .projects-grid { grid-template-columns:1fr; }
  .about-highlights { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .glass-form { padding:28px 22px; }
  .admin-content-area { margin-left:0; padding:20px 16px; }
  .admin-sidebar { transform:translateX(-100%); transition:var(--transition); }
  .admin-sidebar.open { transform:translateX(0); }
  .services-grid { grid-template-columns:1fr; }
  .service-card { padding:30px 24px; }
  .service-card .service-icon { width:60px; height:60px; font-size:24px; }
  .sec-title { font-size:28px; }
  .page-hero-title { font-size:36px; }
  .hero-name { font-size:36px; }
  .hero-subtitle { font-size:18px; margin-bottom: 15px; }
  .hero-desc { margin-bottom: 25px; }
  .hero-inner { gap:15px; padding:80px 10px 40px; }
  .hero-img-tilt { max-width:200px; }
}

/* Services Grid */
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:28px; margin-bottom:60px; }
.service-card { background:var(--bg-slate); border:1px solid var(--border); border-radius:20px; padding:40px 32px; transition:var(--transition); text-align:center; }
.service-card:hover { border-color:rgba(212,175,55,0.28); transform:translateY(-10px); box-shadow:0 40px 80px rgba(0,0,0,0.55); }
.service-icon { width:80px; height:80px; background:var(--gold-soft); border-radius:20px; display:flex; align-items:center; justify-content:center; font-size:32px; color:var(--gold); margin:0 auto 24px; transition:var(--transition); }
.service-card:hover .service-icon { background:var(--gold); color:var(--bg-midnight); transform:scale(1.1); }
.service-card h3 { font-size:22px; font-weight:700; color:var(--white); margin-bottom:16px; font-family:var(--font-h); }
.service-card p { font-size:14px; color:var(--gray); line-height:1.7; margin-bottom:20px; }
.service-features { text-align:left; margin-bottom:24px; padding:0; list-style:none; }
.service-features li { font-size:13px; color:var(--gray); padding:8px 0; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:10px; }
.service-features li::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; }
.service-card .btn { width:100%; justify-content:center; }
