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

:root {
  --primary-navy: #0B3D70;
  --primary-navy-deep: #061e38;
  --primary-orange: #F58220;
  --primary-orange-light: #FF9A3E;
  --accent-purple: #3A1D8F;
  --accent-green: #4CAF2D;
  --white: #FFFFFF;
  --light-bg: #F5F7FA;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --text-main: #1a1a2e;
  --text-muted: #64748b;
  --font-heading: 'Poppins', sans-serif;
  --font-subheading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-soft: 0 4px 24px rgba(11, 61, 112, 0.08);
  --shadow-float: 0 20px 60px rgba(11, 61, 112, 0.15);
  --shadow-orange: 0 10px 40px rgba(245, 130, 32, 0.3);
  --radius-card: 24px;
  --radius-xl: 40px;
  --radius-button: 50px;
  --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--white); color: var(--text-main); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary-navy); line-height: 1.15; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 7rem 0; }
.section-padding-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-subheading); font-weight: 700; font-size: 0.95rem;
  border-radius: var(--radius-button); cursor: pointer;
  border: 2px solid transparent; transition: var(--transition-spring);
  position: relative; overflow: hidden; letter-spacing: 0.3px;
}
.btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.2); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.6s ease, height 0.6s ease; }
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary { background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light)); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 50px rgba(245, 130, 32, 0.45); }
.btn-secondary { background: transparent; border-color: var(--white); color: var(--white); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: var(--white); color: var(--primary-navy); transform: translateY(-3px); }
.btn-navy { background: var(--primary-navy); color: var(--white); }
.btn-navy:hover { background: var(--primary-navy-deep); transform: translateY(-3px); box-shadow: var(--shadow-float); }
.btn-outline { background: transparent; border-color: var(--primary-navy); color: var(--primary-navy); }
.btn-outline:hover { background: var(--primary-navy); color: var(--white); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* ===== GLASS CARD ===== */
.glass-card { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--radius-card); }

/* ===== GRADIENT TEXT ===== */
.gradient-text { background: linear-gradient(135deg, var(--primary-orange), #ff6b35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== CHIP / TAG ===== */
.chip { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(245, 130, 32, 0.12); color: var(--primary-orange); font-family: var(--font-subheading); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; border: 1px solid rgba(245, 130, 32, 0.25); margin-bottom: 1.25rem; }
.chip-white { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ===== SECTION TITLE ===== */
.section-title-block { margin-bottom: 4rem; }
.section-title-block h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; }
.section-title-block p { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin-top: 1rem; }
.section-title-block.centered { text-align: center; }
.section-title-block.centered p { margin: 1rem auto 0; }

/* ===== DIVIDER LINE ===== */
.divider-line { width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light)); border-radius: 2px; margin-top: 1.25rem; }
.centered .divider-line { margin: 1.25rem auto 0; }

/* ===== DECORATIVE ===== */
.dot-pattern { position: absolute; width: 300px; height: 300px; background-image: radial-gradient(circle, rgba(11,61,112,0.12) 1.5px, transparent 1.5px); background-size: 20px 20px; border-radius: 50%; pointer-events: none; }

/* ===========================
   NAVBAR
   =========================== */
.navbar-top-bar { background: var(--primary-navy-deep); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0.45rem 0; overflow: hidden; max-height: 40px; transition: all 0.4s ease; }
.navbar-top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-contact { display: flex; gap: 1.75rem; align-items: center; }
.top-bar-contact a { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.65); font-size: 0.8rem; font-family: 'Montserrat', sans-serif; font-weight: 500; transition: color 0.3s ease; }
.top-bar-contact a:hover { color: var(--primary-orange); }
.top-bar-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.45); font-family: 'Montserrat', sans-serif; font-style: italic; }

.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; background: rgba(6, 30, 56, 0.75); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 0; transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.navbar.scrolled { background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(11, 61, 112, 0.08); box-shadow: 0 4px 30px rgba(11, 61, 112, 0.1); }
.navbar-container { display: flex; justify-content: space-between; align-items: center; min-height: 72px; }
.navbar-logo a { display: flex; align-items: center; }
.navbar-logo-img { height: 44px; width: auto; border-radius: 10px; transition: all 0.4s ease; }
.navbar.scrolled .navbar-logo-img { height: 38px; }
.navbar-menu { display: flex; align-items: center; gap: 1.75rem; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a { position: relative; color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 0.875rem; font-family: 'Montserrat', sans-serif; letter-spacing: 0.2px; padding: 0.5rem 0.875rem; border-radius: 8px; transition: all 0.3s ease; white-space: nowrap; }
.navbar.scrolled .nav-links a { color: var(--text-main); }
.nav-links a::after { content: ''; position: absolute; bottom: 2px; left: 0.875rem; right: 0.875rem; height: 2px; background: var(--primary-orange); border-radius: 1px; transform: scaleX(0); transition: transform 0.3s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-links a:hover { color: var(--primary-navy); background: var(--light-bg); }
.nav-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.8); font-weight: 600; font-size: 0.83rem; font-family: 'Montserrat', sans-serif; white-space: nowrap; transition: color 0.3s; }
.nav-phone:hover { color: var(--primary-orange); }
.navbar.scrolled .nav-phone { color: var(--primary-navy); }
.nav-btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; flex-shrink: 0; }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 0.35rem; border-radius: 8px; z-index: 1001; position: relative; transition: color 0.3s ease; }
.mobile-toggle svg { width: 26px; height: 26px; }
.navbar.scrolled .mobile-toggle { color: var(--primary-navy); }

@media (max-width: 1100px) {
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .navbar-menu { position: fixed; top: 0; right: -100%; width: min(320px, 88vw); height: 100vh; background: var(--white); flex-direction: column; padding: 5.5rem 2rem 2rem; box-shadow: -20px 0 60px rgba(0,0,0,0.18); transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1); align-items: flex-start; gap: 0; z-index: 1000; overflow-y: auto; }
  .navbar-menu.open { right: 0; }
  .nav-links { flex-direction: column; width: 100%; gap: 0; align-items: flex-start; margin-bottom: 2rem; }
  .nav-links a { color: var(--text-main); font-size: 1rem; padding: 0.875rem 0.5rem; width: 100%; border-radius: 0; border-bottom: 1px solid rgba(11,61,112,0.06); }
  .nav-links a::after { left: 0.5rem; right: 0.5rem; }
  .nav-links a:hover { background: var(--light-bg); color: var(--primary-navy); }
  .nav-cta { flex-direction: column; align-items: flex-start; width: 100%; gap: 0.875rem; }
  .nav-phone { color: var(--primary-navy); }
  .nav-btn { width: 100%; justify-content: center; }
  .navbar-top-bar { display: none; }
}
@media (max-width: 576px) { .nav-phone { display: none; } }

/* ===========================
   HERO SECTION
   =========================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--primary-navy-deep); }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; will-change: transform, opacity; animation: kenBurns 7s ease-in-out forwards; animation-play-state: paused; z-index: 0; }
.hero-slide-bg.active { opacity: 1; animation-play-state: running; z-index: 1; }
.hero-slide-bg.leaving { opacity: 0; z-index: 2; animation: none; transition: opacity 1.2s ease; }
@keyframes kenBurns { 0% { transform: scale(1.0) translate(0, 0); } 50% { transform: scale(1.08) translate(-1%, 0.5%); } 100% { transform: scale(1.15) translate(-2%, 1%); } }
.hero-slide-bg:nth-child(odd).active { animation-name: kenBurnsAlt; }
@keyframes kenBurnsAlt { 0% { transform: scale(1.0) translate(0, 0); } 50% { transform: scale(1.08) translate(1%, -0.5%); } 100% { transform: scale(1.15) translate(2%, -1%); } }
.hero-overlay-1 { position: absolute; inset: 0; z-index: 3; background: linear-gradient(135deg, rgba(6,30,56,0.88) 0%, rgba(11,61,112,0.72) 55%, rgba(58,29,143,0.55) 100%); }
.hero-overlay-2 { position: absolute; inset: 0; z-index: 4; background: radial-gradient(ellipse at 70% 50%, rgba(245,130,32,0.12) 0%, transparent 65%); }
.hero-grid-lines { position: absolute; inset: 0; z-index: 4; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 60px 60px; }
.hero-container { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding-top: 120px; padding-bottom: 6rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(245,130,32,0.15); border: 1px solid rgba(245,130,32,0.4); backdrop-filter: blur(10px); padding: 0.45rem 1.25rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #FFB067; margin-bottom: 1.75rem; }
.pulse-dot { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; animation: pulseDot 2s infinite; display: inline-block; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(76,175,45,0.7); } 70% { box-shadow: 0 0 0 8px rgba(76,175,45,0); } 100% { box-shadow: 0 0 0 0 rgba(76,175,45,0); } }
.hero-headline { font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 900; color: var(--white); line-height: 1.0; margin-bottom: 1.5rem; letter-spacing: -1.5px; animation: slideHeadline 0.7s cubic-bezier(0.23,1,0.32,1) both; }
@keyframes slideHeadline { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.line-accent { display: block; background: linear-gradient(90deg, var(--primary-orange), #FF9A3E, var(--primary-orange)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 3s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 460px; margin-bottom: 2.25rem; line-height: 1.75; animation: slideHeadline 0.7s 0.15s cubic-bezier(0.23,1,0.32,1) both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; animation: slideHeadline 0.7s 0.25s cubic-bezier(0.23,1,0.32,1) both; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); animation: slideHeadline 0.7s 0.35s cubic-bezier(0.23,1,0.32,1) both; }
.hero-trust-item { display: flex; flex-direction: column; }
.trust-num { font-size: 1.75rem; font-weight: 900; font-family: var(--font-heading); color: var(--white); line-height: 1; }
.trust-label { font-size: 0.76rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 2px; }
.trust-sep { width: 1px; height: 38px; background: rgba(255,255,255,0.15); }
.hero-right { display: flex; justify-content: flex-end; }
.hero-card-stack { position: relative; width: 400px; }
.hero-chip { position: absolute; background: var(--white); border-radius: 16px; padding: 0.7rem 1.2rem; box-shadow: 0 20px 50px rgba(0,0,0,0.25); display: flex; align-items: center; gap: 0.6rem; z-index: 20; }
.hero-chip-1 { top: -20px; left: -30px; animation: floatChip1 4s ease-in-out infinite; }
.hero-chip-2 { bottom: 90px; right: -30px; animation: floatChip2 4s 2s ease-in-out infinite; }
@keyframes floatChip1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatChip2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hero-chip span { font-weight: 700; font-size: 0.85rem; color: var(--primary-navy); white-space: nowrap; }
.chip-icon { color: var(--accent-green); width: 18px; height: 18px; }
.hero-chip-2 .chip-icon { color: var(--primary-orange); }
.hero-main-card { border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 40px 80px rgba(0,0,0,0.3); background: rgba(6,30,56,0.5); backdrop-filter: blur(10px); }
.hero-card-slideshow { position: relative; width: 100%; height: 280px; overflow: hidden; }
.hero-card-frame { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease, transform 6s ease; transform: scale(1.05); }
.hero-card-frame.frame-active { opacity: 1; transform: scale(1); }
.hero-card-body { padding: 1.5rem 1.75rem; background: rgba(6,30,56,0.8); }
.hero-card-body h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.25rem; }
.hero-card-body p { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.hero-controls { position: absolute; bottom: 3.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 1.25rem; }
.hero-arrow { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.hero-arrow:hover { background: var(--primary-orange); border-color: var(--primary-orange); transform: scale(1.1); }
.hero-arrow svg { width: 22px; height: 22px; }
.hero-dots { display: flex; gap: 0.5rem; align-items: center; }
.hero-dot { border: none; cursor: pointer; border-radius: 50px; height: 8px; background: rgba(255,255,255,0.35); transition: all 0.4s cubic-bezier(0.23,1,0.32,1); width: 8px; }
.hero-dot.active { width: 28px; background: var(--primary-orange); }
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.1); z-index: 10; }
.hero-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary-orange), #FF9A3E); animation: progressFill 6s linear; width: 0; }
@keyframes progressFill { from { width: 0%; } to { width: 100%; } }
.scroll-indicator { position: absolute; bottom: 3.5rem; right: 2.5rem; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 49% { transform: scaleY(1); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 1024px) { .hero-container { grid-template-columns: 1fr; padding-top: 100px; padding-bottom: 8rem; } .hero-right { display: none; } .hero-headline { font-size: clamp(2.75rem, 8vw, 4rem); } .scroll-indicator { display: none; } }
@media (max-width: 576px) { .hero-actions { flex-direction: column; } .hero-actions .btn { width: 100%; text-align: center; justify-content: center; } .hero-headline { font-size: clamp(2rem, 10vw, 2.5rem); letter-spacing: -0.5px; } }

/* ===== ABOUT ===== */
.about-section { background: var(--white); position: relative; overflow: hidden; }
.about-dot-pattern { top: 5%; right: -80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-images { position: relative; height: 600px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 82%; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-float); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 55%; height: 52%; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-float); border: 8px solid var(--white); }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-img-secondary:hover img { transform: scale(1.04); }
.about-exp-badge { position: absolute; top: 38%; right: 26%; background: linear-gradient(135deg, var(--primary-orange), #FF9A3E); color: var(--white); width: 130px; height: 130px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 15px 40px rgba(245,130,32,0.4); z-index: 10; border: 6px solid var(--white); text-align: center; }
.exp-num { font-size: 2.5rem; font-weight: 900; font-family: var(--font-heading); line-height: 1; }
.exp-label { font-size: 0.72rem; font-weight: 700; opacity: 0.9; line-height: 1.2; text-align: center; padding: 0 0.5rem; }
.about-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2.5rem; }
.about-values { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.value-row { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem; border-radius: 16px; background: var(--light-bg); transition: var(--transition-smooth); cursor: default; }
.value-row:hover { background: rgba(11,61,112,0.06); transform: translateX(6px); }
.value-icon-box { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--primary-navy), var(--accent-purple)); display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.value-icon-box svg { width: 22px; height: 22px; }
.value-row h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.value-row p { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } .about-images { height: 420px; } .about-dot-pattern { display: none; } }
@media (max-width: 576px) { .about-images { height: 280px; } .about-exp-badge { width: 100px; height: 100px; } .exp-num { font-size: 1.8rem; } .about-img-secondary { display: none; } .about-img-main { width: 100%; height: 100%; } .about-desc { font-size: 1rem; } }

/* ===== PROGRAMS ===== */
.programs-section { background: var(--light-bg); position: relative; overflow: hidden; }
.programs-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-navy), var(--accent-purple), var(--primary-orange)); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.program-card { background: var(--white); border-radius: var(--radius-card); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: var(--transition-smooth); border: 1px solid rgba(11,61,112,0.06); cursor: pointer; display: flex; flex-direction: column; }
.program-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.program-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-float); }
.program-card:hover::after { transform: scaleX(1); }
.pc-1 { --card-color: #0B3D70; } .pc-1::after { background: #0B3D70; }
.pc-2 { --card-color: #F58220; } .pc-2::after { background: #F58220; }
.pc-3 { --card-color: #3A1D8F; } .pc-3::after { background: #3A1D8F; }
.pc-4 { --card-color: #4CAF2D; } .pc-4::after { background: #4CAF2D; }
.pc-5 { --card-color: #0B3D70; } .pc-5::after { background: #0B3D70; }
.pc-6 { --card-color: #F58220; } .pc-6::after { background: #F58220; }
.program-number { font-size: 4rem; font-weight: 900; font-family: var(--font-heading); color: var(--card-color, #0B3D70); opacity: 0.06; line-height: 1; position: absolute; top: 1rem; right: 1.5rem; transition: var(--transition-smooth); }
.program-card:hover .program-number { opacity: 0.12; transform: scale(1.2); }
.program-icon-wrap { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--card-color, #0B3D70); transition: var(--transition-smooth); }
.pc-1 .program-icon-wrap { background: rgba(11,61,112,0.10); }
.pc-2 .program-icon-wrap { background: rgba(245,130,32,0.10); }
.pc-3 .program-icon-wrap { background: rgba(58,29,143,0.10); }
.pc-4 .program-icon-wrap { background: rgba(76,175,45,0.10); }
.pc-5 .program-icon-wrap { background: rgba(11,61,112,0.10); }
.pc-6 .program-icon-wrap { background: rgba(245,130,32,0.10); }
.program-icon-wrap svg { width: 28px; height: 28px; }
.program-card:hover .program-icon-wrap { background: var(--card-color, #0B3D70); color: var(--white); transform: rotate(-5deg) scale(1.1); }
.program-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; transition: color 0.3s ease; }
.program-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; flex-grow: 1; }
.program-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.85rem; color: var(--card-color, #0B3D70); font-family: var(--font-subheading); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 1.5rem; transition: gap 0.3s ease; }
.program-card:hover .program-link { gap: 0.8rem; }
@media (max-width: 1024px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .programs-grid { grid-template-columns: 1fr; } }

/* ===== FACILITIES ===== */
.facilities-section { background: var(--light-bg); position: relative; }
.facilities-tabs { display: flex; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.facilities-tab { padding: 0.65rem 1.5rem; border-radius: 50px; border: 2px solid rgba(11,61,112,0.12); background: var(--white); font-family: var(--font-subheading); font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: var(--transition-smooth); color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.5rem; }
.facilities-tab svg { width: 18px; height: 18px; }
.facilities-tab.active, .facilities-tab:hover { background: var(--primary-navy); border-color: var(--primary-navy); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11,61,112,0.2); }
.facilities-showcase { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.facilities-img-wrap { position: relative; border-radius: var(--radius-card); overflow: hidden; height: 480px; box-shadow: var(--shadow-float); }
.facilities-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.facilities-img-wrap:hover img { transform: scale(1.04); }
.facilities-img-badge { position: absolute; bottom: 2rem; left: 2rem; background: rgba(11,61,112,0.85); backdrop-filter: blur(10px); color: var(--white); padding: 1rem 1.5rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.15); }
.facilities-img-badge span { font-size: 0.78rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.facilities-img-badge strong { display: block; font-size: 1.1rem; margin-top: 0.25rem; }
.facilities-info h3 { font-size: 2.25rem; margin-bottom: 1rem; line-height: 1.2; }
.facilities-info p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.8; }
.facilities-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.facilities-feature-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); }
.facilities-feature-item:hover { transform: translateX(6px); box-shadow: var(--shadow-float); }
.feature-check { width: 32px; height: 32px; border-radius: 50%; background: rgba(76,175,45,0.12); color: var(--accent-green); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; flex-shrink: 0; }
.facilities-feature-item span { font-weight: 500; color: var(--primary-navy); }
@media (max-width: 1024px) { .facilities-showcase { grid-template-columns: 1fr; } .facilities-img-wrap { height: 360px; } }
@media (max-width: 576px) { .facilities-img-wrap { height: 260px; } .facilities-info h3 { font-size: 1.75rem; } .facilities-tab { padding: 0.55rem 1rem; font-size: 0.82rem; } .facilities-tabs { gap: 0.5rem; margin-bottom: 2rem; } }

/* ===== LEADERSHIP ===== */
.leadership-section { background: var(--white); }
.leadership-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.leader-card { border-radius: var(--radius-card); overflow: hidden; background: var(--white); box-shadow: var(--shadow-soft); border: 1px solid rgba(11,61,112,0.06); transition: var(--transition-smooth); }
.leader-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-float); }
.leader-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.leader-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.leader-card:hover .leader-img-wrap img { transform: scale(1.06); }
.leader-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,61,112,0.9) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.4s ease; }
.leader-card:hover .leader-img-overlay { opacity: 1; }
.leader-socials { display: flex; gap: 0.5rem; }
.leader-social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: transform 0.4s ease, background 0.3s ease; transform: translateY(10px); }
.leader-card:hover .leader-social-btn { transform: translateY(0); }
.leader-social-btn:hover { background: var(--primary-orange); border-color: var(--primary-orange); }
.leader-info { padding: 1.5rem; text-align: center; position: relative; }
.leader-info::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--primary-orange); border-radius: 0 0 3px 3px; }
.leader-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.leader-role { font-size: 0.85rem; color: var(--primary-orange); font-weight: 600; font-family: var(--font-subheading); }
@media (max-width: 1024px) { .leadership-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .leadership-grid { grid-template-columns: 1fr; } }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-filters { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { padding: 0.6rem 1.5rem; border-radius: 50px; border: 2px solid rgba(11,61,112,0.1); background: var(--light-bg); font-family: var(--font-subheading); font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: var(--transition-smooth); color: var(--text-muted); }
.filter-btn:hover, .filter-btn.active { background: var(--primary-orange); border-color: var(--primary-orange); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-orange); }
.gallery-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.gallery-item { position: relative; border-radius: var(--radius-card); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
.gallery-item:hover img { transform: scale(1.08); }
.gi-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.gi-2 { grid-column: 6 / 9; grid-row: 1 / 2; }
.gi-3 { grid-column: 9 / 13; grid-row: 1 / 3; }
.gi-4 { grid-column: 6 / 9; grid-row: 2 / 3; }
.gi-5 { grid-column: 1 / 5; grid-row: 3 / 4; }
.gi-6 { grid-column: 5 / 13; grid-row: 3 / 4; }
.gi-7 { grid-column: 1 / 9; grid-row: 4 / 5; }
.gi-8 { grid-column: 9 / 13; grid-row: 4 / 6; }
.gi-9 { grid-column: 1 / 5; grid-row: 5 / 6; }
.gi-10 { grid-column: 5 / 9; grid-row: 5 / 6; }
.gallery-cta { text-align: center; margin-top: 3rem; }
@media (max-width: 1024px) { .gallery-bento { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; } .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7, .gi-8, .gi-9, .gi-10 { grid-column: auto; grid-row: auto; height: 240px; } }
@media (max-width: 576px) { .gallery-bento { grid-template-columns: 1fr 1fr; } .gallery-item { height: 200px; } }

/* ===== CONTACT ===== */
.contact-section { background: var(--light-bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-float); }
.contact-info-panel { background: linear-gradient(160deg, var(--primary-navy), var(--accent-purple)); padding: 3.5rem 3rem; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.contact-info-panel::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; border: 60px solid rgba(255,255,255,0.04); }
.contact-info-panel::after { content: ''; position: absolute; top: -50px; left: -50px; width: 200px; height: 200px; border-radius: 50%; border: 40px solid rgba(255,255,255,0.04); }
.contact-info-panel .chip { background: rgba(245,130,32,0.2); border-color: rgba(245,130,32,0.4); color: #FFB067; }
.contact-info-panel h2 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.contact-info-panel > p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.contact-item-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--primary-orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item-value { color: var(--white); font-size: 0.95rem; font-weight: 500; }
.contact-social-row { display: flex; gap: 1rem; margin-top: auto; padding-top: 2.5rem; }
.contact-social-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; transition: var(--transition-smooth); cursor: pointer; }
.contact-social-btn:hover { background: var(--primary-orange); border-color: var(--primary-orange); transform: translateY(-3px); }
.contact-map-panel { display: flex; flex-direction: column; }
.contact-map-panel iframe { width: 100%; flex: 1; min-height: 350px; border: 0; }
.contact-hours { padding: 1.75rem 2.5rem; display: flex; gap: 3rem; align-items: center; border-top: 1px solid rgba(11,61,112,0.06); flex-wrap: wrap; }
.hours-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.25rem; }
.hours-value { font-weight: 700; color: var(--primary-navy); font-size: 0.95rem; }
@media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; } .contact-info-panel { padding: 2.5rem 2rem; } .contact-social-row { padding-top: 1.5rem; } }
@media (max-width: 576px) { .contact-info-panel { padding: 2rem 1.5rem; } .contact-info-panel h2 { font-size: 1.6rem; } .contact-hours { flex-direction: column; gap: 1.25rem; padding: 1.25rem 1.5rem; } .contact-map-panel iframe { min-height: 250px; } .contact-items { gap: 1.25rem; } }

/* ===== FOOTER ===== */
.footer { background: var(--primary-navy-deep); color: var(--white); padding-top: 5rem; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-orange), var(--accent-purple), var(--primary-orange)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 50px; background: white; padding: 6px 10px; border-radius: 10px; margin-bottom: 1.5rem; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); font-size: 0.85rem; font-weight: 700; }
.footer-social:hover { background: var(--primary-orange); border-color: var(--primary-orange); color: var(--white); transform: translateY(-4px); }
.footer-col-title { font-family: var(--font-subheading); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--primary-orange); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition-smooth); }
.footer-links a::before { content: '→'; font-size: 0.75rem; opacity: 0; transform: translateX(-5px); transition: all 0.3s ease; }
.footer-links a:hover { color: var(--primary-orange); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-item { display: flex; gap: 0.875rem; margin-bottom: 1.25rem; color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-contact-icon { color: var(--primary-orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 16px; height: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.875rem; }
.newsletter-input-wrap { display: flex; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); }
.newsletter-input-wrap input { flex: 1; background: rgba(255,255,255,0.05); border: none; padding: 0.875rem 1rem; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; }
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input-wrap input:focus { outline: none; }
.newsletter-btn { background: var(--primary-orange); border: none; padding: 0 1.25rem; color: var(--white); font-weight: 700; cursor: pointer; font-family: var(--font-subheading); font-size: 0.85rem; transition: background 0.3s ease; white-space: nowrap; }
.newsletter-btn:hover { background: #d9701a; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.88rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.88rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--primary-orange); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (max-width: 576px) { .footer { padding-top: 3.5rem; } .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; } .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; } .footer-bottom-links { justify-content: center; gap: 1rem; flex-wrap: wrap; } .newsletter-input-wrap { flex-direction: column; border-radius: 12px; } .newsletter-btn { padding: 0.875rem 1rem; border-radius: 0 0 10px 10px; } }

/* ===== ADMISSIONS PAGE ===== */
.admissions-page { background: var(--light-bg); min-height: 100vh; }
.ap-hero { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: center; padding-top: 80px; }
.ap-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.ap-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.ap-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(6,30,56,0.92) 0%, rgba(11,61,112,0.75) 100%); }
.ap-hero-content { position: relative; z-index: 2; color: var(--white); }
.ap-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-family: var(--font-heading); font-weight: 800; color: var(--white); margin-top: 1rem; margin-bottom: 1rem; line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.ap-subtitle { font-size: 1.25rem; font-family: var(--font-subheading); color: rgba(255,255,255,0.9); max-width: 650px; }
.ap-grid { display: grid; grid-template-columns: 1.8fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 992px) { .ap-grid { grid-template-columns: 1fr; gap: 3.5rem; } }
.ap-section-header h2 { font-size: 2.25rem; color: var(--primary-navy-deep); font-family: var(--font-heading); margin-bottom: 0.5rem; }
.ap-section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.ap-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.ap-step-card { background: var(--white); padding: 1.75rem; border-radius: 20px; display: flex; gap: 1.5rem; align-items: flex-start; box-shadow: 0 4px 20px rgba(11,61,112,0.03); border: 1px solid rgba(11,61,112,0.04); transition: var(--transition-smooth); }
.ap-step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(245,130,32,0.2); }
.ap-step-num-wrap { width: 48px; height: 48px; border-radius: 14px; background: rgba(245,130,32,0.10); color: var(--primary-orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ap-step-num { font-size: 1.25rem; font-weight: 800; font-family: var(--font-heading); }
.ap-step-details h4 { font-size: 1.15rem; color: var(--primary-navy); margin-bottom: 0.4rem; font-weight: 700; }
.ap-step-details p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.ap-section-block h3 { font-size: 1.5rem; color: var(--primary-navy-deep); font-family: var(--font-heading); margin-bottom: 0.5rem; }
.ap-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(11,61,112,0.03); border: 1px solid rgba(11,61,112,0.05); }
.ap-table th, .ap-table td { padding: 1.2rem 1.5rem; text-align: left; }
.ap-table th { background: var(--primary-navy); color: var(--white); font-family: var(--font-subheading); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.ap-table td { border-bottom: 1px solid rgba(11,61,112,0.05); font-size: 0.98rem; color: var(--text-main); }
.ap-table tr:last-child td { border-bottom: none; }
.ap-table tr:nth-child(even) td { background: rgba(11,61,112,0.01); }
.ap-docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .ap-docs-grid { grid-template-columns: 1fr; } }
.ap-doc-card { background: var(--white); padding: 1.5rem; border-radius: 18px; display: flex; gap: 1.2rem; box-shadow: 0 4px 20px rgba(11,61,112,0.02); border: 1px solid rgba(11,61,112,0.04); }
.ap-doc-icon-wrap { width: 42px; height: 42px; border-radius: 12px; background: rgba(58,29,143,0.08); color: var(--accent-purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ap-doc-icon-wrap svg { width: 20px; height: 20px; }
.ap-doc-details h5 { font-size: 1.05rem; color: var(--primary-navy); margin-bottom: 0.3rem; font-weight: 700; }
.ap-doc-details p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; margin: 0; }
.ap-sidebar { position: sticky; top: 110px; }
.ap-form-card { background: var(--white); padding: 2.5rem 2rem; border-radius: var(--radius-card); box-shadow: var(--shadow-soft); border-top: 5px solid var(--primary-orange); }
.ap-form-card h3 { font-size: 1.5rem; font-family: var(--font-heading); color: var(--primary-navy-deep); margin-bottom: 0.5rem; }
.ap-form-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; margin-bottom: 1.75rem; }
.ap-form, .alumni-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ap-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.ap-form-group label { font-size: 0.85rem; font-weight: 600; color: var(--primary-navy); font-family: var(--font-subheading); }
.ap-form-group input, .ap-form-group select, .ap-form-group textarea { padding: 0.75rem 1rem; border-radius: 12px; border: 1px solid rgba(11,61,112,0.12); font-family: var(--font-body); font-size: 0.95rem; background: var(--light-bg); color: var(--text-main); transition: var(--transition-smooth); }
.ap-form-group input:focus, .ap-form-group select:focus, .ap-form-group textarea:focus { outline: none; border-color: var(--primary-orange); background: var(--white); box-shadow: 0 0 0 4px rgba(245,130,32,0.15); }
.form-success-alert { background: rgba(76,175,45,0.08); border: 1px solid rgba(76,175,45,0.2); padding: 2rem; border-radius: 18px; text-align: center; }
.success-icon-wrap { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-green); color: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.success-icon-wrap svg { width: 28px; height: 28px; }
.form-success-alert h4 { color: var(--accent-green); font-family: var(--font-heading); margin-bottom: 0.5rem; }
.form-success-alert p { color: var(--text-main); font-size: 0.95rem; margin-bottom: 0; }
.form-error-alert { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #ef4444; padding: 1rem; border-radius: 10px; font-size: 0.9rem; display: none; }
.ap-sidebar-contact { margin-top: 2rem; border-top: 1px solid rgba(11,61,112,0.08); padding-top: 1.5rem; }
.ap-sidebar-contact h5 { font-size: 1rem; color: var(--primary-navy); margin-bottom: 0.75rem; font-weight: 700; }
.ap-contact-row { display: flex; gap: 1rem; }
.ap-contact-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem; border-radius: 50px; background: var(--primary-navy); color: var(--white); font-size: 0.82rem; font-weight: 700; text-decoration: none; font-family: var(--font-subheading); text-transform: uppercase; letter-spacing: 0.3px; transition: var(--transition-smooth); }
.ap-contact-btn:hover { background: var(--primary-orange); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.ap-contact-btn.btn-sec { background: var(--white); border: 2px solid rgba(11,61,112,0.15); color: var(--primary-navy); }
.ap-contact-btn.btn-sec:hover { border-color: var(--primary-orange); color: var(--primary-orange); background: var(--white); box-shadow: none; }
@media (max-width: 480px) { .ap-contact-row { flex-direction: column; } }
@media (max-width: 576px) { .ap-hero { height: auto; min-height: 300px; padding-top: 90px; padding-bottom: 2.5rem; } .ap-hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); } .ap-subtitle { font-size: 1rem; } .ap-section-header h2 { font-size: 1.75rem; } .ap-section-block h3 { font-size: 1.25rem; } .ap-sidebar { position: static; } .ap-form-card { padding: 1.75rem 1.25rem; } .ap-table th, .ap-table td { padding: 0.875rem 1rem; font-size: 0.88rem; } .ap-step-card { padding: 1.25rem; gap: 1rem; } .ap-doc-card { padding: 1.25rem; gap: 1rem; } }

/* ===== ALUMNI PAGE ===== */
.alumni-page { background: var(--light-bg); min-height: 100vh; }
.alumni-hero { position: relative; height: 50vh; min-height: 380px; display: flex; align-items: center; padding-top: 80px; }
.alumni-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.alumni-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.alumni-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(6,30,56,0.92) 0%, rgba(11,61,112,0.75) 100%); }
.alumni-hero-content { position: relative; z-index: 2; color: var(--white); }
.alumni-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-family: var(--font-heading); font-weight: 800; color: var(--white); margin-top: 1rem; margin-bottom: 1rem; line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.alumni-subtitle { font-size: 1.25rem; font-family: var(--font-subheading); color: rgba(255,255,255,0.9); max-width: 650px; }
.alumni-stats-section { background: var(--primary-navy-deep); padding: 3rem 0; }
.alumni-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 992px) { .alumni-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .alumni-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
.alumni-stat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 2rem; border-radius: 20px; text-align: center; color: var(--white); transition: var(--transition-smooth); }
.alumni-stat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); border-color: var(--primary-orange); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.alumni-stat-icon-wrap { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.05); color: var(--primary-orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: var(--transition-smooth); }
.alumni-stat-icon-wrap svg { width: 24px; height: 24px; }
.alumni-stat-card:hover .alumni-stat-icon-wrap { background: var(--primary-orange); color: var(--white); transform: scale(1.1) rotate(5deg); }
.alumni-stat-num { font-size: 2.25rem; font-weight: 800; font-family: var(--font-heading); margin-bottom: 0.25rem; color: var(--white); }
.alumni-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-family: var(--font-subheading); font-weight: 600; }
.alumni-grid { display: grid; grid-template-columns: 1.7fr 1.3fr; gap: 4rem; align-items: start; }
@media (max-width: 992px) { .alumni-grid { grid-template-columns: 1fr; gap: 3.5rem; } }
.alumni-section-header h2 { font-size: 2.25rem; color: var(--primary-navy-deep); font-family: var(--font-heading); margin-bottom: 0.5rem; }
.alumni-section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.alumni-spotlights-list { display: flex; flex-direction: column; gap: 2rem; }
.alumni-spotlight-card { background: var(--light-bg); padding: 2rem; border-radius: 24px; display: flex; gap: 2rem; align-items: center; box-shadow: 0 4px 20px rgba(11,61,112,0.02); border: 1px solid rgba(11,61,112,0.04); transition: var(--transition-smooth); }
.alumni-spotlight-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow-soft); border-color: rgba(245,130,32,0.15); }
@media (max-width: 600px) { .alumni-spotlight-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; } }
.alumni-spot-img-wrap { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 4px solid var(--white); box-shadow: 0 8px 24px rgba(11,61,112,0.1); }
.alumni-spot-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.alumni-spot-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.25rem; }
@media (max-width: 600px) { .alumni-spot-meta { flex-direction: column; align-items: center; gap: 0.25rem; } }
.alumni-spot-meta h4 { font-size: 1.25rem; color: var(--primary-navy-deep); font-weight: 700; margin: 0; }
.alumni-batch { font-size: 0.82rem; font-weight: 700; color: var(--primary-orange); background: rgba(245,130,32,0.08); padding: 0.3rem 0.75rem; border-radius: 50px; font-family: var(--font-subheading); text-transform: uppercase; }
.alumni-spot-role { font-size: 0.92rem; color: var(--accent-purple); font-weight: 600; font-family: var(--font-subheading); margin-bottom: 1rem; }
.alumni-spot-quote { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); font-style: italic; margin: 0; }
.alumni-right-form { position: sticky; top: 110px; }
.alumni-form-card { background: var(--white); padding: 2.5rem 2rem; border-radius: var(--radius-card); box-shadow: var(--shadow-soft); border-top: 5px solid var(--accent-purple); }
.alumni-form-card h3 { font-size: 1.5rem; font-family: var(--font-heading); color: var(--primary-navy-deep); margin-bottom: 0.5rem; }
.alumni-form-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; margin-bottom: 1.75rem; }
@media (max-width: 576px) { .alumni-hero { height: auto; min-height: 300px; padding-top: 90px; padding-bottom: 2.5rem; } .alumni-hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); } .alumni-subtitle { font-size: 1rem; } .alumni-stat-card { padding: 1.5rem 1rem; } .alumni-stat-num { font-size: 1.75rem; } .alumni-stat-icon-wrap { width: 44px; height: 44px; } .alumni-section-header h2 { font-size: 1.75rem; } .alumni-right-form { position: static; } .alumni-form-card { padding: 1.75rem 1.25rem; } .alumni-spotlight-card { padding: 1.5rem 1rem; gap: 1rem; } .alumni-spot-img-wrap { width: 80px; height: 80px; } }

/* ===== LEGAL / GALLERY PAGE ===== */
.legal-page { padding: 8rem 0 5rem; min-height: 100vh; }
.legal-header { text-align: center; margin-bottom: 3.5rem; }
.legal-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
.legal-content { max-width: 800px; margin: 0 auto; line-height: 1.8; color: var(--text-muted); }
.legal-content h2 { font-size: 1.4rem; color: var(--primary-navy); margin: 2rem 0 0.75rem; }
.legal-content p { margin-bottom: 1.25rem; }
.legal-content ul { margin: 0.75rem 0 1.25rem 1.5rem; }
.legal-content ul li { list-style: disc; margin-bottom: 0.5rem; }

/* ===== PD BACK LINK ===== */
.pd-back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 600; color: var(--primary-navy); margin-bottom: 2rem; transition: gap 0.3s ease; }
.pd-back-link:hover { gap: 0.8rem; color: var(--primary-orange); }
.pd-back-link svg { width: 16px; height: 16px; }

/* ===== TABLE RESPONSIVE ===== */
.table-responsive { overflow-x: auto; border-radius: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) { .section-padding { padding: 5rem 0; } }
@media (max-width: 768px) { .section-padding { padding: 4rem 0; } .container { padding: 0 1.25rem; } }
@media (max-width: 576px) { .section-padding { padding: 3rem 0; } .section-title-block { margin-bottom: 2.5rem; } .section-title-block h2 { font-size: clamp(1.6rem, 7vw, 2rem); } .section-title-block p { font-size: 1rem; } .container { padding: 0 1rem; } .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; } }
