/* =====================================================
   KERGE PHP - Dark Theme v2
   ===================================================== */

:root {
  --bg-body:    #0a0a0a;
  --bg-dark:    #111111;
  --bg-card:    #181818;
  --bg-card2:   #1e1e1e;
  --accent:     #ff6b35;
  --accent2:    #ff9a5c;
  --text:       #ffffff;
  --text-muted: #888888;
  --text-light: #cccccc;
  --border:     #242424;
  --border2:    #2e2e2e;
  --shadow:     rgba(255, 107, 53, 0.15);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: .3s; }
a:hover { color: var(--accent2); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* =====================================================
   PRELOADER
   ===================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-body);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease;
}
#preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.preloader-logo {
  font-size: 48px; font-weight: 700; color: var(--accent);
  letter-spacing: -2px;
}
.preloader-logo span { color: #fff; }
.preloader-bar {
  width: 200px; height: 3px; background: var(--border);
  border-radius: 2px; overflow: hidden;
}
.preloader-bar-inner {
  height: 100%; background: var(--accent);
  border-radius: 2px;
  animation: preloaderAnim 1.5s ease-in-out infinite;
}
@keyframes preloaderAnim {
  0%   { width: 0; margin-left: 0; }
  50%  { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}

/* =====================================================
   NAVBAR
   ===================================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all .4s ease;
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 24px; font-weight: 700;
  color: var(--text); letter-spacing: -1px;
}
.nav-logo span { color: var(--accent); }
.nav-menu {
  display: flex; gap: 8px;
}
.nav-menu a {
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: 50px;
  letter-spacing: .5px; text-transform: uppercase;
  transition: all .3s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text); background: rgba(255,107,53,.15);
  color: var(--accent);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: .3s;
}

/* =====================================================
   HERO / HOME SECTION
   ===================================================== */
#home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#particles-js {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(255,107,53,.05) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 120px 30px 80px;
}
.hero-photo-wrap {
  position: relative; display: inline-block; margin-bottom: 30px;
}
.hero-photo {
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(255,107,53,.1), 0 0 60px rgba(255,107,53,.2);
  animation: photoPulse 3s ease-in-out infinite;
}
.hero-photo-placeholder {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--bg-card);
  border: 4px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(255,107,53,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; color: var(--accent);
  margin: 0 auto;
}
@keyframes photoPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255,107,53,.1), 0 0 60px rgba(255,107,53,.2); }
  50%       { box-shadow: 0 0 0 12px rgba(255,107,53,.05), 0 0 80px rgba(255,107,53,.3); }
}
.hero-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.3);
  color: var(--accent); font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-status::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-name {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.hero-name span { color: var(--accent); }
.hero-typed-wrap {
  font-size: clamp(18px, 3vw, 26px);
  color: var(--text-muted); margin-bottom: 30px;
  min-height: 40px;
}
.typed-cursor { color: var(--accent); animation: cursorBlink .7s infinite; }
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-desc {
  max-width: 500px; margin: 0 auto 40px;
  color: var(--text-muted); font-size: 15px; line-height: 1.8;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--accent); color: #fff;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  letter-spacing: .5px; border: 2px solid var(--accent);
  transition: all .3s; cursor: pointer;
}
.btn-primary:hover {
  background: transparent; color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,53,.3);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: transparent; color: var(--text);
  border-radius: 50px; font-size: 14px; font-weight: 600;
  letter-spacing: .5px; border: 2px solid var(--border2);
  transition: all .3s; cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,53,.15);
}
.hero-social {
  display: flex; gap: 16px; justify-content: center;
}
.hero-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 15px;
  transition: all .3s;
}
.hero-social a:hover {
  background: var(--accent); border-color: var(--accent);
  color: #fff; transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255,107,53,.3);
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: var(--text-muted); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 20px; color: var(--accent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* =====================================================
   SECTIONS - Common
   ===================================================== */
section { padding: 100px 0; }
section:nth-child(even) { background: var(--bg-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
  display: inline-block;
  color: var(--accent); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 20px;
}
.section-title span { color: var(--accent); }
.section-divider {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-divider::before,
.section-divider::after {
  content: ''; width: 50px; height: 2px;
  background: linear-gradient(to right, transparent, var(--accent));
}
.section-divider::after { transform: scaleX(-1); }
.section-divider .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.section-desc {
  max-width: 600px; margin: 0 auto;
  color: var(--text-muted); font-size: 15px; line-height: 1.8;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 30px;
  transition: all .3s;
}
.card:hover {
  border-color: rgba(255,107,53,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; align-items: start;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%; border-radius: 20px; object-fit: cover;
  border: 1px solid var(--border);
}
.about-image-placeholder {
  width: 100%; aspect-ratio: 3/4; border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--border2);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: #fff;
  border-radius: 50%; width: 100px; height: 100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; line-height: 1;
  box-shadow: 0 10px 30px rgba(255,107,53,.4);
}
.about-badge small { font-size: 11px; font-weight: 500; margin-top: 4px; }
.about-tagline {
  color: var(--accent); font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.about-heading {
  font-size: clamp(28px, 3vw, 38px); font-weight: 800;
  letter-spacing: -1px; margin-bottom: 20px; line-height: 1.2;
}
.about-role {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.2);
  color: var(--accent); font-size: 13px; font-weight: 500;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
}
.about-text {
  color: var(--text-muted); font-size: 15px;
  line-height: 1.9; margin-bottom: 30px;
}
.about-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 30px;
}
.about-info-item {
  display: flex; flex-direction: column; gap: 3px;
}
.about-info-label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
}
.about-info-value {
  font-size: 14px; color: var(--text); font-weight: 500;
}
.about-info-value a { color: var(--accent); }

/* Services / What I Do */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px;
  transition: all .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(255,107,53,.05), transparent);
  transition: opacity .3s;
}
.service-card:hover { border-color: rgba(255,107,53,.4); transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent); margin-bottom: 20px;
  transition: all .3s;
}
.service-card:hover .service-icon {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 20px rgba(255,107,53,.4);
}
.service-title {
  font-size: 17px; font-weight: 700; margin-bottom: 12px;
}
.service-desc { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* Testimonials */
.testimonials-section { margin-top: 80px; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform .5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 8px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 20px; right: 30px;
  font-size: 80px; color: var(--accent); opacity: .15;
  font-family: Georgia; line-height: 1;
}
.testimonial-stars { margin-bottom: 16px; color: var(--accent); font-size: 14px; }
.testimonial-text {
  color: var(--text-muted); font-size: 15px; line-height: 1.8;
  font-style: italic; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-photo {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--accent);
}
.testimonial-photo-placeholder {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--bg-card2); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent); flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }
.testimonials-nav {
  display: flex; gap: 10px; justify-content: center; margin-top: 30px;
}
.testimonials-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer; transition: all .3s;
  font-size: 14px;
}
.testimonials-nav button:hover {
  background: var(--accent); border-color: var(--accent);
  color: #fff;
}
.testimonials-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 20px;
}
.testimonials-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border2); border: none; cursor: pointer; transition: all .3s;
  padding: 0;
}
.testimonials-dots button.active {
  background: var(--accent); width: 24px; border-radius: 4px;
}

/* Clients */
.clients-grid {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; align-items: center; margin-top: 60px;
}
.client-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 30px;
  display: flex; align-items: center; justify-content: center;
  min-width: 130px; transition: all .3s; filter: grayscale(1) opacity(.5);
}
.client-item:hover { filter: none; border-color: rgba(255,107,53,.3); }
.client-item img { height: 40px; object-fit: contain; }
.client-placeholder { color: var(--text-muted); font-size: 13px; font-weight: 600; }

/* Fun Facts */
.facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 60px;
}
.fact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 35px 20px;
  text-align: center; transition: all .3s;
}
.fact-card:hover { border-color: rgba(255,107,53,.4); transform: translateY(-4px); }
.fact-icon {
  font-size: 32px; color: var(--accent); margin-bottom: 14px;
}
.fact-number {
  font-size: 44px; font-weight: 800; color: var(--text);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -2px;
}
.fact-label {
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
}

/* =====================================================
   RESUME SECTION
   ===================================================== */
.resume-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-bottom: 60px;
}
.resume-col-title {
  font-size: 20px; font-weight: 700; margin-bottom: 30px;
  display: flex; align-items: center; gap: 12px;
}
.resume-col-title i { color: var(--accent); }
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item {
  position: relative; margin-bottom: 35px;
}
.timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,53,.2);
}
.timeline-year {
  display: inline-block; background: rgba(255,107,53,.1);
  color: var(--accent); font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 50px; margin-bottom: 8px;
  letter-spacing: 1px;
}
.timeline-title {
  font-size: 16px; font-weight: 700; margin-bottom: 5px;
}
.timeline-company {
  color: var(--accent); font-size: 13px; margin-bottom: 10px;
}
.timeline-desc {
  color: var(--text-muted); font-size: 14px; line-height: 1.7;
}

/* Skills */
.skills-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 30px;
}
.skills-col-title {
  font-size: 16px; font-weight: 700; margin-bottom: 24px;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 2px; font-size: 12px;
}
.skill-item { margin-bottom: 22px; }
.skill-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.skill-name { font-size: 14px; font-weight: 600; }
.skill-pct { font-size: 13px; color: var(--accent); font-weight: 700; }
.skill-bar {
  height: 5px; background: var(--border);
  border-radius: 3px; overflow: hidden;
}
.skill-fill {
  height: 100%; background: linear-gradient(to right, var(--accent), var(--accent2));
  border-radius: 3px; width: 0; transition: width 1.5s ease;
}
.skill-fill.animated { width: var(--pct); }

.resume-download {
  text-align: center; margin-top: 50px;
}

/* =====================================================
   PORTFOLIO SECTION
   ===================================================== */
.portfolio-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px; background: var(--bg-card);
  border: 1px solid var(--border); color: var(--text-muted);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .3s; letter-spacing: .5px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent); border-color: var(--accent);
  color: #fff;
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative; border-radius: 12px;
  overflow: hidden; cursor: pointer;
  background: var(--bg-card);
  aspect-ratio: 1;
  transition: transform .3s;
}
.portfolio-item:hover { transform: scale(1.02); }
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-card2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--border2);
}
.portfolio-placeholder i { font-size: 36px; }
.portfolio-placeholder span { font-size: 12px; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(255,107,53,.9);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; opacity: 0; transition: opacity .3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .p-title { color: #fff; font-size: 15px; font-weight: 700; padding: 0 16px; text-align: center; }
.portfolio-overlay .p-cat { color: rgba(255,255,255,.75); font-size: 12px; }
.portfolio-overlay-icons { display: flex; gap: 10px; margin-top: 8px; }
.portfolio-overlay-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; transition: all .2s;
}
.portfolio-overlay-icons a:hover { background: rgba(255,255,255,.3); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { max-width: 900px; width: 90%; position: relative; }
.lightbox-inner img { width: 100%; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: -50px; right: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none;
  cursor: pointer; font-size: 18px; display: flex;
  align-items: center; justify-content: center;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none;
  cursor: pointer; font-size: 18px; display: flex;
  align-items: center; justify-content: center;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; transition: all .3s;
}
.blog-card:hover {
  border-color: rgba(255,107,53,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.blog-thumb {
  position: relative; overflow: hidden; aspect-ratio: 16/10;
}
.blog-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-thumb-placeholder {
  width: 100%; height: 100%; background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--border2);
}
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
}
.blog-body { padding: 24px; }
.blog-meta {
  display: flex; align-items: center; gap: 16px;
  color: var(--text-muted); font-size: 12px; margin-bottom: 14px;
}
.blog-meta i { color: var(--accent); margin-right: 4px; }
.blog-title {
  font-size: 17px; font-weight: 700; margin-bottom: 12px;
  line-height: 1.4;
}
.blog-title a { color: var(--text); }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.blog-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 13px; font-weight: 600;
  border-top: 1px solid var(--border); padding-top: 16px;
  width: 100%; justify-content: space-between;
}
.blog-more:hover { color: var(--accent2); }

/* Blog Single */
.blog-single { max-width: 800px; margin: 0 auto; }
.blog-single h1 { font-size: 36px; margin-bottom: 20px; }
.blog-single .content { color: var(--text-muted); line-height: 1.9; }
.blog-single .content h2 { color: var(--text); margin: 30px 0 15px; }
.blog-single .content p { margin-bottom: 16px; }
.blog-single .content img { border-radius: 12px; margin: 20px 0; }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 14px; margin-bottom: 40px;
  transition: color .3s;
}
.back-btn:hover { color: var(--accent); }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  transition: all .3s;
}
.contact-info-card:hover { border-color: rgba(255,107,53,.3); }
.contact-icon {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--accent);
}
.contact-info-label { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.contact-info-value { font-size: 15px; font-weight: 600; }
.contact-info-value a { color: var(--text); }
.contact-info-value a:hover { color: var(--accent); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: var(--bg-body); border: 1px solid var(--border);
  color: var(--text); border-radius: 10px; font-size: 14px;
  font-family: inherit; outline: none; transition: .3s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,53,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.alert-msg { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; display: none; }
.alert-msg.success { background: rgba(76,175,80,.1); border: 1px solid rgba(76,175,80,.3); color: #4caf50; display: block; }
.alert-msg.error { background: rgba(244,67,54,.1); border: 1px solid rgba(244,67,54,.3); color: #f44336; display: block; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--bg-dark); border-top: 1px solid var(--border);
  padding: 30px 0; text-align: center;
}
.footer-text { color: var(--text-muted); font-size: 13px; }
.footer-text span { color: var(--accent); }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-top: 12px; }
.footer-links a { color: var(--text-muted); font-size: 12px; transition: color .3s; }
.footer-links a:hover { color: var(--accent); }

/* =====================================================
   AOS Animations
   ===================================================== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* Delays */
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }
[data-aos-delay="600"] { transition-delay: .6s; }

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,.98);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 28px; font-weight: 700; color: var(--text);
  letter-spacing: -1px; transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
  position: absolute; top: 30px; right: 30px;
  font-size: 24px; color: var(--text-muted); cursor: pointer; background: none; border: none;
  transition: color .2s;
}
.mobile-close:hover { color: var(--accent); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .resume-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .about-badge { display: none; }
  .lightbox-prev { left: -10px; }
  .lightbox-next { right: -10px; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
