/* =============================================
   NUFARUL PIN RECRUITMENT - Global Styles
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --color-bg: #0a0e17;
  --color-bg-alt: #111827;
  --color-bg-card: #1a2233;
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-primary: #2574ac;
  --color-primary-dark: #1d5f8e;
  --color-primary-light: #3a8ec4;
  --color-accent: #0ea5e9;
  --color-border: rgba(255,255,255,0.08);
  --color-white: #ffffff;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--color-bg-alt); }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.section-subtitle.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 116, 172, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
}

.nav-logo .logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 16px rgba(37, 116, 172, 0.35);
}

/* ---------- Dropdown Nav ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

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

.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown.open > .nav-dropdown-toggle {
  color: var(--color-white);
}

.nav-dropdown:hover > .nav-dropdown-toggle::after,
.nav-dropdown.open > .nav-dropdown-toggle::after {
  width: 100%;
}

.nav-dropdown-toggle .chevron {
  transition: transform var(--transition);
  width: 14px;
  height: 14px;
}

.nav-dropdown:hover .chevron,
.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all var(--transition);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover {
  background: rgba(37, 116, 172, 0.1);
  color: var(--color-primary);
}

.nav-dropdown-menu a svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

@media (max-width: 992px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 20px;
    transition: right var(--transition);
    border-left: 1px solid var(--color-border);
    overflow-y: auto;
    z-index: 1001;
  }
  .nav-links.open { right: 0; }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: 4px 0;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    transform: none;
  }
  .nav-dropdown-menu a { padding: 8px 16px; }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
  }
  .mobile-overlay.show { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,23,0.5) 0%, var(--color-bg) 100%);
}

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

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-white);
}

.hero-content h1 span { color: var(--color-primary); }

.hero-content p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 116, 172, 0.12);
  border: 1px solid rgba(37, 116, 172, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .hero-content p { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Stats ---------- */
.stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item {
  background: var(--color-bg-card);
  padding: 36px 28px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Mini Chart */
.stat-mini-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 32px;
  margin-top: 12px;
}

.stat-mini-chart .chart-bar {
  width: 6px;
  border-radius: 3px 3px 0 0;
  background: var(--color-primary);
  opacity: 0.5;
  transform-origin: bottom;
  animation: growBar 1.5s ease-out forwards;
}

.stat-mini-chart .chart-bar:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.stat-mini-chart .chart-bar:nth-child(2) { height: 45%; animation-delay: 0.2s; }
.stat-mini-chart .chart-bar:nth-child(3) { height: 35%; animation-delay: 0.3s; }
.stat-mini-chart .chart-bar:nth-child(4) { height: 55%; animation-delay: 0.4s; }
.stat-mini-chart .chart-bar:nth-child(5) { height: 50%; animation-delay: 0.5s; }
.stat-mini-chart .chart-bar:nth-child(6) { height: 70%; animation-delay: 0.6s; }
.stat-mini-chart .chart-bar:nth-child(7) { height: 65%; animation-delay: 0.7s; opacity: 0.7; }
.stat-mini-chart .chart-bar:nth-child(8) { height: 85%; animation-delay: 0.8s; opacity: 0.85; }
.stat-mini-chart .chart-bar:nth-child(9) { height: 100%; animation-delay: 0.9s; opacity: 1; }

@keyframes growBar {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---------- About Snapshot ---------- */
.about-snapshot { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-snapshot .about-image { border-radius: 12px; overflow: hidden; position: relative; }
.about-snapshot .about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-snapshot .about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(37, 116, 172, 0.2);
  pointer-events: none;
}

.about-text .highlight-list { margin-top: 24px; }
.about-text .highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.about-text .highlight-list li .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(37, 116, 172, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.7rem;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .about-snapshot { grid-template-columns: 1fr; gap: 32px; }
  .about-snapshot .about-image img { height: 280px; }
}

/* ---------- Global Reach Map ---------- */
.map-section { position: relative; overflow: hidden; }

.map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.map-point {
  cursor: pointer;
  transition: transform var(--transition);
}

.map-point:hover { transform: scale(1.3); }

.map-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.map-legend-item .dot-source {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.map-legend-item .dot-dest {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card.no-img {
  padding: 32px 24px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 2;
}

.service-card:hover {
  border-color: rgba(37, 116, 172, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.service-card-body {
  padding: 24px;
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(37, 116, 172, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Blog Grid ---------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.blog-featured-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-featured:hover .blog-featured-image img { transform: scale(1.05); }

.blog-featured-content .blog-tag {
  display: inline-block;
  background: rgba(37, 116, 172, 0.12);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.blog-featured-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-featured-content p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 116, 172, 0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.blog-card-content { padding: 24px; }
.blog-card-content .blog-tag { margin-bottom: 12px; }
.blog-card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 116, 172, 0.15);
}

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

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px;
}

.info-block h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-block p,
.info-block a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.info-block a:hover { color: var(--color-primary); }

.info-icon {
  width: 36px; height: 36px;
  background: rgba(37, 116, 172, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-alt);
  padding: 60px 0 24px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-col ul li a:hover { color: var(--color-primary); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 116, 172, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-header .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.page-header .breadcrumb a:hover { color: var(--color-primary); }
.page-header .breadcrumb .separator { color: var(--color-border); }

@media (max-width: 600px) {
  .page-header { padding: 120px 0 48px; }
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible { opacity: 1; }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---------- Process Steps ---------- */
.process-timeline {
  position: relative;
  padding-left: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.process-step {
  position: relative;
  padding: 0 0 48px 32px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 3px rgba(37, 116, 172, 0.25);
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- Partner Grid ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  transition: all var(--transition);
}

.partner-card:hover {
  border-color: rgba(37, 116, 172, 0.35);
  transform: translateY(-4px);
}

.partner-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.partner-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .partner-grid { grid-template-columns: 1fr; }
}

/* ---------- Media Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 23, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .overlay { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-bg-card); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }

/* ---------- Language Switcher ---------- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 116, 172, 0.1);
  border: 1px solid rgba(37, 116, 172, 0.25);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--color-white);
  transition: all var(--transition);
  outline: none;
  flex-shrink: 0;
}

.lang-switcher svg {
  color: var(--color-primary-light);
  transition: color var(--transition);
}

.lang-switcher:hover {
  background: rgba(37, 116, 172, 0.2);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 116, 172, 0.2);
}

.lang-switcher:hover svg {
  color: var(--color-white);
}

.lang-switcher .lang-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 992px) {
  .lang-switcher {
    width: 100%;
    justify-content: center;
    padding: 12px;
    margin-top: 10px;
  }
}

@media (max-width: 992px) {
  .lang-switcher {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
  }
  .lang-switcher .lang-label {
    font-size: 0.9rem;
  }
}

/* ---------- Partner Logo Box ---------- */
.partner-logo-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.partner-logo-box:hover {
  border-color: rgba(37,116,172,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.partner-logo-initials {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  flex-shrink: 0;
}

.partner-logo-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.3;
}

.partner-logo-box .partner-country {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partner-logo-box .partner-sector {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------- Emergency Page ---------- */
.emergency-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, #0a0e17 0%, #0f1929 60%, #1a0a0a 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}

.emergency-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(220,38,38,0.12) 0%, transparent 65%);
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fca5a5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.emergency-badge .dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.5s infinite;
}

.emergency-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px;
  transition: all var(--transition);
}

.emergency-card.urgent {
  border-color: rgba(220,38,38,0.4);
  background: rgba(220,38,38,0.04);
}

.emergency-card.urgent:hover {
  border-color: rgba(220,38,38,0.7);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(220,38,38,0.15);
}

.emergency-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.emergency-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.emergency-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emergency-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  text-decoration: none;
  transition: all var(--transition);
  color: inherit;
}

.emergency-contact-item:hover {
  background: rgba(37,116,172,0.1);
  border-color: rgba(37,116,172,0.35);
}

.emergency-contact-item.red:hover {
  background: rgba(220,38,38,0.1);
  border-color: rgba(220,38,38,0.35);
}

.emergency-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37,116,172,0.12);
  border: 1px solid rgba(37,116,172,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-icon.red {
  background: rgba(220,38,38,0.12);
  border-color: rgba(220,38,38,0.2);
}

.emergency-contact-item .contact-detail strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
}

.emergency-contact-item .contact-detail span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.info-box {
  background: rgba(37,116,172,0.06);
  border: 1px solid rgba(37,116,172,0.15);
  border-radius: 12px;
  padding: 24px;
}

.info-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-box ul li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.info-box ul li::before {
  content: '›';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
  .emergency-card { padding: 24px 20px; }
}

/* ---------- Extra responsive helpers ---------- */
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
}
