/* =========================================
   ZHAN WORKFORCE SOLUTIONS — STYLESHEET
   ========================================= */

:root {
  --navy: #0f1f3d;
  --navy-dark: #0a1628;
  --box-shadow: 0 4px 16px rgba(15,31,61,0.1);
  --blue: #1e56a0;
  --blue-hover: #1a4a8a;
  --light-blue: #e8f0fe;
  --gray-bg: #f4f6f9;
  --text: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   CONTAINER
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(15,31,61,0.3);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 4px 16px rgba(30,86,160,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 15px 38px;
  font-size: 1rem;
}

.btn-full { width: 100%; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0a1628;
  border: 1px solid rgba(245,196,44,0.25);
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--blue);
  background: var(--light-blue);
}

.nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-cta {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  background: var(--navy);
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-sm {
  min-height: 340px;
  padding: 130px 0 70px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,86,160,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,86,160,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,86,160,0.18) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-bar {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.trust-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
  padding: 90px 0;
}

.section-gray {
  background: var(--gray-bg);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light-blue);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-tag.light {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-tag { margin-bottom: 14px; }
.about-text .section-title { margin-bottom: 20px; }

.about-text p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.75;
}

.signature {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.sig-line {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
}

.sig-role {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section {
  background: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left .section-tag { margin-bottom: 14px; }
.why-left .section-title { margin-bottom: 20px; }

.why-desc {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-size: 0.95rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.check-icon svg {
  width: 28px;
  height: 28px;
}

.why-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* =========================================
   PROCESS
   ========================================= */
.process-timeline {
  display: flex;
  gap: 0;
  position: relative;
  counter-reset: step;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: var(--border);
}

.step-content {
  text-align: center;
  padding: 20px 12px 0;
}

.step-content h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-content p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================================
   TRUST BLOCK
   ========================================= */
.trust-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.trust-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.trust-card-icon {
  width: 64px;
  height: 64px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-card-icon svg {
  width: 32px;
  height: 32px;
}

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: var(--navy);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.contact-value:hover { color: var(--blue); }

.contact-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}

.contact-countries {
  margin-top: 4px;
}

.country-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.country-flags span {
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

/* =========================================
   FORMS
   ========================================= */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.required {
  color: #e53e3e;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b8c9;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,86,160,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit-wrap {
  text-align: center;
  margin-top: 8px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 48px;
}

.logo-light .logo-text {
  color: var(--white);
}

.logo-light img {
  background: white;
  border-radius: 6px;
  padding: 4px 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* =========================================
   WHATSAPP BUTTON
   ========================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

/* =========================================
   CANDIDATES PAGE — New Photo Card Design
   ========================================= */
.candidates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ─── Card ─── */
.candidate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 220px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.candidate-card:hover {
  box-shadow: 0 16px 48px rgba(15,31,61,0.16);
  transform: translateY(-4px);
}

/* ─── Photo column (left 38%) ─── */
.candidate-photo-col {
  position: relative;
  width: 38%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--navy);
}
.candidate-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.candidate-card:hover .candidate-photo-img {
  transform: scale(1.05);
}
/* Blur divider between photo and info */
.candidate-photo-col::after {
  content: '';
  position: absolute;
  top: 0; right: -18px; bottom: 0;
  width: 36px;
  background: linear-gradient(to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 40%,
    rgba(255,255,255,1) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}
/* Initials fallback (no photo) */
.candidate-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  user-select: none;
}
.candidate-photo-fallback.avatar-blue   { background: linear-gradient(135deg,#1e56a0,#0d3a7a); }
.candidate-photo-fallback.avatar-teal   { background: linear-gradient(135deg,#0d9488,#0a6e66); }
.candidate-photo-fallback.avatar-orange { background: linear-gradient(135deg,#ea6c00,#c45600); }
.candidate-photo-fallback.avatar-purple { background: linear-gradient(135deg,#7c3aed,#5b21b6); }
.candidate-photo-fallback.avatar-green  { background: linear-gradient(135deg,#16a34a,#0f7a38); }
.candidate-photo-fallback.avatar-red    { background: linear-gradient(135deg,#dc2626,#b91c1c); }

/* ─── Info column (right) ─── */
.candidate-info-col {
  flex: 1;
  padding: 22px 22px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

/* Open icon hint on hover */
.candidate-card::before {
  content: '⤢';
  position: absolute;
  top: 12px; right: 14px;
  font-size: 0.85rem;
  color: var(--blue);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 10;
}
.candidate-card:hover::before { opacity: 1; }

.candidate-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.candidate-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.candidate-age  { font-size: 0.78rem; color: var(--text-light); }
.candidate-flag { font-size: 0.78rem; color: var(--text-light); }

.candidate-position {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--light-blue);
  padding: 3px 11px;
  border-radius: 100px;
}
.detail-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.detail-row svg { width: 13px; height: 13px; flex-shrink: 0; }

.candidate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}
.tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text);
  background: var(--gray-bg);
  border: 1px solid var(--border);
  padding: 2px 9px;
  border-radius: 100px;
}

/* ─── Actions row ─── */
.candidate-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.candidate-actions .btn {
  font-size: 0.74rem;
  padding: 7px 14px;
}

/* keep avatar classes for admin panel preview */
.avatar-blue   { background: #1e56a0; }
.avatar-teal   { background: #0d9488; }
.avatar-orange { background: #ea6c00; }
.avatar-purple { background: #7c3aed; }
.avatar-green  { background: #16a34a; }
.avatar-red    { background: #dc2626; }

/* ─── Candidate Detail Modal ─── */
.candidate-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.candidate-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.candidate-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 740px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 32px 80px rgba(10,22,40,0.3);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.candidate-modal-overlay.open .candidate-modal {
  transform: translateY(0) scale(1);
}

/* Modal photo */
.modal-photo-col {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 400px;
}
.modal-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.modal-photo-fallback {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}

/* Modal info */
.modal-info-col {
  flex: 1;
  padding: 36px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}
.modal-position {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--light-blue);
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
}
.modal-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  margin-top: 4px;
}
.modal-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-detail-item { display: flex; flex-direction: column; gap: 2px; }
.modal-detail-label { font-size: 0.72rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.modal-detail-value { font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.modal-tags .tag { font-size: 0.78rem; padding: 4px 12px; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border); }

/* Responsive candidates */
@media (max-width: 900px) {
  .candidates-grid { grid-template-columns: 1fr; }
  .candidate-card  { min-height: 180px; }
  .candidate-photo-col { width: 34%; }
}
@media (max-width: 600px) {
  .candidate-modal { flex-direction: column; }
  .modal-photo-col { width: 100%; min-height: 220px; max-height: 260px; }
  .modal-info-col  { padding: 24px 20px; }
  .modal-detail-grid { grid-template-columns: 1fr; }
  .candidate-photo-col { width: 42%; }
}

/* =========================================
   EMPLOYERS PAGE
   ========================================= */
.employer-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.employer-intro-text .section-tag { margin-bottom: 14px; }
.employer-intro-text .section-title { margin-bottom: 20px; }

.employer-intro-text p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.employer-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.highlight-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.employer-intro-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 100%;
  max-width: 340px;
}

.visual-stat { text-align: center; padding: 16px 0; }

.visual-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.visual-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.visual-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 8px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon svg {
  width: 36px;
  height: 36px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-item {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
  cursor: default;
}

.industry-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.industry-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 40px;
  height: 40px;
}

.industry-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.request-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

/* =========================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline {
    flex-direction: column;
    gap: 0;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .step-connector {
    position: absolute;
    top: 56px;
    left: 27px;
    right: auto;
    width: 2px;
    height: calc(100% - 28px);
    background: var(--border);
  }

  .step-content {
    text-align: left;
    padding: 0 0 36px 0;
    flex: 1;
  }

  .step-number {
    margin-top: 0;
  }
}

/* =========================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================= */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 0 16px;
  }

  .nav-links.open { display: flex; }

  .nav-link {
    width: 100%;
    padding: 12px 24px;
    border-radius: 0;
  }

  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 110px 0 70px; }
  .hero-sm { padding: 110px 0 50px; min-height: 260px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1; min-width: 140px; }
  .trust-bar { gap: 14px; }

  /* Sections */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Process */
  .process-step { padding-bottom: 0; }
  .step-content { padding-bottom: 32px; }

  /* Trust */
  .trust-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 32px;
  }

  /* Candidates */
  .candidates-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Employers */
  .employer-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .request-form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* WhatsApp */
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-text {
    display: none;
  }
}

/* =========================================
   SPA — VIEWS
   ========================================= */
.view {
  display: none;
  opacity: 0;
}

.view.active {
  display: block;
  opacity: 1;
}

/* =========================================
   SPA — PAGE CURTAIN TRANSITION
   ========================================= */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;

  /* Hidden to the left by default */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-curtain.entering {
  clip-path: inset(0 0% 0 0);
  pointer-events: all;
}

.page-curtain.exiting {
  clip-path: inset(0 0 0 100%);
}

.curtain-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease 0.2s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1) 0.2s;
}

.page-curtain.entering .curtain-inner {
  opacity: 1;
  transform: scale(1);
}

.curtain-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.curtain-logo img {
  height: 70px;
  width: auto;
  background: white;
  border-radius: 10px;
  padding: 6px 12px;
}

.curtain-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.curtain-progress {
  height: 100%;
  background: #60a5fa;
  border-radius: 2px;
  width: 0%;
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1) 0.15s;
}

.page-curtain.entering .curtain-progress {
  width: 100%;
}

/* =========================================
   SPA — HERO TAG
   ========================================= */
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* =========================================
   SPA — STAT SUFFIX
   ========================================= */
.stat-card {
  position: relative;
}

.stat-number {
  display: inline;
}

.stat-suffix {
  display: inline;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

/* =========================================
   SPA — ENTRANCE ANIMATIONS
   ========================================= */

/* Hero items stagger in */
.animate-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.animate-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal blocks (sections) */
.reveal-block {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

.reveal-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal cards (staggered children) */
.reveal-card {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays for sibling cards */
.reveal-card:nth-child(1) { transition-delay: 0ms; }
.reveal-card:nth-child(2) { transition-delay: 80ms; }
.reveal-card:nth-child(3) { transition-delay: 160ms; }
.reveal-card:nth-child(4) { transition-delay: 240ms; }
.reveal-card:nth-child(5) { transition-delay: 320ms; }
.reveal-card:nth-child(6) { transition-delay: 400ms; }

/* Hero animate-item stagger */
.animate-item:nth-child(1) { transition-delay: 100ms; }
.animate-item:nth-child(2) { transition-delay: 200ms; }
.animate-item:nth-child(3) { transition-delay: 300ms; }
.animate-item:nth-child(4) { transition-delay: 400ms; }
.animate-item:nth-child(5) { transition-delay: 500ms; }

/* Footer 2-col without quick links */
.footer-inner {
  grid-template-columns: 2fr 1.5fr !important;
}

/* Candidates loading state */
.candidates-loading {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */

.gallery-hero-section {
  padding: 80px 0 40px;
  background: var(--light-bg, #f8fafc);
}

/* ── Grid ── */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
  padding-bottom: 60px;
  width: 100%;
}

.gallery-grid.hidden { display: none !important; }

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 540px) { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
  background: #e2e8f0;
  box-shadow: 0 2px 12px rgba(15,31,61,0.08);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
              opacity 0.55s ease,
              box-shadow 0.25s ease;
}

.gallery-item.revealed {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item:hover {
  box-shadow: 0 8px 32px rgba(15,31,61,0.18);
  transform: translateY(-3px) scale(1.01);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Video thumbnail */
.gallery-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #0f1f3d;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.gallery-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gallery-play-circle {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-item:hover .gallery-play-circle {
  transform: scale(1.12);
  background: #fff;
}

.gallery-play-circle svg { margin-left: 4px; }

/* Overlay on photo hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,0.75) 0%, transparent 55%);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Lightbox ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 10, 20, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, visibility 0s linear 0.4s;
  pointer-events: none;
  visibility: hidden;
}

.gallery-lightbox.open {
  visibility: visible;
  transition: background 0.4s ease, visibility 0s linear 0s;
}

.gallery-lightbox.open {
  background: rgba(5, 10, 20, 0.92);
  pointer-events: all;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-lb-inner {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.82) translateY(30px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
              opacity 0.4s ease;
}

.gallery-lightbox.open .gallery-lb-inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.gallery-lb-media {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.gallery-lb-media img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.gallery-lb-media img.sliding-out-left  { opacity: 0; transform: translateX(-60px) scale(0.95); }
.gallery-lb-media img.sliding-out-right { opacity: 0; transform: translateX(60px) scale(0.95); }
.gallery-lb-media img.sliding-in-left   { opacity: 0; transform: translateX(60px) scale(0.95); }
.gallery-lb-media img.sliding-in-right  { opacity: 0; transform: translateX(-60px) scale(0.95); }

.gallery-lb-video {
  width: min(88vw, 960px);
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.gallery-lb-video iframe,
.gallery-lb-video video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 0;
}

/* Caption */
.gallery-lb-caption {
  margin-top: 16px;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  max-width: 700px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s;
}

.gallery-lightbox.open .gallery-lb-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Counter */
.gallery-lb-counter {
  position: absolute;
  top: -40px;
  left: 0;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Close button */
.gallery-lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2001;
  line-height: 1;
}
.gallery-lb-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg) scale(1.1); }

/* Prev / Next arrows */
.gallery-lb-prev,
.gallery-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2001;
  user-select: none;
}
.gallery-lb-prev { left: 16px; }
.gallery-lb-next { right: 16px; }
.gallery-lb-prev:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.gallery-lb-next:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.gallery-lb-prev.hidden, .gallery-lb-next.hidden { display: none; }

/* Thumbnails strip */
.gallery-lb-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  max-width: min(88vw, 700px);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 2px;
}
.gallery-lb-thumbs::-webkit-scrollbar { display: none; }

.gallery-lb-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.gallery-lb-thumb:hover { opacity: 0.85; transform: scale(1.05); }
.gallery-lb-thumb.active { border-color: #fff; opacity: 1; }
.gallery-lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-lb-thumb-video {
  width: 100%;
  height: 100%;
  background: #1e56a0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Swipe hint on mobile */
@media (max-width: 600px) {
  .gallery-lb-prev, .gallery-lb-next { width: 40px; height: 40px; font-size: 18px; }
  .gallery-lb-prev { left: 8px; }
  .gallery-lb-next { right: 8px; }
}

/* =========================================
   PARTNERS SECTION
   ========================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.partner-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.partner-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  overflow: hidden;
  flex-shrink: 0;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.partner-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.partner-country {
  font-size: 13px;
  color: var(--text-light);
}

.partner-link {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  word-break: break-all;
}

.partner-link:hover {
  text-decoration: underline;
}
