/**
 * NICT Website Styles
 * Base styles for NICT website
 */

/* Microsoft Fluent–inspired design language */
:root {
  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-heading: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --line-height-tight: 1.25;
  --line-height-body: 1.5;
  --line-height-relaxed: 1.6;
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.04em;
  --letter-spacing-wider: 0.08em;

  --nict-navy: #0b2a4a;
  --nict-navy-light: #1a3a5a;
  --nict-navy-soft: rgba(11, 42, 74, 0.92);
  --nict-accent: #ed1c24;
  --nict-accent-hover: #c9181f;
  --nict-accent-light: rgba(237, 28, 36, 0.08);
  --nict-accent-border: rgba(237, 28, 36, 0.35);
  --nict-text: #201f1e;
  --nict-text-muted: #605e5c;
  --nict-bg-alt: #f3f2f1;
  --nict-bg-card: #ffffff;
  --nict-bg-subtle: #faf9f8;
  --section-title-line: 4px;
  /* Fluent corner radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  /* Fluent elevation */
  --shadow-sm: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.032), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.02);
  --shadow-md: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.04), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.028);
  --shadow-hover: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.06), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.04);
  /* Fluent motion: 350ms ease-out */
  --motion-duration: 0.35s;
  --ease-out-smooth: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  /* Breakpoints (for reference; use in media queries) */
  --bp-tablet: 992px;
  --bp-mobile: 768px;
  --bp-small: 480px;
  /* Content width – same for homepage and all inner pages */
  --content-max-width: 1200px;
  --content-width: 90%;
  /* Section rhythm – full-width sections with ample padding */
  --section-padding-y: 5rem;
  --section-padding-y-sm: 3rem;
  --section-padding-y-xs: 2rem;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--nict-text);
  line-height: var(--line-height-body);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Do not set overflow on body – it breaks position:sticky on the header */
}

/* Heading font – titles and labels */
h1, h2, h3, h4, h5, h6,
.overlay h1,
.hero-badge,
.yard-title,
.cta-strip-title,
.about-content h2,
.services h2,
.how-it-works h2,
.process-step h3,
.card h3,
.stats-bar-intro,
.trust-strip-label,
.partners-strip-label,
.footer-heading {
  font-family: var(--font-heading);
}
h1, h2, h3, h4, h5, h6,
.overlay h1,
.cta-strip-title,
.about-content h2,
.services h2,
.how-it-works h2 {
  line-height: var(--line-height-tight);
}

/* Form elements use site font */
input, button, textarea, select {
  font-family: var(--font-sans);
}

/* Focus styles – visible for keyboard (focus-visible), minimal for mouse */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.footer-social-link:focus-visible,
.hero-prev:focus-visible,
.hero-next:focus-visible,
.nav-toggle:focus-visible,
.nav-drawer-close:focus-visible,
.hero-dot:focus-visible {
  outline: 2px solid var(--nict-accent);
  outline-offset: 2px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--nict-accent);
}
.form-group input:focus,
.form-group textarea:focus,
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--nict-accent);
  box-shadow: 0 0 0 1px var(--nict-accent);
}

/* Reveal animations – light, natural */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out-smooth), transform 0.4s var(--ease-out-smooth);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll .reveal-delay-1,
.reveal-on-scroll .reveal-delay-2,
.reveal-on-scroll .reveal-delay-3,
.reveal-on-scroll .reveal-delay-4 {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease-out-smooth), transform 0.35s var(--ease-out-smooth);
}
.reveal-on-scroll.is-visible .reveal-delay-1 { transition-delay: 0.06s; }
.reveal-on-scroll.is-visible .reveal-delay-2 { transition-delay: 0.12s; }
.reveal-on-scroll.is-visible .reveal-delay-3 { transition-delay: 0.18s; }
.reveal-on-scroll.is-visible .reveal-delay-4 { transition-delay: 0.24s; }
.reveal-on-scroll.is-visible .reveal-delay-1,
.reveal-on-scroll.is-visible .reveal-delay-2,
.reveal-on-scroll.is-visible .reveal-delay-3,
.reveal-on-scroll.is-visible .reveal-delay-4 {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll .reveal-delay-1,
  .reveal-on-scroll .reveal-delay-2,
  .reveal-on-scroll .reveal-delay-3,
  .reveal-on-scroll .reveal-delay-4 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.container {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

/* TOP BAR – Fluent gradient */
.top-bar {
  background: linear-gradient(180deg, var(--nict-navy) 0%, var(--nict-navy-light) 100%);
  color: white;
  padding: 10px 0;
  font-size: 0.875rem;
}

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

.top-bar-left span{
margin-right:20px;
}

.top-bar-right{
display:flex;
gap:15px;
}

.social-icon {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.25s var(--ease-out-smooth);
}

.social-icon:hover{
color:var(--nict-accent);
}

/* ICONS - Monochrome SVG icons (sprite in layout, use href="#icon-*") */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  color: inherit;
  flex-shrink: 0;
}
.icon--sm { font-size: 1rem; }
.icon--md { font-size: 1.25rem; }
.icon--lg { font-size: 1.5rem; }
.icon--xl { font-size: 2rem; }
.top-bar-left span .icon { margin-right: 0.35em; }

/* NAVBAR – sticky so it stays in view when scrolling */
header.site-header,
header {
  background: linear-gradient(180deg, var(--nict-navy) 0%, var(--nict-navy-light) 100%);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-top: 1px solid rgba(255,255,255,0.08);
  /* Ensure sticky works: no transform on this element */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Hamburger – hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background var(--motion-duration) var(--ease-out-smooth);
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--motion-duration) var(--ease-out-smooth), opacity var(--motion-duration) var(--ease-out-smooth);
}
.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Side drawer – off-screen by default */
.nav-drawer {
  display: none;
}
.nav-drawer-backdrop {
  display: none;
}
.nav-drawer-panel {
  display: none;
}

/* Desktop nav */
.nav-main a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: color 0.25s var(--ease-out-smooth);
}
.nav-main a:hover {
  color: var(--nict-accent);
}
.nav-main a.current-page {
  color: var(--nict-accent);
}

nav a.current-page {
  color: var(--nict-accent);
}

/* HERO */

.hero {
  height: 85vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

/* Hero: large decorative background icons */
.hero-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-icon {
  position: absolute;
  width: 280px;
  height: 280px;
  color: rgba(255, 255, 255, 0.07);
  transition: color 0.6s var(--ease-out-smooth);
}
.hero:hover .hero-bg-icon {
  color: rgba(255, 255, 255, 0.1);
}
.hero-bg-icon--container {
  top: 15%;
  right: 8%;
}
.hero-bg-icon--rail {
  bottom: 20%;
  left: 5%;
  width: 320px;
  height: 320px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(0);
  transition: opacity var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth);
}

.slide.active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}

.slide.slide-out-left {
  opacity: 0;
  transform: translateX(-28px);
}
.slide.slide-out-right {
  opacity: 0;
  transform: translateX(28px);
}
.slide.slide-in-right {
  opacity: 1;
  transform: translateX(28px);
}
.slide.slide-in-right.active {
  transform: translateX(0);
}
.slide.slide-in-left {
  opacity: 1;
  transform: translateX(-28px);
}
.slide.slide-in-left.active {
  transform: translateX(0);
}

.overlay {
  background: linear-gradient(180deg, rgba(11, 42, 74, 0.82) 0%, rgba(11, 42, 74, 0.72) 50%, rgba(26, 58, 90, 0.78) 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 24px;
}

.overlay-inner {
  max-width: 720px;
}

.hero-badge {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px 0;
}

.overlay h1 {
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: var(--line-height-tight);
  position: relative;
  padding-bottom: 16px;
}
.overlay h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--nict-accent);
  border-radius: 2px;
}

.overlay p {
  font-size: clamp(16px, 2.2vw, 20px);
  margin-bottom: 28px;
  line-height: var(--line-height-body);
  opacity: 0.95;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  color: white;
  cursor: pointer;
  overflow: hidden;
  transition: width var(--motion-duration) var(--ease-out-smooth), padding var(--motion-duration) var(--ease-out-smooth), background var(--motion-duration) var(--ease-out-smooth), border-color var(--motion-duration) var(--ease-out-smooth);
}
.hero-prev:hover,
.hero-next:hover {
  width: 120px;
  padding: 0 12px 0 10px;
  border-radius: 50px;
  background: var(--nict-accent);
  border-color: var(--nict-accent);
  box-shadow: var(--shadow-md);
}
.hero-next {
  flex-direction: row-reverse;
}
.hero-next:hover {
  padding: 0 10px 0 12px;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 10px solid currentColor;
}
.hero-next::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}
.hero-btn-text {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  width: 0;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s var(--ease-out-smooth) 0.28s;
}
.hero-prev:hover .hero-btn-text,
.hero-next:hover .hero-btn-text {
  width: auto;
  max-width: 76px;
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth), border-color var(--motion-duration) var(--ease-out-smooth);
}
.hero-dot:hover {
  background: rgba(255,255,255,0.35);
}
.hero-dot.active {
  background: var(--nict-accent);
  border-color: var(--nict-accent);
  transform: scale(1.15);
}

/* Fluent button arrangement: primary + secondary, 8px corners */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-height: 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--motion-duration) var(--ease-out-smooth), color var(--motion-duration) var(--ease-out-smooth), border-color var(--motion-duration) var(--ease-out-smooth), box-shadow var(--motion-duration) var(--ease-out-smooth);
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--nict-accent);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--nict-accent-hover);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.7);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.9);
}
.btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.85);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.btn--light {
  background: white;
  color: var(--nict-navy);
}
.btn--light:hover {
  background: var(--nict-bg-subtle);
}

/* Section background icons – large decorative SVG behind content */
.section-bg-icon-svg {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
}
.stats-bar-bg-icon,
.trust-strip-bg-icon,
.services-bg-icon,
.about-bg-icon,
.cta-strip-bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  max-width: 90vw;
  max-height: 90vw;
  pointer-events: none;
  z-index: 0;
}
.stats-bar-bg-icon .section-bg-icon-svg,
.cta-strip-bg-icon .section-bg-icon-svg { color: rgba(255, 255, 255, 0.06); }
.trust-strip-bg-icon .section-bg-icon-svg,
.services-bg-icon .section-bg-icon-svg,
.about-bg-icon .section-bg-icon-svg { color: rgba(11, 42, 74, 0.06); }

/* TRUST STRIP – Fluent subtle gradient */

.trust-strip {
  padding: 28px 0;
  background: linear-gradient(180deg, var(--nict-bg-subtle) 0%, var(--nict-bg-card) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 2px solid var(--nict-accent);
  position: relative;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.trust-strip-label {
  font-size: 0.9rem;
  color: var(--nict-navy);
  margin: 0;
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
  position: relative;
  padding-left: 14px;
}
.trust-strip-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background: var(--nict-accent);
  border-radius: 2px;
}
.trust-strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.trust-logo {
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s var(--ease-out-smooth), transform 0.25s var(--ease-out-smooth);
}
.trust-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* HOW IT WORKS – process steps */
.how-it-works {
  padding: 56px 0 64px;
  background: var(--nict-bg-card);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.how-it-works h2 {
  text-align: center;
  font-size: 1.75rem;
  color: var(--nict-navy);
  margin-bottom: 8px;
}
.how-it-works .section-intro {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: process;
}
.process-step {
  position: relative;
  padding: 24px 20px;
  background: var(--nict-bg-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth), border-color var(--motion-duration) var(--ease-out-smooth);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--nict-accent-border);
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--nict-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 1.05rem;
  color: var(--nict-navy);
  margin-bottom: 8px;
  font-weight: 700;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--nict-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.process-cta {
  text-align: center;
  margin: 0;
}
.process-cta .btn {
  min-height: 44px;
}

/* STATS BAR – Fluent gradient bar */

.stats-bar {
  padding: 44px 0;
  background: linear-gradient(135deg, var(--nict-navy) 0%, var(--nict-navy-light) 50%, #0f3460 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nict-accent) 0%, rgba(237, 28, 36, 0.85) 50%, var(--nict-accent) 100%);
  opacity: 0.95;
}
.stats-bar-intro {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: rgba(255,255,255,0.7);
  margin: 0 0 20px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stats-grid--five {
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  padding: 0 20px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--nict-accent-border);
  border-radius: 1px;
}
.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--nict-accent);
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(237, 28, 36, 0.3);
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.92;
}

/* SERVICES – Fluent gradient section */

.services {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--nict-bg-alt) 0%, var(--nict-bg-subtle) 50%, var(--nict-bg-alt) 100%);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--nict-accent) 25%, var(--nict-accent) 75%, transparent 100%);
  opacity: 0.5;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--nict-navy);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.services h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--nict-accent);
  border-radius: 2px;
}
.services .container > h2 {
  margin-bottom: 8px;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--nict-text-muted);
  max-width: 560px;
  margin: 0 auto 48px auto;
  line-height: var(--line-height-relaxed);
}
.services .container .section-intro {
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: var(--nict-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-duration) var(--ease-out-smooth), box-shadow var(--motion-duration) var(--ease-out-smooth);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.card-bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  color: rgba(11, 42, 74, 0.06);
  pointer-events: none;
  z-index: 0;
  transition: color 0.35s var(--ease-out-smooth), transform 0.35s var(--ease-out-smooth);
}
.card-bg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.card:hover .card-bg-icon {
  color: rgba(237, 28, 36, 0.08);
  transform: scale(1.05);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--nict-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-duration) var(--ease-out-smooth);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 2;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card:hover::before {
  transform: scaleX(1);
}

.card-image {
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: var(--nict-navy);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  z-index: 1;
}

.card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  position: relative;
  z-index: 1;
}

.card-icon {
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  background: var(--nict-accent-light);
  border-radius: var(--radius-md);
  color: var(--nict-accent);
}
.card-icon .icon {
  color: var(--nict-accent);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--nict-navy);
  font-size: 1.15rem;
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
  color: var(--nict-text-muted);
  margin-bottom: 18px;
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nict-accent);
  text-decoration: none;
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease-out-smooth), color 0.25s var(--ease-out-smooth);
}
.card-link::after {
  content: '→';
  font-weight: 700;
}
.card-link:hover {
  color: var(--nict-accent-hover);
  gap: 10px;
}

/* ABOUT (home two-column) – Fluent gradient */

.about--home {
  padding: 80px 0;
  text-align: left;
  background: linear-gradient(180deg, var(--nict-bg-card) 0%, var(--nict-bg-subtle) 50%, var(--nict-bg-card) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.about--home .container.about-inner {
  position: relative;
  z-index: 1;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
}
.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--nict-navy);
  position: relative;
  padding-bottom: 14px;
  display: inline-block;
}
.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--nict-accent);
  border-radius: 2px;
}
.about-lead {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--nict-navy);
  margin: 0 0 16px 0;
  line-height: var(--line-height-body);
}
.about-content p {
  margin: 0 0 24px 0;
  max-width: none;
  font-size: 1rem;
  color: var(--nict-text-muted);
  line-height: var(--line-height-relaxed);
}
.about-content p:last-of-type {
  margin-bottom: 28px;
}
.about-visual {
  position: relative;
}
.about-visual-img {
  height: 280px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}
.about-visual-img:hover {
  box-shadow: var(--shadow-hover);
}
.about-visual::before {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24%;
  height: 24%;
  border-top: 3px solid var(--nict-accent);
  border-right: 3px solid var(--nict-accent);
  border-radius: 0 var(--radius-md) 0 0;
}
.about--home .btn--primary {
  box-shadow: var(--shadow-sm);
}
.about--home .btn--primary:hover {
  box-shadow: var(--shadow-hover);
}

/* CTA STRIP – Fluent gradient + button group */

/* Full-width image band with parallax (decorative) */
.image-band {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.image-band-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.image-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 42, 74, 0.4) 0%, rgba(11, 42, 74, 0.6) 100%);
  pointer-events: none;
}

.cta-strip {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--nict-navy) 0%, var(--nict-navy-light) 60%, #0d3a5c 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip .container {
  position: relative;
  z-index: 1;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nict-accent) 0%, rgba(237, 28, 36, 0.9) 100%);
}
.cta-strip-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: white;
  font-weight: 700;
}
.cta-strip-text {
  font-size: 1rem;
  opacity: 0.92;
  margin-bottom: 28px;
}
.cta-strip-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.cta-strip .btn--primary.btn--light {
  box-shadow: var(--shadow-md);
}
.cta-strip .btn--primary.btn--light:hover {
  box-shadow: var(--shadow-hover);
  background: #fff;
}
.cta-strip .btn--secondary.btn--outline:hover {
  border-color: var(--nict-accent);
  color: var(--nict-accent);
  background: rgba(237, 28, 36, 0.08);
}
.cta-strip-note {
  margin: 20px 0 0;
  font-size: 0.875rem;
  opacity: 0.88;
}
.cta-strip-note a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-strip-note a:hover {
  color: #fff;
}

/* PARTNERS / WHO WE WORK WITH */
.partners-strip {
  padding: 48px 0 56px;
  background: var(--nict-bg-subtle);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.partners-strip-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.partners-strip-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: var(--nict-navy);
  margin: 0 0 12px 0;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.partners-strip-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--nict-accent);
  border-radius: 2px;
}
.partners-strip-text {
  font-size: 1.05rem;
  color: var(--nict-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== INNER PAGE STRUCTURE (look and feel of homepage) ========== */

/* Page hero – compact banner for inner pages (same gradient/accent as home) */
.page-hero {
  background: linear-gradient(135deg, var(--nict-navy) 0%, var(--nict-navy-light) 60%, #0d3a5c 100%);
  color: white;
  text-align: center;
  padding: 48px 24px 56px;
  position: relative;
  overflow: hidden;
}
/* Parallax background layer (image set via inline style or JS) */
.page-hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  bottom: -10%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-bg,
  .image-band-bg {
    will-change: auto;
  }
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nict-accent) 0%, rgba(237, 28, 36, 0.9) 100%);
  z-index: 2;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: var(--line-height-tight);
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}

/* Page content wrapper – no background; full-width sections provide shades and padding */
.page-content {
  padding: 0;
}

/* Page section – full width, alternating shades, ample top and bottom padding */
.page-section {
  width: 100%;
  padding: var(--section-padding-y) 0;
  position: relative;
}
.page-section--shade-1 {
  background: var(--nict-bg-card);
}
.page-section--shade-2 {
  background: var(--nict-bg-subtle);
}
.page-section--shade-1 + .page-section--shade-2,
.page-section--shade-2 + .page-section--shade-1 {
  /* Visual separation between sections */
}
.page-section .container {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.page-section .section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.page-section .section-head h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--nict-navy);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.page-section .section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--nict-accent) 0%, rgba(237, 28, 36, 0.85) 100%);
  border-radius: 2px;
  transition: width var(--motion-duration) var(--ease-out-smooth);
}
.page-section .section-head h2:hover::after {
  width: 64px;
}
.page-section .section-head .section-intro {
  font-size: 1rem;
  color: var(--nict-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

/* Section heading – left-aligned title with accent line (for content sections) */
.section-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--nict-navy);
  margin: 2rem 0 0.75rem 0;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
}
.section-heading:first-child {
  margin-top: 0;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--nict-accent) 0%, rgba(237, 28, 36, 0.8) 100%);
  border-radius: 2px;
}
.page-section .section-heading + ul,
.page-section .section-heading + p {
  margin-top: 0.5rem;
}

/* Services page – card grid without images */
.service-grid--page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-grid--page .card {
  border-radius: var(--radius-lg);
  overflow: visible;
}
.service-grid--page .card .card-body {
  min-height: 0;
}

/* Contact page – info grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}
.contact-form-section .contact-form {
  margin-top: 1rem;
}
.location-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--nict-navy);
  margin: 1.5rem 0 0.5rem 0;
}

/* INNER PAGES – shared heading and intro (same styling/density as home sections) */

.about,
.nomination,
.contact {
  padding: 64px 0 72px;
  text-align: center;
}
.about h2,
.nomination h2,
.contact h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--nict-navy);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.about h2::after,
.nomination h2::after,
.contact h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--nict-accent);
  border-radius: 2px;
}
.about .section-intro,
.nomination .section-intro,
.contact .section-intro {
  font-size: 1.05rem;
  color: var(--nict-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem auto;
  line-height: var(--line-height-relaxed);
}

/* ABOUT (company) page – Fluent */

.about {
  background: linear-gradient(180deg, var(--nict-bg-card) 0%, var(--nict-bg-subtle) 100%);
}

.about > .container > p {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
  color: var(--nict-text-muted);
  line-height: var(--line-height-relaxed);
}

/* COMPANY PAGE – Fluent cards and list */

.company-info {
  text-align: left;
}

.company-info h3 {
  color: var(--nict-navy);
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem 0;
  font-weight: 600;
}
.company-info h3:first-of-type {
  margin-top: 1.5rem;
}

.company-info p {
  font-size: 1rem;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
  color: var(--nict-text-muted);
}

.company-info ul {
  list-style: none;
  padding: 0;
}

.company-info li {
  background: var(--nict-bg-alt);
  margin: 10px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--nict-accent);
  border-radius: var(--radius-md);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}

.company-info li:hover {
  box-shadow: var(--shadow-sm);
}

/* Statement cards – vision & mission side by side */
.statement-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}
.statement-card {
  background: linear-gradient(135deg, var(--nict-bg-card) 0%, var(--nict-bg-subtle) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth);
}
.statement-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.statement-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  background: var(--nict-accent-light);
  color: var(--nict-accent);
  border-radius: var(--radius-md);
}
.statement-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--nict-navy);
  margin: 0 0 12px 0;
}
.statement-card p {
  font-size: 0.95rem;
  color: var(--nict-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Advantage card – single highlight block */
.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, var(--nict-bg-alt) 0%, var(--nict-bg-card) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}
.advantage-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--nict-accent-light);
  color: var(--nict-accent);
  border-radius: var(--radius-md);
}
.advantage-card-content .section-heading { margin-top: 0; }
.advantage-card-content p {
  font-size: 1rem;
  color: var(--nict-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0.5rem 0 0 0;
}

/* ========== CREATIVE IMAGE PLACEMENTS ========== */

/* Split block – content + image side by side */
.split-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.split-block--image-right {
  grid-template-columns: 1fr 1fr;
}
.split-block--image-left {
  grid-template-columns: 1fr 1fr;
}
.split-block--image-right .split-block__image { order: 2; }
.split-block--image-left .split-block__image { order: 1; }
.split-block--image-left .split-block__content { order: 2; }
.split-block__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth);
}
.split-block__image:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.split-block__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--nict-accent);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.12;
}
.split-block__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  vertical-align: middle;
  transition: transform var(--motion-duration) var(--ease-out-smooth);
}
.split-block__image:hover .split-block__img {
  transform: scale(1.02);
}
.split-block__content { min-width: 0; }
.split-block__content .statement-cards {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

/* Featured image – single prominent image with optional caption */
.featured-image {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}
.featured-image:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
}
.featured-image__img-wrap {
  position: relative;
  aspect-ratio: 3 / 1;
  max-height: 400px;
  background: var(--nict-bg-alt);
  overflow: hidden;
}
.featured-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--motion-duration) var(--ease-out-smooth);
}
.featured-image:hover .featured-image__img {
  transform: scale(1.03);
}
.featured-image__caption {
  padding: 1rem 1.25rem;
  background: var(--nict-bg-card);
  font-size: 0.9rem;
  color: var(--nict-text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.featured-image--compact .featured-image__img-wrap {
  aspect-ratio: 15 / 4;
  max-height: 320px;
}

/* Inline image card – smaller image with caption inside a card */
.inline-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--nict-bg-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.inline-image-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.inline-image-card__caption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--nict-text-muted);
}

/* Values cards – 4 columns, icon + title + description */
.values-cards {
  display: grid;
  gap: 20px;
  margin-top: 1rem;
}
.values-cards--four {
  grid-template-columns: repeat(4, 1fr);
}
.value-card {
  background: var(--nict-bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  background: var(--nict-accent-light);
  color: var(--nict-accent);
  border-radius: var(--radius-md);
}
.value-card-icon .icon {
  color: var(--nict-accent);
}
.value-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nict-navy);
  margin: 0 0 8px 0;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--nict-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Profile cards – 4 columns, icon + label + value */
.profile-cards {
  display: grid;
  gap: 20px;
  margin-top: 1rem;
}
.profile-cards--four {
  grid-template-columns: repeat(4, 1fr);
}
.profile-card {
  background: var(--nict-bg-alt);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border-left: 3px solid var(--nict-accent);
  text-align: center;
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}
.profile-card:hover {
  box-shadow: var(--shadow-sm);
}
.profile-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  color: var(--nict-accent);
}
.profile-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--nict-navy);
  margin: 0 0 6px 0;
}
.profile-card p {
  font-size: 0.95rem;
  color: var(--nict-text-muted);
  margin: 0;
  line-height: 1.4;
}
.company-established {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--nict-text-muted);
}

/* SERVICES PAGE (standalone) – same section padding and intro as other pages */

.page-content.services .section-intro {
  font-size: 1.05rem;
  color: var(--nict-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem auto;
  line-height: var(--line-height-relaxed);
}
.page-content.services {
  padding: 64px 0 72px;
}

.service-details {
  margin: 2.5rem 0 0;
  text-align: left;
}

.service-details h3 {
  color: var(--nict-navy);
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem 0;
  font-weight: 600;
}
.service-details h3:first-of-type {
  margin-top: 1.5rem;
}

.service-details ul {
  list-style: none;
  padding: 0;
}

.service-details li {
  background: var(--nict-bg-alt);
  margin: 10px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--nict-accent);
  border-radius: var(--radius-md);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}

.service-details li:hover {
  box-shadow: var(--shadow-sm);
}

/* Service offer cards – icon above title */
.service-offer-card .card-body {
  text-align: center;
}
.service-offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  background: var(--nict-accent-light);
  color: var(--nict-accent);
  border-radius: var(--radius-md);
}
.service-offer-icon .icon { color: var(--nict-accent); }
.service-offer-card h3 { margin-top: 0; }

/* Feature cards – icon + title + short text grid */
.feature-cards--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1rem;
}
.feature-card {
  background: var(--nict-bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth), border-color var(--motion-duration) var(--ease-out-smooth);
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
  border-color: var(--nict-accent-border);
}
.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  background: var(--nict-accent-light);
  color: var(--nict-accent);
  border-radius: var(--radius-md);
}
.feature-card-icon .icon { color: var(--nict-accent); }
.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--nict-navy);
  margin: 0 0 8px 0;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--nict-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Why choose NICT – distinct section; cards with accent edge */
.section-head--why .section-intro {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.why-cards--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 1rem;
}
.why-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--nict-bg-card);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--nict-accent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth);
}
.why-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}
.why-card .icon {
  flex-shrink: 0;
  color: var(--nict-accent);
}
.why-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nict-navy);
}

/* NOMINATION PAGE – Fluent steps and cards */

.nomination {
  background: linear-gradient(180deg, var(--nict-bg-alt) 0%, var(--nict-bg-subtle) 50%, var(--nict-bg-alt) 100%);
}

.nomination-steps {
  margin: 0 0 2.5rem;
  text-align: left;
}

/* Numbered step cards (nomination flow) */
.nomination-steps--numbered {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.nomination-steps--numbered .step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 0;
  padding: 24px 22px;
}
.step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--nict-accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  line-height: 1;
}
.step-content h4 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--nict-text-muted);
  line-height: 1.5;
  margin: 0;
}

.step {
  background: var(--nict-bg-card);
  padding: 20px 24px;
  margin: 12px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--nict-accent);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}

.step:hover {
  box-shadow: var(--shadow-md);
}

.step h4 {
  color: var(--nict-navy);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Document chips – required docs as pills */
.doc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0 2rem;
}
.doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--nict-bg-alt);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--nict-navy);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}
.doc-chip:hover {
  box-shadow: var(--shadow-sm);
}
.doc-chip .icon {
  color: var(--nict-accent);
  flex-shrink: 0;
}

/* Agency cards – logo + title + description */
.agency-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 1rem 0 2rem;
}
.agency-card {
  background: var(--nict-bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth);
}
.agency-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.agency-card-logo,
.agency-card-icon {
  margin-bottom: 14px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agency-card-icon .icon {
  color: var(--nict-accent);
}
.agency-card-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.agency-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--nict-navy);
  margin: 0 0 6px 0;
}
.agency-card-desc {
  font-size: 0.9rem;
  color: var(--nict-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Ops contact card – single highlighted block */
.ops-contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--nict-navy) 0%, var(--nict-navy-light) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
}
.ops-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}
.ops-contact-icon .icon {
  color: white;
}
.ops-contact-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
}
.ops-contact-content p {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  opacity: 0.95;
}
.ops-contact-content a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ops-contact-content a:hover {
  opacity: 0.9;
}
.ops-contact-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px !important;
  font-size: 0.9rem;
  opacity: 0.9;
}
.ops-contact-hours .icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.nomination-info {
  text-align: left;
}

.nomination-info h3 {
  color: var(--nict-navy);
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem 0;
  font-weight: 600;
}
.nomination-info h3:first-of-type {
  margin-top: 1.5rem;
}

.nomination-info ul {
  list-style: none;
  padding: 0;
}

.nomination-info li {
  background: var(--nict-bg-alt);
  margin: 10px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--nict-accent);
  border-radius: var(--radius-md);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}

.nomination-info li:hover {
  box-shadow: var(--shadow-sm);
}

.agency-list { list-style: none; padding: 0; }

.agency-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--nict-bg-alt);
  margin: 10px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--nict-accent);
  border-radius: var(--radius-md);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}

.agency-item:hover {
  box-shadow: var(--shadow-sm);
}

.agency-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--nict-bg-card);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* CONTACT PAGE – Fluent cards and form */

.contact {
  background: linear-gradient(180deg, var(--nict-bg-card) 0%, var(--nict-bg-subtle) 50%, var(--nict-bg-card) 100%);
}

.contact-info {
  margin: 0 0 2.5rem;
  text-align: left;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.contact-details {
  background: var(--nict-bg-card);
  padding: 20px 24px;
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--nict-accent);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}

.contact-details:hover {
  box-shadow: var(--shadow-md);
}

.contact-details--with-icon {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
}
.contact-details-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--nict-accent-light);
  color: var(--nict-accent);
  border-radius: var(--radius-md);
}
.contact-details-icon .icon { color: var(--nict-accent); }
.contact-details--with-icon h4 { margin-top: 0; }
.contact-details--with-icon p { margin-bottom: 0.5rem; }
.contact-details--with-icon p:last-child { margin-bottom: 0; }

/* Location advantages – icon + label row */
.location-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}
.location-advantage {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--nict-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}
.location-advantage:hover {
  box-shadow: var(--shadow-sm);
}
.location-advantage .icon {
  flex-shrink: 0;
  color: var(--nict-accent);
}
.location-advantage span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--nict-navy);
}

.contact-info h3,
.contact-form h3 {
  color: var(--nict-navy);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem 0;
  font-weight: 600;
}
.contact-info h3:first-of-type,
.contact-form h3:first-of-type {
  margin-top: 0;
}
.contact-details h4 {
  color: var(--nict-navy);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: left;
  background: var(--nict-bg-card);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--nict-accent);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--nict-navy);
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: border-color var(--motion-duration) var(--ease-out-smooth), box-shadow var(--motion-duration) var(--ease-out-smooth);
}
.form-group input {
  border-radius: 50px;
}
.form-group textarea {
  border-radius: var(--radius-md);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--nict-accent);
  box-shadow: 0 0 0 1px var(--nict-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.location-info {
  text-align: left;
}

.location-info h3 {
  color: var(--nict-navy);
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem 0;
  font-weight: 600;
}
.location-info h3:first-of-type {
  margin-top: 1.5rem;
}

.location-info ul {
  list-style: none;
  padding: 0;
}

.location-info li {
  background: var(--nict-bg-alt);
  margin: 10px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--nict-accent);
  border-radius: var(--radius-md);
  transition: box-shadow var(--motion-duration) var(--ease-out-smooth);
}

.location-info li:hover {
  box-shadow: var(--shadow-sm);
}

/* FOOTER */

.site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, var(--nict-navy-light) 0%, var(--nict-navy) 100%);
  color: rgba(255,255,255,0.9);
}

.footer-main {
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 32px 40px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-about .footer-logo-link {
  display: inline-block;
  margin-bottom: 10px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  vertical-align: middle;
}
.footer-about .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: 10px;
  color: #fff;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: var(--line-height-relaxed);
  opacity: 0.9;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s var(--ease-out-smooth);
}

.footer-links a:hover {
  color: var(--nict-accent);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: var(--line-height-relaxed);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact .icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}

.footer-contact a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--nict-accent);
  text-decoration: underline;
}

.footer-newsletter-text {
  font-size: 0.9rem;
  margin-bottom: 14px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 160px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: border-color var(--motion-duration) var(--ease-out-smooth), background var(--motion-duration) var(--ease-out-smooth);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--nict-accent);
  background: rgba(255,255,255,0.12);
}

.newsletter-btn {
  padding: 10px 18px;
  background: var(--nict-accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--motion-duration) var(--ease-out-smooth), transform var(--motion-duration) var(--ease-out-smooth);
}

.newsletter-btn:hover {
  background: var(--nict-accent-hover);
}

.newsletter-btn:active {
  transform: scale(0.98);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  color: rgba(255,255,255,0.8);
  transition: color 0.25s var(--ease-out-smooth);
}

.footer-social-link:hover {
  color: var(--nict-accent);
}

.footer-copyright p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Tablet and below */
@media (max-width: 992px) {
  .container {
    width: 92%;
    max-width: none;
  }
  .hero {
    min-height: 380px;
  }
  .overlay-inner {
    max-width: 100%;
  }
  .services h2,
  .about-content h2 {
    font-size: 1.75rem;
  }
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .about-inner {
    gap: 40px;
  }
  .about-visual-img {
    height: 260px;
  }
  .stats-bar,
  .why-nict,
  .values-strip {
    padding: 40px 0;
  }
  .stats-grid--five {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .how-it-works {
    padding: 44px 0 52px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .about,
  .nomination,
  .contact,
  .page-content.services {
    padding: 48px 0 56px;
  }
  .page-hero {
    padding: 36px 16px 44px;
  }
  .page-hero h1 {
    font-size: 1.5rem;
  }
  .page-hero p {
    font-size: 0.9375rem;
  }
  .page-content {
    padding: 40px 0 56px;
  }
  .page-section {
    padding: var(--section-padding-y-sm) 0;
  }
  .page-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-heading {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.5rem 0;
  }
  .service-grid--page {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .values-cards--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .profile-cards--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .value-card {
    padding: 20px 16px;
  }
  .value-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
  .value-card-title {
    font-size: 1rem;
  }
  .value-card p {
    font-size: 0.875rem;
  }
  .statement-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 2.5rem;
  }
  .advantage-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
  .feature-cards--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .why-cards--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .nomination-steps--numbered {
    grid-template-columns: 1fr;
  }
  .agency-cards {
    grid-template-columns: 1fr;
  }
  .ops-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .location-advantages {
    grid-template-columns: 1fr;
  }
  .image-band {
    height: 220px;
  }
  .split-block--image-right,
  .split-block--image-left {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .split-block--image-right .split-block__image,
  .split-block--image-left .split-block__image {
    order: 1;
  }
  .split-block--image-left .split-block__content {
    order: 2;
  }
  .split-block__img { min-height: 220px; }
  .featured-image__img-wrap {
    max-height: 240px;
    aspect-ratio: 16 / 9;
  }

  /* Top bar */
  .top-bar {
    padding: 12px 0;
  }
  .top-bar .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .top-bar-left span {
    display: block;
    margin: 6px 0;
  }
  .top-bar-left span:empty {
    display: none;
  }

  /* Header & nav – hamburger + side drawer */
  .nav {
    padding: 14px 0;
  }
  .nav-main {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    pointer-events: none;
    visibility: hidden;
    transition: visibility var(--motion-duration) var(--ease-out-smooth);
  }
  .site-header.nav-open .nav-drawer {
    pointer-events: auto;
    visibility: visible;
  }
  .nav-drawer-backdrop {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity var(--motion-duration) var(--ease-out-smooth);
  }
  .site-header.nav-open .nav-drawer-backdrop {
    opacity: 1;
  }
  .nav-drawer-panel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    max-width: 100%;
    background: linear-gradient(180deg, var(--nict-navy) 0%, var(--nict-navy-light) 100%);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
    padding: 24px 0 32px;
    transform: translateX(100%);
    transition: transform var(--motion-duration) var(--ease-out-smooth);
    overflow-y: auto;
  }
  .site-header.nav-open .nav-drawer-panel {
    transform: translateX(0);
  }
  .nav-drawer-close {
    align-self: flex-end;
    margin: 0 20px 16px 0;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--motion-duration) var(--ease-out-smooth);
  }
  .nav-drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .nav-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
  .nav-drawer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: var(--radius-md);
    transition: background var(--motion-duration) var(--ease-out-smooth), color var(--motion-duration) var(--ease-out-smooth);
  }
  .nav-drawer-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--nict-accent);
  }
  .nav-drawer-nav a.current-page {
    background: rgba(237, 28, 36, 0.2);
    color: var(--nict-accent);
  }
  .nav-drawer-contact {
    margin-top: auto;
    padding: 24px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .nav-drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 0;
    transition: color var(--motion-duration) var(--ease-out-smooth);
  }
  .nav-drawer-contact-item .icon {
    flex-shrink: 0;
    opacity: 0.9;
  }
  a.nav-drawer-contact-item:hover {
    color: var(--nict-accent);
  }
  .nav-drawer-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .nav-drawer-social {
    color: white;
    opacity: 0.9;
    transition: opacity var(--motion-duration) var(--ease-out-smooth), color var(--motion-duration) var(--ease-out-smooth);
  }
  .nav-drawer-social:hover {
    opacity: 1;
    color: var(--nict-accent);
  }
  .top-bar {
    display: none;
  }

  /* Hero – CTAs at bottom of slide, just above dots */
  .hero {
    height: 75vh;
    min-height: 360px;
  }
  .overlay {
    padding: 20px 16px 72px;
    justify-content: flex-start;
  }
  .overlay-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .overlay h1 {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 12px;
    padding-bottom: 12px;
    margin-top: auto;
  }
  .overlay p {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .hero-ctas {
    margin-top: auto;
    padding-bottom: 12px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    min-width: 160px;
    min-height: 44px;
  }
  .hero-prev,
  .hero-next {
    display: none;
  }
  .hero-dots {
    bottom: 20px;
    gap: 8px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
  }

  /* Stats */
  .stats-bar {
    padding: 36px 0;
  }
  .stats-bar-intro {
    margin-bottom: 16px;
    font-size: 0.75rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .stat {
    padding: 12px 8px;
  }
  .stat::after {
    display: none;
  }
  .stat-number {
    font-size: 1.35rem;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .stats-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .process-step {
    padding: 20px 18px;
  }
  .how-it-works {
    padding: 40px 0 48px;
  }
  .how-it-works h2 {
    font-size: 1.5rem;
  }
  .how-it-works .section-intro {
    margin-bottom: 28px;
  }

  /* Trust strip */
  .trust-strip {
    padding: 24px 0;
  }
  .trust-strip .container {
    flex-direction: column;
    gap: 14px;
  }
  .trust-strip-label {
    text-align: center;
    padding-left: 0;
  }
  .trust-strip-label::before {
    display: none;
  }
  .trust-strip-logos {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-logo {
    height: 36px;
    max-width: 80px;
  }

  /* Why NICT (if present) */
  .why-nict {
    padding: 40px 0;
  }
  .why-nict h2 {
    font-size: 1.5rem;
  }
  .why-nict .section-intro {
    margin-bottom: 28px;
    font-size: 1rem;
  }
  .why-nict-list li {
    padding: 12px 0 12px 20px;
    font-size: 0.9375rem;
  }
  .why-nict-cta .btn {
    min-height: 44px;
  }

  /* Services */
  .services {
    padding: 48px 0 56px;
  }
  .services h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  .section-intro {
    font-size: 1rem;
    margin-bottom: 32px;
    padding: 0 8px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-body {
    min-height: 180px;
    padding: 20px 22px 24px;
  }
  .card-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Values strip (if present) */
  .values-strip {
    padding: 36px 0;
  }
  .values-strip-title {
    font-size: 1.35rem;
  }
  .values-strip-intro {
    margin-bottom: 20px;
    font-size: 0.95rem;
  }
  .values-grid {
    gap: 8px 12px;
    margin-bottom: 20px;
  }
  .value-pill {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .values-strip-tagline {
    font-size: 0.875rem;
    padding: 0 12px;
  }

  /* About */
  .about--home {
    padding: 48px 0 56px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .about-content {
    text-align: center;
  }
  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  .about-lead {
    font-size: 1rem;
  }
  .about-content p {
    font-size: 0.9375rem;
  }
  .about-quote {
    padding: 16px 18px;
    margin: 20px 0 24px 0;
  }
  .about-quote p {
    font-size: 0.9375rem;
  }
  .about-visual-img {
    height: 220px;
    max-height: 50vh;
  }
  .about-visual::before {
    top: -4px;
    right: -4px;
  }
  .about--home .btn--primary {
    min-height: 44px;
  }

  /* CTA strip */
  .cta-strip {
    padding: 40px 0 48px;
  }
  .cta-strip-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }
  .cta-strip-text {
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }
  .cta-strip-contact {
    font-size: 0.9rem;
    margin-bottom: 20px;
    word-break: break-word;
  }
  .cta-strip-contact a {
    display: inline-block;
    margin: 0 2px;
  }
  .cta-strip-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-strip-btns .btn {
    min-width: 200px;
    min-height: 44px;
  }
  .cta-strip-note {
    margin-top: 16px;
    font-size: 0.8125rem;
  }
  .partners-strip {
    padding: 40px 0 48px;
  }
  .partners-strip-label {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  .partners-strip-label::after {
    width: 32px;
  }
  .partners-strip-text {
    font-size: 1rem;
  }

  /* Footer – minimized for mobile (all content kept) */
  .footer-main {
    padding: 24px 0 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-about {
    text-align: center;
  }
  .footer-about .footer-logo-link,
  .footer-about .footer-logo {
    margin-bottom: 6px;
  }
  .footer-logo-img {
    height: 28px;
    max-width: 100px;
  }
  .footer-about .footer-logo {
    font-size: 1.2rem;
  }
  .footer-tagline {
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
  }
  .footer-heading {
    font-size: 0.75rem;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  .footer-links li {
    margin-bottom: 4px;
  }
  .footer-links a {
    font-size: 0.85rem;
  }
  .footer-contact {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .footer-contact li {
    justify-content: center;
    margin-bottom: 6px;
  }
  .footer-contact .icon {
    margin-top: 1px;
  }
  .footer-newsletter-text {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  .newsletter-form {
    justify-content: center;
    gap: 6px;
  }
  .newsletter-form input[type="email"] {
    min-width: 0;
    width: 100%;
    max-width: 240px;
    padding: 8px 12px;
    font-size: 0.8125rem;
  }
  .newsletter-btn {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.8125rem;
    width: 100%;
    max-width: 240px;
  }
  .footer-bottom {
    padding: 12px 0;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-socials {
    gap: 12px;
  }
  .footer-social-link {
    min-width: 36px;
    min-height: 36px;
  }
  .footer-copyright p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .values-cards--four,
  .profile-cards--four {
    grid-template-columns: 1fr;
  }
  .feature-cards--grid {
    grid-template-columns: 1fr;
  }
  .why-cards--grid {
    grid-template-columns: 1fr;
  }
  .statement-card,
  .advantage-card {
    padding: 20px 18px;
  }
  .doc-chip {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
  .page-section {
    padding: var(--section-padding-y-xs) 0;
  }
  .page-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .image-band {
    height: 180px;
  }
  .featured-image__img-wrap {
    max-height: 180px;
  }
  .featured-image--compact .featured-image__img-wrap {
    max-height: 160px;
  }
  .split-block__img {
    min-height: 200px;
  }
  .hero {
    min-height: 320px;
    height: 70vh;
  }
  .overlay h1 {
    font-size: 22px;
  }
  .overlay p {
    font-size: 14px;
  }
  .stats-grid {
    gap: 16px 12px;
  }
  .stat-number {
    font-size: 1.2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  .services h2,
  .about-content h2,
  .about h2,
  .nomination h2,
  .contact h2,
  .cta-strip-title {
    font-size: 1.35rem;
  }
  .section-intro {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }
  .about,
  .nomination,
  .contact,
  .page-content.services {
    padding: 40px 0 48px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .how-it-works {
    padding: 32px 0 40px;
  }
  .how-it-works h2 {
    font-size: 1.35rem;
  }
  .process-step {
    padding: 16px 14px;
  }
  .process-step-num {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .process-step h3 {
    font-size: 1rem;
  }
  .process-step p {
    font-size: 0.85rem;
  }
  .card-body {
    padding: 18px 20px 22px;
    min-height: 160px;
  }
  .about-visual-img {
    height: 200px;
  }
  .cta-strip-btns .btn {
    min-width: 100%;
  }
  .cta-strip-note {
    margin-top: 14px;
    font-size: 0.8rem;
  }
  .partners-strip {
    padding: 32px 0 40px;
  }
  .partners-strip-label {
    font-size: 0.75rem;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  .partners-strip-label::after {
    width: 28px;
  }
  .partners-strip-text {
    font-size: 0.9rem;
  }
  .hero-ctas .btn {
    min-width: 100%;
  }

  /* Footer – extra compact on small phones */
  .footer-main {
    padding: 18px 0 12px;
  }
  .footer-grid {
    gap: 16px;
  }
  .footer-logo-img {
    height: 24px;
  }
  .footer-about .footer-logo {
    font-size: 1.1rem;
  }
  .footer-tagline {
    font-size: 0.75rem;
  }
  .footer-heading {
    font-size: 0.7rem;
    margin-bottom: 6px;
    padding-bottom: 4px;
  }
  .footer-links li {
    margin-bottom: 2px;
  }
  .footer-links a {
    font-size: 0.8rem;
  }
  .footer-contact {
    font-size: 0.75rem;
  }
  .footer-contact li {
    margin-bottom: 4px;
  }
  .footer-newsletter-text {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }
  .newsletter-form input[type="email"] {
    padding: 6px 10px;
    font-size: 16px;
    max-width: 100%;
  }
  .newsletter-btn {
    min-height: 44px;
    padding: 6px 12px;
    font-size: 0.8rem;
    max-width: 100%;
  }
  .footer-bottom {
    padding: 10px 0;
  }
  .footer-copyright p {
    font-size: 0.7rem;
  }
}
