/* ============================================
   JLQ Portfolio – style.css
   Aesthetic: Refined Editorial / Luxury Corporate
   Fonts: Cormorant Garamond + DM Sans
   ============================================ */

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

:root {
  --navy:      #0d1b2a;
  --navy-mid:  #152539;
  --navy-lite: #1e3a5f;
  --blue:      #2d6fa3;
  --blue-lite: #4b9fd4;
  --gold:      #c8a96e;
  --gold-lite: #e2c896;
  --white:     #f8f7f4;
  --off-white: #efe9e0;
  --gray:      #8a8f9a;
  --light-bg:  #f3f0eb;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 8px 40px rgba(13,27,42,0.10);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--light-bg);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ─── UTILITY ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-light-cert { background: var(--light-bg); color: var(--navy); }
.section-light-cert { background: var(--light-bg); color: var(--navy); }
.centered { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-dark .section-label::after { background: var(--gold-lite); opacity: 0.4; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-dark .section-heading { color: var(--white); }

.section-sub {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 60px;
  line-height: 1.75;
}
.section-sub.centered { margin-left: auto; margin-right: auto; }
.section-dark .section-sub { color: rgba(255,255,255,0.5); }

/* ─── NAV ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: var(--transition);
}

#navbar.scrolled .nav-inner {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 7px 18px;
  border-radius: 40px;
}
.nav-links a.nav-cta:hover {
  background: rgba(200,169,110,0.12);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 40px 24px;
  background: rgba(13,27,42,0.97);
  gap: 16px;
}
.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.mobile-menu.open { display: flex; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 32px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -150px; left: -100px;
  animation: drift 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -100px; right: 0;
  animation: drift 16s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: var(--blue-lite);
  top: 40%; left: 55%;
  animation: drift 10s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.08); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.35);
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 32px;
  background: rgba(200,169,110,0.06);
}

.hero-avatar {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
}
.avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.3);
  animation: rotate 20s linear infinite;
}
.avatar-ring::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.avatar-img svg { width: 80px; height: 80px; }

.avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hero-name em {
  font-style: italic;
  color: var(--gold-lite);
  font-weight: 400;
}

.hero-title {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.hero-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a8843e);
  color: var(--navy);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200,169,110,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-full svg { width: 18px; height: 18px; }

/* ─── SCROLL HINT ─── */
.hero-scroll-hint {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 8px;
}
.about-text p {
  font-size: 0.97rem;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-skills h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--navy-lite);
}

.skill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.skill-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(13,27,42,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.skill-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(13,27,42,0.1);
}
.skill-icon {
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy-lite), var(--blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-lite);
}
.skill-list li strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}
.skill-list li span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ─── EXPERTISE CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.glass-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s, border-color 0.3s;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  border-color: rgba(200,169,110,0.25);
}
.glass-card:hover::before { opacity: 1; }

.card-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(200,169,110,0.4);
  margin-bottom: 16px;
}
.card-icon {
  width: 44px; height: 44px;
  color: var(--blue-lite);
  margin-bottom: 18px;
}
.card-icon svg { width: 100%; height: 100%; }
.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.glass-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ─── SOLUTIONS ─── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-block {
  position: relative;
  padding: 36px 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(13,27,42,0.06);
  border: 1px solid rgba(13,27,42,0.05);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
.solution-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,27,42,0.12);
}
.solution-accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
}

.solution-header { margin-bottom: 20px; }
.solution-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}
.solution-header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.1;
}
.solution-header span {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution-list li {
  font-size: 0.875rem;
  color: #4a5568;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.solution-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}

/* ─── PROFESSIONAL EXPERIENCE ─── */
.experience-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.experience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-lite), transparent);
}

.exp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.exp-role {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.exp-org {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.exp-period {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-top: 6px;
  border-left: 1px solid rgba(200,169,110,0.25);
  padding-left: 20px;
}

.exp-period-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.exp-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.3);
  background: rgba(200,169,110,0.07);
  padding: 4px 12px;
  border-radius: 20px;
}

.exp-summary {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 860px;
}

.exp-contributions {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
}
.exp-contributions-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.exp-contributions-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,169,110,0.2);
}

.exp-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}
.exp-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.exp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .experience-card { padding: 28px 24px; }
  .exp-list { grid-template-columns: 1fr; }
  .exp-header { flex-direction: column; gap: 12px; }
  .exp-period { border-left: none; padding-left: 0; border-top: 1px solid rgba(200,169,110,0.25); padding-top: 12px; }
}

.exp-education {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  margin-top: 28px;
}
.exp-edu-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.exp-edu-icon {
  min-width: 44px;
  height: 44px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.exp-edu-text { flex: 1; }
.exp-edu-degree {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}
.exp-edu-school {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.exp-edu-year {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ─── CERTIFICATIONS ─── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cert-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s, border-color 0.3s;
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.25);
  border-color: rgba(200,169,110,0.3);
}

.cert-featured {
  grid-column: span 1;
  background: linear-gradient(145deg, rgba(200,169,110,0.1), rgba(45,111,163,0.08));
  border-color: rgba(200,169,110,0.2);
}

.cert-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 4px 10px;
  border-radius: 20px;
}

.cert-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.cert-logo.sm {
  font-size: 1.1rem;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 10px;
  margin-bottom: 14px;
  font-weight: 700;
}

.cert-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cert-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}
.section-light-cert .cert-card {
  background: var(--white);
  border-color: rgba(13,27,42,0.07);
  box-shadow: 0 4px 24px rgba(13,27,42,0.06);
}
.section-light-cert .cert-card:hover {
  box-shadow: 0 20px 48px rgba(13,27,42,0.13);
  border-color: rgba(200,169,110,0.35);
}
.section-light-cert .cert-featured {
  background: linear-gradient(145deg, rgba(200,169,110,0.08), rgba(45,111,163,0.05));
  border-color: rgba(200,169,110,0.25);
}
.section-light-cert .cert-card h3 { color: var(--navy); }
.section-light-cert .cert-card p { color: var(--gray); }
.section-light-cert .section-heading em { color: var(--gold); }
.section-light-cert .cert-card {
  background: var(--white);
  border-color: rgba(13,27,42,0.07);
  box-shadow: 0 4px 24px rgba(13,27,42,0.06);
}
.section-light-cert .cert-card:hover {
  box-shadow: 0 20px 48px rgba(13,27,42,0.13);
  border-color: rgba(200,169,110,0.35);
}
.section-light-cert .cert-featured {
  background: linear-gradient(145deg, rgba(200,169,110,0.08), rgba(45,111,163,0.05));
  border-color: rgba(200,169,110,0.25);
}
.section-light-cert .cert-card h3 { color: var(--navy); }
.section-light-cert .cert-card p { color: var(--gray); }
.section-light-cert .section-label { color: var(--gold); }
.section-light-cert .section-heading em { color: var(--gold); }

/* ─── CONTACT ─── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-top: 16px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  min-width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 18px; height: 18px;
  color: var(--gold-lite);
}
.contact-item span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact-item a {
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--blue); }

/* ─── FORM ─── */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--light-bg);
  border: 1.5px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45,111,163,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(13,27,42,0.3); }

.form-success {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #2d7a4f;
  text-align: center;
  min-height: 20px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 64px 32px 40px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand { flex: 0 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-contact-group { flex: 1; min-width: 260px; }
.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,169,110,0.2);
}
.footer-contact-items { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-contact-item:hover { opacity: 0.75; }
.footer-contact-icon {
  min-width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-icon svg { width: 16px; height: 16px; color: var(--gold-lite); }
.footer-contact-type {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1px;
}
.footer-contact-value { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 24px; }
footer p { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); text-align: center; }
@media (max-width: 640px) { .footer-top { flex-direction: column; gap: 36px; } }
@media (max-width: 640px) { .footer-top { flex-direction: column; gap: 36px; } }

/* ─── REVEAL ANIMATIONS ─── */
.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  #navbar.scrolled .nav-inner { padding: 14px 20px; }
  .nav-inner { padding: 20px; }

  .cards-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }

  .hero-name { font-size: 2.8rem; }
  .section-heading { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cert-featured { grid-column: span 1; }
}