/* ==========================================================================
   VNCHIP TECHNOLOGY JSC - MAIN STYLESHEET
   Semiconductor & IC Design High-Tech Aesthetic
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary-orange: #E15225;
  --primary-orange-hover: #F26135;
  --primary-orange-glow: rgba(225, 82, 37, 0.45);
  
  --dark-navy: #0A192F;
  --dark-navy-card: #0F2442;
  --dark-navy-deep: #060F1E;
  --dark-black: #050B14;
  --dark-footer: #04080F;
  
  --electric-cyan: #00D2FF;
  --electric-cyan-glow: rgba(0, 210, 255, 0.35);
  
  --text-white: #FFFFFF;
  --text-light: #F1F5F9;
  --text-gray: #94A3B8;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  
  --bg-white: #FFFFFF;
  --bg-light-gray: #F8FAFC;
  --border-light: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-orange: rgba(225, 82, 37, 0.3);

  /* Typography */
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-tech: 'Orbitron', 'Montserrat', sans-serif;
  
  /* Containers & Spacing */
  --container-max: 1360px;
  --container-pad: 24px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 25px var(--primary-orange-glow);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-navy-deep);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Section Headings */
.section-title-tech {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 700px;
  margin-bottom: 40px;
}

/* ==========================================================================
   HEADER & STICKY NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), padding var(--transition-smooth);
  padding: 16px 0;
}

.site-header.scrolled {
  background: rgba(6, 15, 30, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  border-bottom-color: rgba(225, 82, 37, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.site-logo:hover img {
  transform: scale(1.03);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link .dropdown-arrow {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark-navy-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 8px 20px;
  font-size: 0.88rem;
  color: var(--text-gray);
}

.dropdown-link:hover {
  background: rgba(225, 82, 37, 0.12);
  color: var(--primary-orange);
  padding-left: 24px;
}

/* Header Buttons */
.btn-talk {
  background-color: var(--primary-orange);
  color: var(--text-white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px var(--primary-orange-glow);
  transition: all var(--transition-smooth);
}

.btn-talk:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 82, 37, 0.6);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0A192F url('../images/hero_chip_bg.webp') no-repeat center 42%;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 45px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(0, 0, 0, 0) 0%, rgba(6, 15, 30, 0.3) 65%, rgba(6, 15, 30, 0.9) 100%),
              linear-gradient(180deg, rgba(10, 25, 47, 0.35) 0%, rgba(6, 15, 30, 0.05) 50%, rgba(6, 15, 30, 0.98) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Key Highlights Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.stat-item {
  padding: 10px 20px 10px 0;
}

.stat-number {
  font-family: var(--font-tech);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  letter-spacing: 0.5px;
}

.stat-number span {
  color: var(--primary-orange);
}

.stat-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-light);
  opacity: 0.92;
}

/* ==========================================================================
   BUSINESS SECTION
   ========================================================================== */
.business-section {
  background-color: var(--dark-navy-deep);
  padding: 100px 0 60px;
  position: relative;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 70px;
}

.business-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background-color: var(--dark-navy-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-dark);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.business-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-orange-glow);
}

.business-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.business-card:hover .business-card-img {
  transform: scale(1.05);
}

.business-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(5, 11, 20, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.business-card-title {
  font-family: var(--font-tech);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.business-card-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Curved Blue Pill Banner */
.pill-banner-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pill-banner {
  background: linear-gradient(135deg, #133966 0%, #0F2A4D 100%);
  border-radius: var(--radius-full);
  padding: 36px 60px;
  text-align: center;
  max-width: 950px;
  border: 1px solid rgba(0, 210, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.pill-banner p {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text-white);
}

/* ==========================================================================
   SERVICES SECTION (White Background Matrix)
   ========================================================================== */
.services-section {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.service-col-title {
  font-family: var(--font-tech);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  padding-bottom: 12px;
}

.service-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  border-bottom: 1px solid #1E293B;
  padding: 22px 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  transition: color var(--transition-fast);
}

.service-icon {
  color: var(--primary-orange);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform var(--transition-fast);
}

.service-item:hover .service-name {
  color: var(--primary-orange);
  padding-left: 6px;
}

.service-item.active .service-icon {
  transform: rotate(45deg);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-item.active .service-body {
  max-height: 200px;
  padding-top: 14px;
}

/* ==========================================================================
   PARTNERS SECTION (Carousel & Slicing)
   ========================================================================== */
.partners-section {
  background-color: #171B26;
  padding: 100px 0;
}

.partners-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  box-shadow: 0 0 15px var(--primary-orange-glow);
}

.partners-carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.partner-card {
  background: #1F2433;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 82, 37, 0.5);
}

.partner-card-media {
  background: #111520;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-card-media img {
  border-radius: var(--radius-sm);
  max-height: 220px;
  object-fit: contain;
}

.partner-card-content {
  padding: 24px;
}

.partner-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.partner-card-desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ==========================================================================
   SUSTAINABLE & TALENTS SECTION
   ========================================================================== */
.sustainable-section {
  background: #132238;
  padding: 100px 0;
}

.sustainable-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sustainable-subtitle {
  font-family: var(--font-tech);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sustainable-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.sustainable-cards-group {
  display: flex;
  gap: 24px;
}

.program-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 14px;
  flex: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: block;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.program-card-inner {
  display: flex;
  flex-direction: column;
}

.program-card-visual {
  background: linear-gradient(180deg, #101C2E 0%, #08111D 100%);
  border-radius: 18px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.program-icon-img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.program-card-footer {
  padding: 16px 8px 8px;
  text-align: left;
}

.program-card-brand {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.program-card-title {
  font-family: var(--font-tech);
  font-size: 1.15rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: 0.5px;
  line-height: 1.2;
}


/* ==========================================================================
   MEDIA CENTER SECTION (White Background)
   ========================================================================== */
.media-section {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 100px 0 60px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.media-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-smooth);
}

.media-card:hover {
  transform: translateY(-6px);
}

.media-thumb-wrapper {
  position: relative;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}

.media-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-thumb {
  transform: scale(1.08);
}

.media-category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-orange);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.media-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   CALL TO ACTION (CTA) BANNER COMPONENT
   ========================================================================== */
.cta-wrapper {
  background-color: var(--bg-white);
  padding: 30px 0 80px;
}

.cta-banner-pill {
  background: linear-gradient(135deg, #061A3A 0%, #0F2A4D 100%);
  border-radius: var(--radius-full);
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(6, 26, 58, 0.35);
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.cta-title {
  font-family: var(--font-tech);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-white);
  text-transform: uppercase;
}

.btn-cta {
  background: var(--primary-orange);
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 15px var(--primary-orange-glow);
  transition: all var(--transition-smooth);
}

.btn-cta:hover {
  background: var(--primary-orange-hover);
  transform: translateX(4px);
  box-shadow: 0 6px 25px rgba(225, 82, 37, 0.6);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--dark-black);
  color: var(--text-gray);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-title {
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links-subgroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-sub-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.86rem;
  color: #94A3B8;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--primary-orange);
  padding-left: 4px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 40px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand-info {
  max-width: 480px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
}

.footer-contact-info {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-gray);
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-sub-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.95);
  transition: filter var(--transition-fast);
}

.footer-sub-logo:hover {
  filter: brightness(1.1);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: #64748B;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   PAGE 2: ABOUT US STYLES
   ========================================================================== */

/* 1. About Hero Section */
.about-hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  padding-top: 140px;
  background-color: #050B14;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/about_workspace_bg.webp') center 30% / cover no-repeat;
  filter: brightness(0.55) contrast(1.1);
  transform: scale(1.02);
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 11, 20, 0.95) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-family: var(--font-tech);
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

/* 2. Company Overview Section (White) */
.about-overview-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 85px 0 90px;
}

.overview-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.overview-lead {
  max-width: 1100px;
  margin-bottom: 45px;
}

.overview-lead p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 16px;
}

.overview-lead p:last-child {
  margin-bottom: 0;
}

.overview-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin-bottom: 50px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.overview-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
}

.overview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overview-image-wrapper:hover .overview-img {
  transform: scale(1.03);
}

.overview-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-text-p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
}

/* /* 3. Journey Timeline Section (Dark Navy) */
.about-journey-section {
  background-color: #07152B;
  color: var(--text-white);
  padding: 95px 0 70px;
}

.journey-header {
  text-align: center;
  margin-bottom: 70px;
}

.journey-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.journey-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #CBD5E1;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
  text-transform: uppercase;
}

.timeline-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-center-line {
  position: absolute;
  top: 10px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
}

.timeline-row {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-row.left-row {
  justify-content: flex-start;
}

.timeline-row.right-row {
  justify-content: flex-end;
}

.timeline-node {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translate(-50%, 0);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 210, 255, 0.3);
  z-index: 3;
}

.timeline-content {
  width: calc(50% - 45px);
  position: relative;
}

.timeline-row.left-row .timeline-content {
  text-align: right;
  margin-right: 45px;
}

.timeline-row.right-row .timeline-content {
  text-align: left;
  margin-left: 45px;
}

.timeline-year {
  font-family: var(--font-tech);
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: 1px;
}

.timeline-desc {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.5;
  font-weight: 400;
}

.journey-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 70px 0 0;
}

/* 4. Vision, Mission & Core Values */
.about-vision-section {
  background-color: var(--dark-navy-deep);
  color: var(--text-white);
  padding: 10px 0 60px;
}

.vision-main-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.vision-main-subtitle {
  font-size: 1.05rem;
  color: #CBD5E1;
  margin-bottom: 45px;
}

.vision-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vision-card {
  background: rgba(10, 25, 47, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 40px rgba(225, 82, 37, 0.2);
}

.vision-icon-box {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vision-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 210, 255, 0.4));
}

.vision-card-title {
  font-family: var(--font-tech);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.vision-card-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #CBD5E1;
}

/* 5. Leadership Section (Dark Navy) */
.about-leadership-section {
  background-color: var(--dark-navy-deep);
  color: var(--text-white);
  padding: 20px 0 85px;
}

.leadership-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.leadership-title {
  font-size: 2.2rem;
  margin-bottom: 0;
}

.carousel-nav-arrows {
  display: flex;
  gap: 12px;
}

.nav-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--primary-orange);
  background: transparent;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.nav-arrow-btn:hover {
  background: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: 0 0 15px var(--primary-orange-glow);
}

.nav-arrow-btn.dark {
  border-color: #CBD5E1;
  color: #475569;
}

.nav-arrow-btn.dark:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
}

/* Founder Message Card */
.founder-message-box {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin-bottom: 45px;
}

.founder-photo-col {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  padding: 20px 20px 0;
}

.founder-full-img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
}

.founder-quote-col {
  padding: 45px 50px 45px 30px;
}

.founder-box-title {
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.founder-box-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin: 20px 0;
}

.founder-quote-p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1E293B;
  font-weight: 500;
}

.leadership-subtext-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  gap: 30px;
}

.leadership-subtext {
  font-size: 1rem;
  color: #CBD5E1;
  max-width: 850px;
  line-height: 1.6;
}

/* 4 Executive Cards Grid */
.executives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.executive-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0F2442;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-smooth);
}

.executive-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 40px rgba(225, 82, 37, 0.25);
}

.exec-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.exec-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 15, 30, 0.95) 60%, rgba(6, 15, 30, 1) 100%);
  text-align: center;
}

.exec-name {
  font-family: var(--font-tech);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.exec-role {
  font-size: 0.82rem;
  color: #94A3B8;
  font-weight: 500;
}

/* Key Team Row */
.key-team-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.key-team-title {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.key-team-sub {
  font-size: 0.92rem;
  color: #94A3B8;
  max-width: 650px;
}

.key-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.key-team-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(10, 25, 47, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 30px 16px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.key-team-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
}

.avatar-placeholder-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #FFFFFF;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-meta .team-member-name {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.team-meta .team-member-pos {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* 6. Code of Conduct Section (White) */
.about-conduct-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 85px 0 60px;
}

.conduct-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
}

.conduct-main-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.conduct-main-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 800px;
  line-height: 1.6;
}

.conduct-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.conduct-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 20px;
  padding: 35px 24px;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.conduct-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: 0 12px 30px rgba(225, 82, 37, 0.12);
}

.conduct-card-title {
  font-family: var(--font-tech);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1.35;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  min-height: 48px;
}

.conduct-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #475569;
}

.conduct-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin-top: 70px;
}

/* 7. Clean Room Section (White) */
.about-cleanroom-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 40px 0 90px;
}

.cleanroom-header-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 45px;
}

.cleanroom-heading {
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: 1px;
  white-space: nowrap;
}

.cleanroom-subheading {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

.cleanroom-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cleanroom-photo-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
}

.cleanroom-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cleanroom-photo-card:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   PAGE 3: BUSINESS & SOLUTIONS STYLES
   ========================================================================== */

/* 1. Business Hero Section */
.biz-hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
  padding-top: 140px;
  background-color: #050B14;
  overflow: hidden;
}

.biz-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/business_hero_pcb.webp') center 40% / cover no-repeat;
  filter: brightness(0.6) contrast(1.15);
  transform: scale(1.02);
}

.biz-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 11, 20, 0.95) 100%);
}

.biz-hero-content {
  position: relative;
  z-index: 2;
}

.biz-hero-title {
  font-family: var(--font-tech);
  font-size: 3.4rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

/* 2. Technology Container Box */
.biz-tech-container {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: 60px;
}

.biz-tech-box {
  background: linear-gradient(135deg, #07192F 0%, #030C18 100%);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 36px;
  padding: 40px 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.biz-tech-title {
  font-family: var(--font-tech);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.biz-tech-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.biz-tech-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.biz-tech-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--primary-orange-glow);
}

.biz-tech-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.biz-tech-text {
  font-family: var(--font-tech);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.35;
}

/* 3. Services Accordion Matrix (White Section) */
.biz-services-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 85px 0 60px;
}

/* 4. R&D & Strategic Collaborations Section */
.biz-rd-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 40px 0 90px;
}

.biz-rd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.biz-rd-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.biz-rd-badge {
  background-color: #0A192F;
  color: #FFFFFF;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.3);
}

.biz-rd-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 35px;
  align-items: center;
}

.biz-rd-main-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.biz-rd-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.biz-rd-main-photo:hover img {
  transform: scale(1.03);
}

.biz-rd-right-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.biz-rd-subphotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.biz-rd-subphoto {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.biz-rd-subphoto img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.biz-rd-subphoto:hover img {
  transform: scale(1.04);
}

.biz-rd-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.5;
}

.biz-rd-sublead {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
}

.biz-rd-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.biz-rd-bottom-text p {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.75;
}

/* 5. Success in Action Section (Dark Navy) */
.biz-success-section {
  background-color: var(--dark-navy-deep);
  color: var(--text-white);
  padding: 90px 0;
}

.biz-success-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
}

.biz-success-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.biz-success-subtitle {
  font-size: 0.95rem;
  color: #94A3B8;
  max-width: 650px;
}

.biz-success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.biz-success-card {
  background: #0F1D33;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-smooth);
}

.biz-success-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 40px rgba(225, 82, 37, 0.25);
}

.biz-success-media {
  padding: 14px;
  background: #091220;
}

.biz-success-media img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.biz-success-body {
  padding: 24px;
}

.biz-success-card-title {
  font-family: var(--font-tech);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.4;
}

.biz-success-card-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* 6. Partner Values & University Partners Section (White) */
.biz-values-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 85px 0 90px;
}

.biz-values-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 24px;
}

.biz-values-quote {
  font-family: var(--font-tech);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  max-width: 950px;
  margin: 0 auto 50px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-align: center;
}

.biz-values-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin-bottom: 60px;
}

.biz-uni-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.biz-uni-title {
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.biz-uni-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.biz-uni-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 20px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-smooth);
}

.biz-uni-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: 0 12px 30px rgba(225, 82, 37, 0.15);
}

.biz-uni-card img {
  max-height: 95px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.biz-uni-card:hover img {
  transform: scale(1.06);
}

/* ==========================================================================
   PAGE 4: SUSTAINABLE & TALENTS STYLES
   ========================================================================== */

/* 1. Sustainable Hero Section */
.sus-hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
  padding-top: 140px;
  background-color: #050B14;
  overflow: hidden;
}

.sus-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/sustainable_hero_pcb.webp') center 45% / cover no-repeat;
  filter: brightness(0.6) contrast(1.15);
  transform: scale(1.02);
}

.sus-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 11, 20, 0.95) 100%);
}

.sus-hero-content {
  position: relative;
  z-index: 2;
}

.sus-hero-title {
  font-family: var(--font-tech);
  font-size: 3.4rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

/* 2. Talents Development Section (Dark Navy) */
.sus-talents-section {
  background-color: var(--dark-navy-deep);
  color: var(--text-white);
  padding: 85px 0 90px;
}

.sus-talents-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 24px;
}

.sus-talents-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.sus-talents-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #CBD5E1;
  margin-bottom: 14px;
}

.sus-talents-intro p:last-child {
  margin-bottom: 0;
}

.sus-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 800px;
  margin: 0 auto;
}

.sus-program-card {
  background: rgba(10, 25, 47, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  padding: 45px 30px 35px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-smooth);
  display: block;
}

.sus-program-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 50px rgba(225, 82, 37, 0.25);
}

.sus-program-icon-box {
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sus-program-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 210, 255, 0.4));
}

.sus-program-brand {
  font-family: var(--font-tech);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.sus-program-name {
  font-family: var(--font-tech);
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1px;
}

/* 3. Social Responsibilities Section (White) */
.sus-social-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 85px 0 60px;
}

.sus-section-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.sus-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1100px;
}

.sus-paragraphs p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #334155;
}

.sus-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin: 60px 0;
}

/* 4. Confidentiality & Clean Room Section (White) */
.sus-confidentiality-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 20px 0 90px;
}

.sus-cleanroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0 25px;
}

.sus-cleanroom-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
}

.sus-cleanroom-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sus-cleanroom-photo:hover img {
  transform: scale(1.04);
}

.sus-cleanroom-caption {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

/* ==========================================================================
   PAGE 5: MEDIA CENTER STYLES
   ========================================================================== */

/* 1. Media Hero Section */
.media-hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
  padding-top: 140px;
  background-color: #050B14;
  overflow: hidden;
}

.media-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/media_hero_network.webp') center 35% / cover no-repeat;
  filter: brightness(0.65) contrast(1.15);
  transform: scale(1.02);
}

.media-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 11, 20, 0.95) 100%);
}

.media-hero-content {
  position: relative;
  z-index: 2;
}

.media-hero-title {
  font-family: var(--font-tech);
  font-size: 3.4rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

/* 2. Media Center Listing (White) */
.media-center-page-section {
  background-color: #FFFFFF;
  color: #1E293B;
  padding: 85px 0 90px;
}

.media-page-title {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 35px;
}

.media-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 45px;
  padding-bottom: 25px;
  border-bottom: 1px solid #E2E8F0;
}

.media-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.media-filter-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #CBD5E1;
  color: #475569;
  background: #FFFFFF;
  transition: all var(--transition-fast);
}

.media-filter-pill:hover,
.media-filter-pill.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--primary-orange-glow);
}

.media-search-form {
  display: flex;
  gap: 8px;
}

.media-search-input {
  padding: 10px 20px;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  outline: none;
  width: 240px;
  transition: border-color var(--transition-fast);
}

.media-search-input:focus {
  border-color: var(--primary-orange);
}

.media-search-btn {
  background: var(--primary-orange);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition-fast);
}

.media-search-btn:hover {
  background: var(--primary-orange-hover);
}

/* 3. 3-Column Article Cards */
.media-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.media-page-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.media-page-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
  box-shadow: 0 16px 35px rgba(225, 82, 37, 0.12);
}

.media-page-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0A192F;
}

.media-page-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-page-card:hover .media-page-thumb img {
  transform: scale(1.06);
}

.media-page-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.media-page-cat {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.media-page-card-title {
  font-family: var(--font-tech);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 12px;
}

.media-page-summary {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #64748B;
  flex-grow: 1;
}

/* 4. Pagination */
.media-pagination-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* ==========================================================================
   PAGE 6: TALK TO US / CONTACT STYLES
   ========================================================================== */

.contact-page-section {
  position: relative;
  min-height: calc(100vh - 100px);
  padding-top: 140px;
  padding-bottom: 90px;
  background-color: #050B14;
  overflow: hidden;
}

.contact-page-bg {
  position: absolute;
  inset: 0;
  background: url('../images/contact_hero_office.webp') center 40% / cover no-repeat;
  filter: brightness(0.45) contrast(1.15);
  transform: scale(1.02);
}

.contact-page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 11, 20, 0.92) 0%, rgba(10, 25, 47, 0.75) 50%, rgba(5, 11, 20, 0.95) 100%);
}

.contact-page-content {
  position: relative;
  z-index: 2;
}

.contact-page-title {
  font-family: var(--font-tech);
  font-size: 3.2rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-offices-title {
  font-family: var(--font-tech);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-offices-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 35px;
  max-width: 480px;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--primary-orange-glow);
}

.contact-item-label {
  font-family: var(--font-tech);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-item-val {
  font-size: 0.92rem;
  color: #FFFFFF;
  line-height: 1.5;
}

.contact-item-val a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item-val a:hover {
  color: var(--primary-orange);
}

/* Floating White Contact Card */
.contact-card-box {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 45px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-bottom: 24px;
}

.contact-form-full {
  grid-column: span 2;
}

.contact-input-wrap {
  position: relative;
}

.contact-input-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 4px;
}

.contact-input {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #CBD5E1;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #0F172A;
  outline: none;
  background: transparent;
  transition: border-color var(--transition-fast);
  border-radius: 0;
}

.contact-input:focus {
  border-bottom-color: var(--primary-orange);
}

.contact-textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #CBD5E1;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #0F172A;
  outline: none;
  background: transparent;
  resize: vertical;
  min-height: 70px;
  transition: border-color var(--transition-fast);
  border-radius: 0;
}

.contact-textarea:focus {
  border-bottom-color: var(--primary-orange);
}

.contact-submit-btn {
  background: var(--primary-orange);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 38px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 18px var(--primary-orange-glow);
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-orange-glow);
}
