/* ============================================
   DEEP SAMADDAR — PREMIUM EXECUTIVE PORTFOLIO
   Luxury Dark Navy + Gold + White Palette
   ============================================ */

:root {
  --navy-900: #0a0e27;
  --navy-800: #0f1535;
  --navy-700: #141b3d;
  --navy-600: #1a2350;
  --navy-500: #232e6b;
  --gold-400: #d4af37;
  --gold-500: #c9a227;
  --gold-300: #e6c567;
  --gold-200: #f0d77a;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --silver: #c5cad6;
  --slate: #8892b0;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(212, 175, 55, 0.18);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d77a 50%, #d4af37 100%);
  --gradient-navy: linear-gradient(135deg, #0a0e27 0%, #1a2350 50%, #0f1535 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy-900);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

::selection { background: var(--gold-400); color: var(--navy-900); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-300); }

/* ============== PARTICLE BACKGROUND ============== */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  position: absolute;
  inset: 0;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  animation: gridDrift 30s linear infinite;
}

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

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

/* ============== GLOBAL UTILITIES ============== */
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass-card {
  background: rgba(20, 27, 61, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-padding { padding: 7rem 1.5rem; }
.container-x { max-width: 1280px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-400);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.section-subheading {
  color: var(--slate);
  max-width: 720px;
  font-size: 1.05rem;
}

/* ============== NAVIGATION ============== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  background: rgba(10, 14, 39, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.85rem 2rem;
  background: rgba(10, 14, 39, 0.92);
  border-bottom-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-logo span { color: var(--gold-400); }

.brand-logo .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  margin-left: 4px;
  box-shadow: 0 0 12px var(--gold-400);
  animation: pulse 2s infinite;
}

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

.nav-menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--gold-400); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--gradient-gold);
  color: var(--navy-900);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px -4px rgba(212, 175, 55, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.6);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-400);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10, 14, 39, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--glass-border);
    gap: 1.2rem;
  }
  .menu-toggle { display: block; }
}

/* ============== HERO SECTION ============== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1.1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
  box-shadow: 0 0 10px var(--gold-400);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 800;
}

.hero-title .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-rotate {
  height: 2.5rem;
  margin: 1rem 0 1.8rem;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--gold-300);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.hero-rotate .word { display: inline-block; position: relative; }

.hero-rotate .word::after {
  content: '|';
  margin-left: 4px;
  animation: blink 1s step-end infinite;
  color: var(--gold-400);
}

@keyframes blink { 50% { opacity: 0; } }

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 2.2rem;
  max-width: 580px;
}

@media (max-width: 1024px) {
  .hero-desc { margin-left: auto; margin-right: auto; }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) { .hero-ctas { justify-content: center; } }

.btn {
  padding: 0.95rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-900);
  box-shadow: 0 8px 24px -8px rgba(212, 175, 55, 0.5);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -8px rgba(212, 175, 55, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-400);
  transform: translateY(-3px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-item .label {
  font-size: 0.78rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.profile-frame {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.15);
  animation: floatProfile 6s ease-in-out infinite;
}

@keyframes floatProfile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.profile-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  padding: 2px;
  background: var(--gradient-gold);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
}

.profile-frame img.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-frame:hover img.profile-photo { transform: scale(1.04); }

.profile-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.15) 35%, transparent 60%);
  z-index: 2;
}

.profile-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 4;
}

.profile-info h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.profile-info p {
  font-size: 0.85rem;
  color: var(--gold-300);
  font-family: 'JetBrains Mono', monospace;
}

.floating-badge {
  position: absolute;
  background: rgba(20, 27, 61, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.floating-badge i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--navy-900);
  border-radius: 10px;
  font-size: 1.05rem;
}

.floating-badge .b-title {
  font-size: 0.78rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-badge .b-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.floating-badge.bd-1 { top: 8%; right: -10%; animation: float 6s ease-in-out infinite; }
.floating-badge.bd-2 { bottom: 18%; left: -15%; animation: float 6s ease-in-out infinite 1.5s; }
.floating-badge.bd-3 { top: 50%; right: -15%; animation: float 6s ease-in-out infinite 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 1024px) { .floating-badge { display: none; } }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-400);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bob 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator i { font-size: 1rem; }

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pillar-card {
  padding: 1.4rem;
  background: rgba(20, 27, 61, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold-400);
  transform: translateY(-5px);
  box-shadow: 0 14px 30px -8px rgba(212, 175, 55, 0.2);
}

.pillar-card i {
  color: var(--gold-400);
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  transition: transform 0.4s ease;
}

.pillar-card:hover i { transform: rotate(-8deg) scale(1.1); }

.pillar-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--slate);
}

.about-quote {
  padding: 1.5rem;
  border-left: 3px solid var(--gold-400);
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 14px 14px 0;
  margin-top: 2rem;
  font-style: italic;
  color: var(--off-white);
  font-size: 1.05rem;
}

.about-quote .author {
  display: block;
  margin-top: 0.6rem;
  color: var(--gold-300);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============== SKILLS ============== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.skill-card {
  padding: 1.8rem;
  background: rgba(20, 27, 61, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  transition: left 0.6s ease;
}

.skill-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.2);
}

.skill-card:hover::before { left: 100%; }

.skill-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
  transition: all 0.4s ease;
}

.skill-card:hover .skill-icon {
  background: var(--gradient-gold);
  color: var(--navy-900);
  transform: rotate(-8deg) scale(1.08);
}

.skill-title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.skill-desc {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.skill-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.skill-bar .fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 50px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.skill-pct {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gold-300);
  font-family: 'JetBrains Mono', monospace;
}

/* ============== EXPERIENCE TIMELINE ============== */
.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-400), rgba(212, 175, 55, 0.1));
}

.tl-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 1rem;
  width: 26px;
  height: 26px;
  background: var(--navy-900);
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px var(--navy-900), 0 0 20px rgba(212, 175, 55, 0.4);
}

.tl-item.active::before {
  background: var(--gradient-gold);
  transform: scale(1.15);
}

.tl-item::after {
  content: '';
  position: absolute;
  left: -1.6rem;
  top: 1.3rem;
  width: 1.6rem;
  height: 2px;
  background: rgba(212, 175, 55, 0.3);
}

.tl-card {
  background: rgba(20, 27, 61, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.8rem;
  transition: all 0.4s ease;
  cursor: pointer;
}

.tl-card:hover {
  border-color: var(--gold-400);
  transform: translateX(8px);
  box-shadow: 0 16px 40px -10px rgba(212, 175, 55, 0.2);
}

.tl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.tl-role {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.tl-company {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-300);
  font-size: 0.95rem;
  font-weight: 500;
}

.tl-company i { color: var(--gold-400); }

.tl-duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  white-space: nowrap;
}

.tl-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 1rem;
}

.tl-content {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tl-bullets {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.tl-bullets li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.6;
}

.tl-bullets li i {
  color: var(--gold-400);
  font-size: 0.7rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.tl-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  color: var(--gold-300);
}

/* ============== PROJECTS ============== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.project-card {
  position: relative;
  padding: 2rem;
  background: rgba(20, 27, 61, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.project-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -12px rgba(212, 175, 55, 0.25);
}

.project-card:hover::before { transform: scaleX(1); }

.proj-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
  transition: all 0.4s ease;
}

.project-card:hover .proj-icon {
  background: var(--gradient-gold);
  color: var(--navy-900);
  transform: rotate(-8deg) scale(1.1);
}

.proj-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.proj-section { margin-bottom: 1rem; }

.proj-section .lbl {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
  font-family: 'JetBrains Mono', monospace;
}

.proj-section .txt {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.55;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.proj-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.proj-metrics div { font-size: 0.82rem; }

.proj-metrics .m-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proj-metrics .m-lbl {
  color: var(--slate);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-card .proj-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.3s ease;
}

.project-card:hover .proj-cta { gap: 0.9rem; }

.proj-cta i { transition: transform 0.3s ease; }

.project-card:hover .proj-cta i { transform: translateX(4px); }

/* ============== MODAL ============== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,55,0.2);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-header {
  position: relative;
  padding: 2rem 2.5rem 1.8rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.04));
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .modal-header { padding: 1.5rem 1.5rem 1.2rem; flex-direction: column; }
}

.modal-header .m-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: 16px;
  font-size: 1.6rem;
  color: var(--navy-900);
  flex-shrink: 0;
  box-shadow: 0 10px 30px -8px rgba(212, 175, 55, 0.5);
}

.modal-header h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.modal-header .m-company {
  color: var(--gold-300);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.modal-header .m-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.modal-header .m-status i { font-size: 0.6rem; }

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  background: rgba(10, 14, 39, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--gold-300);
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--gradient-gold);
  color: var(--navy-900);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem 2.5rem 2.5rem;
  overflow-y: auto;
  flex: 1;
}

@media (max-width: 600px) { .modal-body { padding: 1.5rem; } }

.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--gold-400); border-radius: 50px; }

.modal-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .modal-meta { grid-template-columns: 1fr; gap: 0.6rem; }
}

.mmeta-card {
  padding: 1rem 1.2rem;
  background: rgba(10, 14, 39, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  text-align: center;
}

.mmeta-card .lbl {
  font-size: 0.72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
}

.mmeta-card .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-section { margin-bottom: 1.8rem; }

.modal-section h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-400);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.modal-section h4 i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  font-size: 0.85rem;
}

.modal-section p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal-section ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.modal-section ul li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.6;
  padding: 0.7rem 1rem;
  background: rgba(10, 14, 39, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.modal-section ul li:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(4px);
}

.modal-section ul li i {
  color: var(--gold-400);
  font-size: 0.75rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.modal-section ul.numbered { counter-reset: ach; }

.modal-section ul.numbered li {
  counter-increment: ach;
  padding-left: 3rem;
  position: relative;
}

.modal-section ul.numbered li::before {
  content: counter(ach);
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--navy-900);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 0.85rem;
}

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

@media (max-width: 700px) {
  .modal-grid-2 { grid-template-columns: 1fr; }
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-tags .mtag {
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

.modal-tags .stag {
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: #a5b4fc;
  font-size: 0.85rem;
  font-weight: 500;
}

.modal-method {
  padding: 1rem 1.2rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.modal-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.modal-kpi {
  padding: 1.2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.modal-kpi:hover {
  transform: translateY(-3px);
  border-color: var(--gold-400);
}

.modal-kpi .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.modal-kpi .lbl {
  font-size: 0.75rem;
  color: var(--silver);
  margin-top: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

body.modal-open { overflow: hidden; }

/* ============== CONNECT SECTION ============== */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.connect-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem;
  background: rgba(20, 27, 61, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.connect-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  transition: left 0.6s ease;
}

.connect-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(212, 175, 55, 0.25);
}

.connect-card:hover::before { left: 100%; }

.connect-card .ic {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  color: var(--gold-400);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.connect-card:hover .ic {
  background: var(--gradient-gold);
  color: var(--navy-900);
  transform: rotate(-8deg) scale(1.05);
}

.connect-card .lbl {
  font-size: 0.72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
  font-family: 'JetBrains Mono', monospace;
}

.connect-card .val {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  word-break: break-word;
}

.connect-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

/* ============== CERTIFICATIONS ============== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.cert-badge {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(20, 27, 61, 0.7), rgba(15, 21, 53, 0.5));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.cert-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cert-badge:hover {
  border-color: var(--gold-400);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.3);
}

.cert-badge:hover::before { opacity: 1; }

.cert-medal {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: 50%;
  font-size: 2.5rem;
  color: var(--navy-900);
  position: relative;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.15), 0 10px 30px -8px rgba(212, 175, 55, 0.5);
  animation: medalSpin 8s ease-in-out infinite;
}

@keyframes medalSpin {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.cert-badge:hover .cert-medal {
  animation: medalSpinFast 1s ease-in-out;
}

@keyframes medalSpinFast {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cert-name {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.cert-issuer {
  font-size: 0.85rem;
  color: var(--gold-300);
  margin-bottom: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
}

.cert-year {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold-300);
  font-family: 'JetBrains Mono', monospace;
}

/* ============== FOOTER (Premium Multi-Column) ============== */
.footer {
  position: relative;
  padding: 4.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(15, 21, 53, 0.95) 100%);
  z-index: 2;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.footer-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07), transparent 70%);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand-col .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.footer-brand-col .footer-brand span:first-of-type { color: var(--gold-400); }

.footer-brand-col .footer-brand .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px var(--gold-400);
  animation: pulse 2s infinite;
}

.footer-tagline {
  color: var(--silver);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 360px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.3s ease;
}

.footer-badge:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.footer-badge i { color: var(--gold-400); font-size: 0.72rem; }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 50px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--gold-400);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

.footer-links a:hover i { transform: translateX(2px); }

.footer-contact {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact li i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  color: var(--gold-400);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact li:hover i {
  background: var(--gradient-gold);
  color: var(--navy-900);
  transform: rotate(-5deg);
}

.footer-contact a {
  color: var(--silver);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.3s ease;
}

.footer-contact a:hover { color: var(--gold-300); }

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  color: var(--gold-300);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
}

.social-links a:hover {
  background: var(--gradient-gold);
  color: var(--navy-900);
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 0 10px 24px -6px rgba(212, 175, 55, 0.5);
  border-color: var(--gold-400);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--silver);
}

.footer-copyright strong {
  color: var(--gold-300);
  font-weight: 600;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--slate);
  font-family: 'JetBrains Mono', monospace;
}

.footer-meta i {
  color: var(--gold-400);
  margin-right: 0.3rem;
}

.footer-meta .dot-sep {
  color: var(--gold-400);
  font-weight: 700;
}

@media (max-width: 768px) {
  .footer-meta { font-size: 0.72rem; }
  .footer-meta .dot-sep { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============== FLOATING CONTACT ============== */
.float-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.5);
  z-index: 50;
  transition: all 0.3s ease;
  animation: pulseRing 2.5s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.5), 0 0 0 14px rgba(212, 175, 55, 0); }
}

.float-contact:hover {
  transform: translateY(-3px) scale(1.1);
}

/* ============== ANIMATIONS / REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (max-width: 768px) {
  .section-padding { padding: 4.5rem 1.25rem; }
  .float-contact { width: 52px; height: 52px; bottom: 1.2rem; right: 1.2rem; }
}
