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

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --secondary: #5b3fa0;
  --secondary-light: #7c3aed;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --light: #f8fafc;
  --light-secondary: #f1f5f9;
  --text: #0f172a;
  --text-muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --gradient-main: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #5b3fa0 100%);
  --gradient-accent: linear-gradient(135deg, #5b3fa0 0%, #7c3aed 100%);
  --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 16px 48px rgba(91, 63, 160, 0.15);
  --blur-sm: blur(10px);
  --blur-md: blur(20px);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: var(--blur-md);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  padding: 0 2rem;
  box-shadow: var(--shadow);
  animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.nav-logo:hover { transform: scale(1.02); }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 0.2rem; list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gradient-accent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 60%;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--secondary);
  background: rgba(91, 63, 160, 0.08);
}
.nav-contact {
  background: var(--gradient-accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.4rem !important;
  box-shadow: 0 4px 15px rgba(91, 63, 160, 0.3) !important;
  position: relative !important;
}
.nav-contact:hover { 
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 63, 160, 0.4) !important; 
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.8rem;
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  animation: slideDown 0.3s ease-out;
  backdrop-filter: var(--blur-sm);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  color: var(--text) !important;
  padding: 0.75rem 1.2rem !important;
  font-size: 0.85rem !important;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.dropdown-menu a:hover { 
  background: var(--gradient-accent) !important;
  color: var(--white) !important;
  transform: translateX(4px);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--light);
  display: flex; align-items: center;
  padding: 100px 2rem 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(at 20% 50%, rgba(91, 63, 160, 0.1) 0%, transparent 50%),
    radial-gradient(at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91, 63, 160, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: floatAnim 6s ease-in-out infinite;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}
.hero-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91, 63, 160, 0.12);
  border: 1.5px solid rgba(91, 63, 160, 0.25);
  color: var(--secondary);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero h1 .highlight { background: var(--gradient-accent); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-pillars {
  display: flex; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.pillar-tag {
  display: flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 700; font-size: 0.85rem;
  background: rgba(245, 158, 11, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}
.pillar-tag:hover {
  background: rgba(245, 158, 11, 0.15);
  transform: translateY(-2px);
}
.pillar-tag::before { content: '✓'; font-size: 1.1rem; color: var(--accent); }
.hero-cta { 
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(91, 63, 160, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { 
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(91, 63, 160, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}
.btn-outline::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-accent);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-outline:hover { 
  color: var(--white);
  border-color: transparent;
}
.btn-outline:hover::after { opacity: 1; }

/* STATS */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  margin-top: 3.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  animation: fadeInUp 0.8s ease-out 0.6s both;
  backdrop-filter: var(--blur-sm);
}
.stat-item {
  transition: all 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-8px);
}
.stat-item .num { 
  font-size: 2.4rem; font-weight: 900; 
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.5rem;
}
.stat-item .label { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; }

/* SECTIONS */
section { padding: 80px 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  background: rgba(91, 63, 160, 0.12);
  color: var(--secondary);
  font-size: 0.75rem; font-weight: 800;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(91, 63, 160, 0.2);
  animation: fadeInUp 0.6s ease-out;
}
.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
  letter-spacing: -0.5px;
}
.section-header p { 
  color: var(--text-muted); 
  max-width: 650px; 
  margin: 0 auto; 
  font-size: 1.05rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* SERVICES GRID */
.services-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; 
  overflow: hidden;
  text-decoration: none; 
  color: inherit; 
  display: block;
  group: service;
}
.service-card::before {
  content: '';
  position: absolute; 
  top: -2px; left: 0; right: 0; 
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0); 
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px at var(--mouse-x, 0) var(--mouse-y, 0), 
    rgba(91, 63, 160, 0.1), transparent 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { 
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px); 
  border-color: var(--secondary-light);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--gradient-accent);
  background-clip: padding-box;
  border-radius: 14px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(91, 63, 160, 0.2);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotateY(10deg);
}
.service-card h3 { 
  font-size: 1.15rem; 
  font-weight: 800; 
  color: var(--primary); 
  margin-bottom: 0.8rem;
  font-family: 'Outfit', sans-serif;
}
.service-card p { 
  font-size: 0.88rem; 
  color: var(--text-muted); 
  line-height: 1.7;
}

/* PILLARS */
.pillars-section { 
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}
.pillars-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(at 30% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}
.pillars-section .section-header h2 { color: var(--white); }
.pillars-section .section-tag { 
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent);
  border-color: rgba(245, 158, 11, 0.3);
}
.pillars-section .section-header p { color: rgba(255,255,255,0.8); }
.pillars-grid { 
  display: grid; 
  grid-template-columns: repeat(2,1fr); 
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.pillar-card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: var(--blur-md);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pillar-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 16px 40px rgba(91, 63, 160, 0.3);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-num {
  font-size: 3.5rem; 
  font-weight: 900;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-card h3 { 
  font-size: 1.25rem; 
  font-weight: 900; 
  color: var(--white); 
  margin-bottom: 1rem; 
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  position: relative;
  z-index: 2;
}
.pillar-card p { 
  font-size: 0.9rem; 
  color: rgba(255,255,255,0.75); 
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ABOUT SECTION */
.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4rem; 
  align-items: center;
}
.about-content h2 { 
  font-family: 'Outfit', sans-serif; 
  font-size: 2.2rem; 
  font-weight: 900; 
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.about-content p { 
  color: var(--text-muted); 
  margin-bottom: 1.2rem; 
  line-height: 1.8;
  font-size: 0.95rem;
}
.about-highlight {
  background: linear-gradient(135deg, rgba(91, 63, 160, 0.06) 0%, rgba(245, 158, 11, 0.04) 100%);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem 1.8rem;
  border-radius: 0 12px 12px 0;
  margin: 1.8rem 0;
  font-style: italic; 
  font-size: 1rem;
  color: var(--primary);
  backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(91, 63, 160, 0.2);
}
.about-visual {
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(at 100% 50%, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
}
.about-visual h3 { 
  font-size: 1.5rem; 
  font-weight: 800; 
  margin-bottom: 1.8rem;
  font-family: 'Outfit', sans-serif;
  position: relative;
  z-index: 1;
}
.about-list { 
  list-style: none;
  position: relative;
  z-index: 1;
}
.about-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  display: flex; 
  align-items: center; 
  gap: 12px;
  transition: all 0.3s ease;
}
.about-list li:hover {
  color: var(--accent);
  padding-left: 8px;
}
.about-list li::before { 
  content: '→'; 
  color: var(--accent); 
  font-weight: 800;
  flex-shrink: 0;
}

/* PORTFOLIO */
.portfolio-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 1.5rem;
}
.portfolio-year {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1.5px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
}
.portfolio-year:hover {
  border-color: var(--secondary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.portfolio-year h4 { 
  font-size: 1.15rem; 
  font-weight: 900; 
  color: var(--primary); 
  margin-bottom: 1rem; 
  font-family: 'Outfit', sans-serif;
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.portfolio-year ul { list-style: none; }
.portfolio-year li { 
  font-size: 0.82rem; 
  color: var(--text-muted); 
  padding: 0.5rem 0; 
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}
.portfolio-year li:hover {
  color: var(--secondary);
  padding-left: 4px;
}
.portfolio-year li:last-child { border: none; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 70px; height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; color: var(--white);
  margin: 0 auto 1rem;
  font-family: 'Outfit', sans-serif;
}
.team-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.8rem; color: var(--accent); font-weight: 600; }

/* CONTACT */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--shadow); }

/* PAGE HEADER */
.page-header {
  background: var(--gradient);
  padding: 140px 2rem 80px;
  text-align: center;
}
.page-header h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* CONTENT SECTION */
.content-section { padding: 80px 2rem; }
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.content-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 1rem; }
.content-card p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.content-card ul, .content-card ol { padding-left: 1.5rem; color: var(--text-muted); }
.content-card li { margin-bottom: 0.5rem; line-height: 1.7; }

/* PROGRAM CARDS */
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.program-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}
.program-card.featured { border-color: var(--accent); }
.program-card.featured::after {
  content: 'Populer';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--primary-dark);
  font-size: 0.75rem; font-weight: 700; padding: 3px 14px; border-radius: 50px;
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.program-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.8rem; }
.program-card .duration { font-size: 0.8rem; font-weight: 600; color: var(--accent); margin-bottom: 1rem; }
.program-card ul { list-style: none; }
.program-card li { font-size: 0.85rem; color: var(--text-muted); padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.program-card li::before { content: '•'; color: var(--primary); font-size: 1.2rem; }

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 4.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(at 20% 50%, rgba(91, 63, 160, 0.1) 0%, transparent 50%),
    radial-gradient(at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1.5fr; 
  gap: 3rem; 
  max-width: 1200px; 
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-brand .logo-wrap { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 1.2rem;
}
.footer-brand .logo-box { 
  width: 44px; 
  height: 44px; 
  background: var(--gradient-accent);
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 900; 
  color: var(--white);
  box-shadow: 0 4px 15px rgba(91, 63, 160, 0.3);
  flex-shrink: 0;
}
.footer-brand h3 { 
  font-size: 1.15rem; 
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}
.footer-brand p { 
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.65); 
  line-height: 1.7;
}
.footer-col h4 { 
  font-size: 0.8rem; 
  font-weight: 800; 
  letter-spacing: 1.2px; 
  text-transform: uppercase; 
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-family: 'Outfit', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { 
  color: rgba(255,255,255,0.7); 
  text-decoration: none; 
  font-size: 0.87rem; 
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-col a:hover { 
  color: var(--accent);
  transform: translateX(4px);
}
.footer-contact p { 
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.65); 
  margin-bottom: 0.6rem; 
  display: flex; 
  align-items: flex-start; 
  gap: 10px;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem; 
  padding-top: 1.5rem;
  text-align: center; 
  max-width: 1200px; 
  margin-left: auto; 
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.footer-bottom p { 
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

/* MOBILE MENU */
.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.hamburger:hover {
  background: rgba(91, 63, 160, 0.1);
}
.hamburger span { 
  display: block; 
  width: 24px; 
  height: 2.5px; 
  background: var(--primary);
  border-radius: 2px; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.nav-links.open ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.nav-links.open ~ .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-links.open ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.fade-in { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible { 
  opacity: 1; 
  transform: translateY(0);
}

.stagger-item {
  animation: fadeInUp 0.6s ease-out both;
}
.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 3rem;
  }
  .footer-grid { 
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .pillars-grid { 
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stats-bar { 
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    flex-direction: column; 
    position: fixed; 
    top: 70px; 
    left: 0; 
    right: 0; 
    background: var(--white);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
    animation: slideDown 0.3s ease-out;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .dropdown-menu { 
    position: static; 
    box-shadow: none; 
    border: none; 
    background: rgba(91, 63, 160, 0.08);
    padding: 0.5rem;
    margin-top: 0.5rem;
    display: none !important;
  }
  .nav-dropdown.active .dropdown-menu {
    display: block !important;
  }
  .nav-links.open .dropdown-menu {
    display: block !important;
  }
  .pillars-grid { 
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .footer-grid { 
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-bar { 
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .team-grid { 
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 60px 2rem;
  }
  .hero {
    padding: 80px 2rem 40px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .stat-item .num {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .nav-logo .logo-name {
    font-size: 0.95rem;
  }
  .nav-logo .logo-sub {
    display: none;
  }
  .nav-links {
    top: 70px;
  }
  .hero {
    min-height: auto;
    padding: 80px 1.5rem 40px;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
  }
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-header h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-bar { 
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .hero-pillars {
    gap: 0.8rem;
  }
  .pillar-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  section {
    padding: 50px 1.5rem;
  }
}
