/* ================================================================
   PORTFOLIO THEME — Warm Glassmorphism
   Palette: golden yellow · amber · bronze · dark olive · charcoal
   ================================================================ */

/* ──────────── Custom Properties ──────────── */
:root {
  --gold:         #d4a843;
  --gold-light:   #e8c76a;
  --amber:        #c8922a;
  --bronze:       #a67c2e;
  --olive:        #3a3f2b;
  --charcoal:     #1a1a2e;
  --dark-bg:      #0f0f1a;
  --dark-surface: #16162a;
  --glass-bg:     rgba(30, 30, 50, 0.55);
  --glass-bg2:    rgba(40, 40, 65, 0.50);
  --glass-border: rgba(212, 168, 67, 0.12);
  --glass-glow:   rgba(212, 168, 67, 0.06);
  --text-primary: #ede5d8;
  --text-secondary: #c4b89a;
  --text-muted:   #8a7e6a;
  --shadow-strong: 0 8px 32px rgba(0,0,0,.45);
  --shadow-soft:   0 4px 20px rgba(0,0,0,.25);
  --radius-lg:    24px;
  --radius-md:    16px;
  --radius-sm:    10px;
  --transition:   .35s cubic-bezier(.25,.8,.25,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
}

a { text-decoration: none; color: var(--gold); transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

::selection { background: var(--gold); color: var(--charcoal); }

/* ──────────── Navbar ──────────── */
#mainNav {
  background: rgba(15, 15, 26, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,67,.06);
  padding: .8rem 0;
  transition: all .4s;
}
#mainNav.scrolled {
  background: rgba(15, 15, 26, 0.92);
  padding: .5rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary) !important;
}
.brand-accent { color: var(--gold); }
.nav-link {
  color: var(--text-secondary) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem 1rem !important;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}
.navbar-toggler {
  border: 1px solid var(--glass-border);
  padding: .4rem .6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4a843' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ──────────── Section Utilities ──────────── */
.section-padding { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  background: rgba(212,168,67,.08);
  border: 1px solid rgba(212,168,67,.15);
  color: var(--gold);
  padding: .35rem 1rem;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.5rem;
  color: var(--text-primary);
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  margin: 1rem auto 0;
  border-radius: 3px;
}

/* ──────────── Shared Buttons ──────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--charcoal);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,168,67,.35);
  color: var(--charcoal);
}
.btn-primary-custom.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; border-radius: 10px; }
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.8rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-custom:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,168,67,.25);
}
.btn-outline-custom.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; border-radius: 10px; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,15,26,.95) 0%,
    rgba(26,26,46,.85) 40%,
    rgba(58,63,43,.7) 100%
  );
}

/* Floating shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
}
.shape-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  bottom: 10%; left: -3%;
  animation: floatShape 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  top: 40%; left: 15%;
  animation: floatShape 6s ease-in-out infinite 1s;
}
.shape-ring {
  width: 300px; height: 300px;
  border: 2px solid rgba(212,168,67,.08);
  top: 20%; right: 10%;
  animation: floatShape 12s ease-in-out infinite 2s;
}
.shape-dot-grid {
  width: 200px; height: 200px;
  bottom: 25%; right: 20%;
  background-image: radial-gradient(rgba(212,168,67,.12) 1px, transparent 1px);
  background-size: 15px 15px;
  border-radius: 0;
  animation: floatShape 14s ease-in-out infinite 3s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-30px) rotate(3deg); }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,.04);
}
.hero-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1.5rem;
  display: block;
  box-shadow: 0 0 30px rgba(212,168,67,.2);
}
.hero-avatar-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,168,67,.08);
  color: var(--gold);
  font-size: 2.5rem;
}
.hero-title {
  font-size: 3rem;
  margin-bottom: .3rem;
  background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-role {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: .8rem;
}
.hero-intro {
  color: var(--text-secondary);
  font-size: .95rem;
  max-width: 500px;
  margin: 0 auto 1.8rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-social {
  display: flex;
  gap: .8rem;
  justify-content: center;
}
.hero-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition);
}
.hero-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(212,168,67,.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  background: var(--dark-surface);
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}
.about-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.about-bio {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}
.about-details-grid {
  display: grid;
  gap: 1rem;
}
.detail-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,168,67,.08);
}
.detail-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(212,168,67,.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.detail-label {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.detail-value {
  font-size: .95rem;
  color: var(--text-primary);
  font-weight: 500;
}
.detail-social-links {
  display: flex;
  gap: .5rem;
  margin-top: .3rem;
}
.detail-social-links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: .85rem;
  transition: all var(--transition);
}
.detail-social-links a:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ================================================================
   SKILLS SECTION
   ================================================================ */
.skills-section {
  background: var(--dark-bg);
  position: relative;
}
.skills-grid {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem;
}
.skill-item { animation: none; }
.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: .6rem;
}
.skill-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-primary);
}
.skill-percent {
  font-weight: 700;
  font-size: .95rem;
  color: var(--gold);
}
.skill-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.skill-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--gold-light));
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(.25,.8,.25,1);
  position: relative;
}
.skill-bar-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2));
  border-radius: 10px;
}
.skill-bar-fill.animate {
  width: var(--target-width);
}

/* ================================================================
   PROJECTS SECTION
   ================================================================ */
.projects-section {
  background: var(--dark-surface);
  position: relative;
}
/* ================================================================
   FAN CAROUSEL — Project Cards
   ================================================================ */
.fan-carousel-scene {
  position: relative;
  width: 100%;
  padding: 3rem 0 5.5rem;
  overflow: visible;
}

.projects-section {
  overflow-x: clip;
}

.fan-carousel {
  position: relative;
  width: 100%;
  height: 420px;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

/* Individual card */
.fan-card {
  position: absolute;
  width: 230px;
  height: 340px;
  left: 50%;
  top: 50%;
  margin-left: -115px;
  margin-top: -170px;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.34,1.2,0.64,1),
              opacity  0.45s ease,
              filter   0.45s ease;
  will-change: transform;
  border-radius: 20px;
  user-select: none;
}

.fan-card-inner {
  width: 100%; height: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg,rgba(40,35,65,0.96) 0%,rgba(20,18,45,0.99) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}

.fan-card-img {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.fan-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.fan-card.fan-active .fan-card-img img { transform: scale(1.05); }

.fan-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,rgba(212,168,67,.08),rgba(26,26,46,.9));
  color: var(--text-muted);
  font-size: 3rem;
}

.fan-card-img-label {
  position: absolute;
  bottom: 0.6rem; left: 0.7rem;
  background: rgba(20,16,40,0.72);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
}

.fan-card-info {
  flex-shrink: 0;
  padding: 0.85rem 1rem 1rem;
}
.fan-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fan-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Active (center) card styling */
.fan-card.fan-active {
  cursor: default;
  z-index: 10 !important;
}
.fan-card.fan-active .fan-card-inner {
  box-shadow: 0 30px 80px rgba(0,0,0,.70),
              0 0 0 1.5px rgba(212,168,67,0.25),
              0 0 40px rgba(212,168,67,0.09);
}
.fan-card.fan-active::after {
  content: 'Tap to view details';
  position: absolute;
  bottom: -2.3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0.8;
}

/* Nav arrows */
.fan-nav {
  position: absolute;
  bottom: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 20;
}
.fan-nav:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: scale(1.12);
}
.fan-nav-prev { left: calc(50% - 54px); }
.fan-nav-next { left: calc(50% + 10px); }

/* Shared stacks / tech tags (still needed for modal) */
.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .8rem;
}
.tech-tag {
  background: rgba(212,168,67,.08);
  border: 1px solid rgba(212,168,67,.12);
  color: var(--gold);
  padding: .2rem .55rem;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .fan-carousel { height: 350px; }
  .fan-card { width: 185px; height: 280px; margin-left: -92px; margin-top: -140px; }
}
@media (max-width: 480px) {
  .fan-carousel { height: 300px; }
  .fan-card { width: 150px; height: 230px; margin-left: -75px; margin-top: -115px; }
}

/* ── Back / Expanded ── */
.project-card-back {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,20,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow-y: auto;
  padding: 2rem;
  animation: fadeIn .35s ease;
}
.project-card-back.active { display: flex; align-items: center; justify-content: center; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.project-close-btn {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
}
.project-close-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.project-detail-inner {
  background: var(--glass-bg2);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: var(--shadow-strong);
  animation: scaleIn .4s cubic-bezier(.25,.8,.25,1);
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.project-detail-gallery {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-height: 350px;
}
.project-detail-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.project-detail-title {
  font-size: 1.6rem;
  margin-bottom: .3rem;
}
.project-detail-category {
  display: inline-block;
  background: rgba(212,168,67,.1);
  color: var(--gold);
  padding: .2rem .8rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.project-detail-desc {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.project-detail-links {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
  background: var(--dark-bg);
  position: relative;
}
.contact-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.contact-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.contact-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,.12);
  background: rgba(255,255,255,.06);
}
.contact-input::placeholder { color: var(--text-muted); opacity: .6; }
.contact-textarea { min-height: 140px; resize: vertical; }

.contact-alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.contact-alert-success {
  background: rgba(40,167,69,.1);
  border: 1px solid rgba(40,167,69,.2);
  color: #8fd4a0;
}
.contact-alert-error {
  background: rgba(220,53,69,.1);
  border: 1px solid rgba(220,53,69,.2);
  color: #f0a0a8;
}

/* Contact info cards */
.contact-info-cards { display: grid; gap: 1rem; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  transition: transform var(--transition);
}
.contact-info-card:hover { transform: translateY(-3px); }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(212,168,67,.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: .72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .5px;
}
.contact-info-card a, .contact-info-card span {
  color: var(--text-primary);
  font-weight: 500;
  font-size: .92rem;
}
.contact-info-card a:hover { color: var(--gold); }

.contact-social-bar {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.contact-social-bar a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.contact-social-bar a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--glass-border);
  padding: 2.5rem 0;
}
.footer-inner {
  text-align: center;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: .8rem;
}
.footer-social {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-bottom: .8rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.footer-copy {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .hero-title { font-size: 2.2rem; }
  .hero-glass-card { padding: 2.5rem 2rem; }
  .section-title { font-size: 2rem; }
  .section-padding { padding: 4rem 0; }
  .projects-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
}

@media (max-width: 575px) {
  .hero-title { font-size: 1.7rem; }
  .hero-glass-card { padding: 2rem 1.2rem; margin: 0 .5rem; }
  .hero-avatar { width: 90px; height: 90px; }
  .section-title { font-size: 1.6rem; }
  .section-padding { padding: 3rem 0; }
  .about-glass-card { padding: 1.5rem; }
  .contact-glass-card { padding: 1.5rem; }
  .project-detail-inner { padding: 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary-custom, .btn-outline-custom { width: 100%; }
  .project-card-back { padding: 1rem; }
}
