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

:root {
  /* Color Palette - Modern Personal Portfolio */
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: rgba(99, 102, 241, 0.12);
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --accent-pink: #ec4899;
  --accent-green: #10b981;

  --bg-main: #0a0a0f;
  --bg-card: #12121a;
  --bg-card2: #1a1a27;
  --bg-navbar: rgba(10, 10, 15, 0.85);

  --text-main: #f0f0ff;
  --text-muted: #8b8ba7;
  --text-light: #5a5a72;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #6366f1;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: var(--font-sans);
  background: var(--bg-main);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-main);
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem auto;
  line-height: 1.7;
}

/* Glass */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-primary {
  background: var(--primary-light);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.25);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: var(--bg-navbar);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  transition: all 0.2s ease;
}
.navbar-brand img {
  border-radius: 50%;
  border: 2px solid rgba(99,102,241,0.4);
}
.navbar-brand:hover { opacity: 0.85; }
.navbar-brand span { color: #a5b4fc; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  background: rgba(255,255,255,0.05);
}
.nav-link.active { color: #a5b4fc; }

.admin-btn {
  background: var(--primary-light);
  color: #a5b4fc;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.2s ease;
  margin-left: 0.5rem;
  border: 1px solid rgba(99,102,241,0.2);
}
.admin-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.menu-btn {
  display: none;
  font-size: 1.4rem;
  color: var(--text-main);
  cursor: pointer;
  z-index: 110;
  padding: 0.35rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #0f0f1a;
  box-shadow: var(--shadow-xl);
  transition: right 0.3s ease;
  z-index: 90;
  padding: 6rem 1.5rem 2rem;
  border-left: 1px solid var(--border-color);
}
.mobile-drawer.open { right: 0; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #a5b4fc;
  background: var(--primary-light);
}
.mobile-admin-btn {
  margin-top: 1rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===================== HERO PERSONAL ===================== */
.hero-personal {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-main);
  overflow: hidden;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(99,102,241,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.8;
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 65%);
  top: -100px;
  left: -200px;
  filter: blur(40px);
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 65%);
  bottom: -100px;
  right: 10%;
  filter: blur(40px);
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 4rem;
}

.hero-name-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #a5b4fc;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-name-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #a5b4fc, #ec4899, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 500;
  color: #a5b4fc;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.hero-bio {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Profile Photo Card */
.hero-photo-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profile-photo-frame {
  position: relative;
  width: 340px;
  height: 400px;
}

.profile-photo-card {
  position: relative;
  width: 300px;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(99,102,241,0.2);
  box-shadow: 0 0 60px rgba(99,102,241,0.2), 0 0 120px rgba(99,102,241,0.08);
  margin: 20px auto;
}

.profile-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.photo-decoration-1 {
  position: absolute;
  top: -10px;
  right: 0;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(99,102,241,0.35);
  border-radius: 16px;
  background: rgba(99,102,241,0.08);
}

.photo-decoration-2 {
  position: absolute;
  bottom: 10px;
  left: -15px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(236,72,153,0.3);
  border-radius: 12px;
  background: rgba(236,72,153,0.06);
}

.photo-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: floatBadge 3s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  from { transform: translateY(0px); }
  to { transform: translateY(-6px); }
}

/* ===================== SKILLS SECTION ===================== */
.skills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.25s ease;
  cursor: default;
}

.skill-tag:hover {
  background: var(--primary-light);
  border-color: rgba(99,102,241,0.35);
  color: #a5b4fc;
  transform: translateY(-2px);
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99,102,241,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(99,102,241,0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,10,15,0.9) 100%);
}

.service-icon-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(99,102,241,0.4);
  z-index: 2;
}

.service-body {
  padding: 2.5rem 1.5rem 1.75rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================== TIMELINE (Education / Experience) ===================== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #6366f1, rgba(99,102,241,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6366f1;
  border: 3px solid var(--bg-main);
  box-shadow: 0 0 0 2px rgba(99,102,241,0.4);
}

.timeline-header {
  margin-bottom: 0.5rem;
}

.timeline-period {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #a5b4fc;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.timeline-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

/* ===================== STAFF / TESTIMONIALS ===================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.staff-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}
.staff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.2);
  box-shadow: var(--shadow-lg);
}

.staff-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center top;
}

.staff-body { padding: 1.25rem; }
.staff-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-main); }
.staff-position { font-size: 0.82rem; color: #a5b4fc; margin: 0.25rem 0; }
.staff-dept { font-size: 0.77rem; color: var(--text-light); }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(99,102,241,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: rgba(99,102,241,0.25);
  font-family: serif;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99,102,241,0.3);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ===================== GALLERY ===================== */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.45rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.gallery-item:hover { transform: scale(1.02); border-color: rgba(99,102,241,0.3); box-shadow: var(--shadow-lg); }

.gallery-img-wrapper {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img-wrapper { transform: scale(1.05); }

.gallery-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); display: block; }
.lightbox-close { position: absolute; top: -15px; right: -15px; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.25rem; color: white; border: 1px solid rgba(255,255,255,0.2); transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-title { text-align: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 1rem; }

/* Video */
.video-container { position: relative; padding-top: 56.25%; width: 100%; border-radius: var(--radius-sm); overflow: hidden; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ===================== NEWS / BLOG ===================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99,102,241,0.25);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.news-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.news-card:hover .news-img { transform: scale(1.03); }

.news-body { padding: 1.5rem; }
.news-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.75rem; flex-wrap: wrap; }
.news-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; line-height: 1.4; }
.news-summary { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.read-more { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; font-weight: 600; color: #a5b4fc; transition: gap 0.2s ease; }
.read-more:hover { gap: 0.65rem; }

/* ===================== DOWNLOADS ===================== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.download-card:hover {
  border-color: rgba(99,102,241,0.3);
  background: var(--bg-card2);
  transform: translateX(4px);
}
.download-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  flex-shrink: 0;
}
.download-info { flex: 1; }
.download-title { font-size: 0.95rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.25rem; }
.download-meta { font-size: 0.78rem; color: var(--text-light); }
.download-btn { flex-shrink: 0; color: #a5b4fc; transition: transform 0.2s; }
.download-card:hover .download-btn { transform: scale(1.2); }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}
.contact-info-card:hover { border-color: rgba(99,102,241,0.25); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: #a5b4fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-body h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info-body p { font-size: 0.92rem; color: var(--text-main); }
.contact-info-body a { color: #a5b4fc; }
.contact-info-body a:hover { text-decoration: underline; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

/* ===================== FORM ELEMENTS ===================== */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(99,102,241,0.05);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.form-input::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 130px; }
select.form-input { cursor: pointer; }
select.form-input option { background: var(--bg-card); color: var(--text-main); }

/* ===================== FOOTER ===================== */
.footer {
  background: #070710;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s ease;
}
.social-icon:hover {
  background: var(--primary-light);
  color: #a5b4fc;
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-links li a:hover { color: #a5b4fc; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===================== NEWS DETAIL ===================== */
.news-detail-container { max-width: 780px; margin: 0 auto; }
.news-detail-img { width: 100%; height: 400px; background-size: cover; background-position: center; border-radius: var(--radius-lg); margin-bottom: 2.5rem; }
.news-detail-content { font-size: 1rem; line-height: 1.85; color: var(--text-muted); }
.news-detail-content h2, .news-detail-content h3 { color: var(--text-main); font-family: var(--font-display); margin: 2rem 0 1rem; }
.news-detail-content p { margin-bottom: 1.25rem; }
.news-detail-content ul, .news-detail-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.news-detail-content li { margin-bottom: 0.5rem; }
.news-detail-content strong { color: var(--text-main); }
.news-detail-content code { font-family: var(--font-mono); background: rgba(99,102,241,0.1); padding: 0.15em 0.4em; border-radius: 4px; font-size: 0.9em; color: #a5b4fc; }

/* ===================== PROFILE PAGE ===================== */
.about-section { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.about-info h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--text-main); margin-bottom: 1rem; }

.profile-photo-about {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid rgba(99,102,241,0.2);
  box-shadow: 0 0 40px rgba(99,102,241,0.15);
}

/* ===================== MISC ===================== */
.bg-grid {
  background-image: radial-gradient(rgba(99,102,241,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,102,241,0.6); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content-grid { grid-template-columns: 1fr; }
  .hero-photo-side { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .menu-btn { display: flex; }
  .section { padding: 3.5rem 0; }
  .section-title { font-size: 2rem; }
  .hero-title-main { font-size: 2.5rem; }
  .hero-stats-row { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .news-grid, .services-grid, .gallery-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
