/* ==========================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================== */
:root {
  /* Color Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f4f5; /* Light concrete gray */
  --bg-dark: #151515;      /* Deep industrial slate/charcoal */
  --bg-dark-accent: #1e1e1e;
  
  --color-text-primary: #151515;
  --color-text-secondary: #52525b; /* Soft gray */
  --color-text-light: #ffffff;
  --color-text-muted: #a1a1aa;
  
  --color-accent: #d92525;         /* Vibrant Mid-Tone Red */
  --color-accent-hover: #b31d1d;
  --color-accent-light: rgba(217, 37, 37, 0.08);
  
  --color-teal: #00665c;           /* Verified Partner Track Teal */
  --color-teal-hover: #004d45;
  --color-teal-light: rgba(0, 102, 92, 0.08);
  
  --color-gold: #cba135;           /* Industrial Gold/Brass */
  --color-border: #e4e4e7;
  --color-border-dark: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-display: 'Oswald', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  
  /* Layout */
  --radius-sm: 2px;
  --radius-md: 6px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

/* ==========================================
   RESET & FOUNDATIONS
   ========================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-hover);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-primary);
  line-height: 1.15;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  font-weight: 400;
}

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

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ==========================================
   ACCESSIBILITY & FOCUS
   ========================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Red Accent Button */
.btn-stamp {
  background: var(--color-accent);
  color: var(--color-text-light);
  box-shadow: 0 4px 10px rgba(238, 0, 0, 0.2);
}

.btn-stamp:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(238, 0, 0, 0.3);
}

/* White Button in Red Section */
.btn-light-stamp {
  background: var(--color-text-light);
  color: var(--color-accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-light-stamp:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Ghost Button on Dark Background */
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-text-light);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-text-light);
  transform: translateY(-2px);
}

/* Ghost Button on Red Background */
.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-text-light);
  background: transparent;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-text-light);
  transform: translateY(-2px);
}

/* Teal Button */
.btn-teal {
  background: var(--color-text-light);
  color: var(--color-teal);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-teal:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Submit Form Button */
.btn-submit {
  background: var(--color-accent);
  color: var(--color-text-light);
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(238, 0, 0, 0.25);
}

.btn-submit:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 20px rgba(238, 0, 0, 0.35);
}

/* ==========================================
   SCROLL REVEAL UTILITIES
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================
   SECTION STANDARDS
   ========================================== */
.section {
  padding: 7.5rem 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.eyebrow.accent-gold {
  color: var(--color-gold);
}

.eyebrow.accent-gold::before {
  background: var(--color-gold);
}

.section-head {
  max-width: 650px;
  margin-bottom: 4.5rem;
}

.section-head p {
  font-size: 1.15rem;
  margin-top: 0.5rem;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
  background: #0d0d0d;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  border-bottom: 1px solid var(--color-border-dark);
  padding: 0.6rem 0;
  z-index: 101;
  position: relative;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
}

.accent-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.top-bar-right {
  display: flex;
  gap: 1rem;
}

.top-bar-right a:hover {
  color: var(--color-text-light);
}

.top-bar-right .divider {
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}

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

/* Header logo — logo-1.png */
.header-logo-img {
  height: 85px;
  width: auto;
  display: block;
}

/* Footer logo — logo-2.png (used as-is, no inversion) */
.footer-logo-img {
  height: 85px;
  width: auto;
  display: block;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Header Action CTA Button style */
.nav-btn {
  background: var(--color-accent);
  color: var(--color-text-light) !important;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.78rem;
}

.nav-btn:hover {
  background: var(--color-accent-hover);
  border-bottom-color: transparent;
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION – CARGO TICKET
   ========================================== */
.hero {
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: visible; /* Allow stats bar overlap */
  padding: 7rem 0 11rem;
  color: var(--color-text-light);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 21, 21, 0.95) 0%, rgba(21, 21, 21, 0.85) 50%, rgba(21, 21, 21, 0.4) 100%), 
              linear-gradient(to bottom, rgba(21, 21, 21, 0.4) 0%, rgba(21, 21, 21, 0.85) 100%);
  z-index: 1;
}

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

.hero-content {
  max-width: 720px;
}

.hero h1 {
  color: var(--color-text-light);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  text-transform: none;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
}

.hero h1 .accent-text {
  color: var(--color-accent);
  display: block;
  text-transform: uppercase;
  font-size: 0.95em;
  letter-spacing: 0.02em;
}

.hero p.lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 48ch;
  margin-bottom: 2.8rem;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Overlapping Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 10;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.stat-bar-card {
  padding: 2.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  border-right: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.stat-bar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-primary);
}

.stat-bar-card.card-accent:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 12px 25px rgba(217, 37, 37, 0.35);
}

.stat-bar-card:last-child {
  border-right: none;
}

.stat-bar-card.card-accent {
  background: var(--color-accent);
  color: var(--color-text-light);
  border-right: none;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.12);
}

.stat-bar-card .stat-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.stat-bar-card.card-accent .stat-icon {
  color: var(--color-text-light);
}

.stat-bar-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-bar-card .stat-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-bar-card .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-bar-card.card-accent .label {
  color: rgba(255, 255, 255, 0.8);
}

.stat-bar-card .value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1;
}

.stat-bar-card.card-accent .value {
  color: var(--color-text-light);
}

.stat-bar-card .value sup {
  color: var(--color-accent);
  font-size: 1.1rem;
  top: -0.4em;
  font-weight: 600;
}

.stat-bar-card.card-accent .value sup {
  color: var(--color-text-light);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: start;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

.intro-paragraph {
  font-size: 1.2rem !important;
  line-height: 1.6;
  color: var(--color-text-primary);
}

.highlight-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--color-accent);
  padding: 1.8rem 2.2rem;
  margin-top: 2rem;
}

.highlight-box strong {
  color: var(--color-text-primary);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* Values Side Card */
.values-card {
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.values-card h3 {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1rem;
}

.stamp-emblem {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 70px;
  height: 70px;
  border: 1px dashed rgba(203, 161, 53, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.stamp-emblem::after {
  content: "W.P.S";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  color: rgba(203, 161, 53, 0.2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.value-row {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.value-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.value-row:first-child {
  padding-top: 0;
}

.value-row .num {
  font-family: var(--font-mono);
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.value-details strong {
  display: block;
  font-family: var(--font-display);
  color: var(--color-text-light);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.value-details p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ==========================================
   SERVICES (JOB SEEKER Pathway)
   ========================================== */
.services {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.track-card {
  background: var(--bg-primary);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.track-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(217, 37, 37, 0.08), 0 5px 15px rgba(0,0,0,0.04);
  border-color: var(--color-accent);
}

.track-card:hover h4 {
  color: var(--color-accent);
}

.tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.track-card .tag {
  color: var(--color-accent);
  font-size: 0.72rem;
  border: 1px solid var(--color-accent);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  font-weight: 600;
  background: rgba(238, 0, 0, 0.02);
}

.track-card .card-icon {
  color: var(--color-accent);
  background: var(--color-accent-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.track-card:hover .card-icon {
  background: var(--color-accent);
  color: var(--color-text-light);
  transform: rotate(15deg);
}

.track-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  transition: var(--transition-smooth);
}

.track-card p {
  font-size: 0.98rem;
  line-height: 1.5;
}

/* ==========================================
   EMPLOYERS SECTION (TEAL TRACK)
   ========================================== */
.employers {
  background: var(--color-teal);
  color: var(--color-text-light);
  overflow: hidden;
}

.employers::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.employers-split-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  margin-bottom: 4.5rem;
  align-items: flex-end;
}

.employers-split-head h2 {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.employers-split-head p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin: 0;
}

.seal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  position: relative;
  z-index: 1;
}

.seal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 2.5rem 2.2rem;
  transition: var(--transition-smooth);
}

.seal-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.seal-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.seal-badge svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.seal-card:hover .seal-badge {
  background: var(--color-gold);
  color: var(--color-teal);
  box-shadow: 0 0 15px rgba(203, 161, 53, 0.35);
}

.seal-card:hover .seal-badge svg {
  color: var(--color-teal);
}

.seal-card h4 {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.seal-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

.employers-cta {
  text-align: center;
  margin-top: 4.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================
   COUNTRIES (PASSPORT STAMP GRID)
   ========================================== */
.countries {
  background: var(--bg-primary);
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 1.8rem;
}

.stamp {
  position: relative;
  border: 2px dashed #000;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), 
              background-color 0.3s ease, 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

/* Angle variance offsets for passport stamp styling */
.stamp:nth-child(3n+1) { --tilt: -2.5deg; border-color: rgba(238, 0, 0, 0.45); color: var(--color-accent); }
.stamp:nth-child(3n+2) { --tilt: 1.8deg; border-color: rgba(21, 31, 56, 0.4); color: var(--color-text-primary); }
.stamp:nth-child(3n+3) { --tilt: -1.2deg; border-color: rgba(0, 102, 92, 0.4); color: var(--color-teal); }

.stamp {
  transform: rotate(var(--tilt));
}

.stamp::after {
  content: "ACTIVE PLACEMENTS";
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  opacity: 0.25;
  margin-top: 1rem;
  text-transform: uppercase;
}

/* Base hover — straighten tilt, lift and shadow */
.stamp:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.stamp-inner-ring {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: calc(var(--radius-md) - 2px);
  pointer-events: none;
}

/* Per-country flag hover colours */

/* Poland — White & Red */
.stamp-pl:hover { background: linear-gradient(to bottom, #fff 50%, rgba(220,20,60,0.18) 50%); border-color: #dc143c; }
.stamp-pl:hover .stamp-inner-ring { border-color: rgba(220,20,60,0.4); }
.stamp-pl:hover .stamp-code, .stamp-pl:hover h4 { color: #dc143c; }

/* Croatia — Red, White, Blue */
.stamp-hr:hover { background: linear-gradient(to bottom, rgba(255,0,0,0.15) 33%, rgba(255,255,255,0.5) 33% 66%, rgba(23,23,150,0.15) 66%); border-color: #ff0000; }
.stamp-hr:hover .stamp-inner-ring { border-color: rgba(255,0,0,0.35); }
.stamp-hr:hover .stamp-code, .stamp-hr:hover h4 { color: #cc0000; }

/* Czech Republic — Red, White, Blue */
.stamp-cz:hover { background: linear-gradient(to bottom, rgba(255,255,255,0.6) 50%, rgba(215,20,26,0.2) 50%); border-color: #11457e; }
.stamp-cz:hover .stamp-inner-ring { border-color: rgba(17,69,126,0.4); }
.stamp-cz:hover .stamp-code, .stamp-cz:hover h4 { color: #11457e; }

/* Hungary — Red, White, Green */
.stamp-hu:hover { background: linear-gradient(to bottom, rgba(205,42,62,0.15) 33%, rgba(255,255,255,0.5) 33% 66%, rgba(67,111,77,0.18) 66%); border-color: #cd2a3e; }
.stamp-hu:hover .stamp-inner-ring { border-color: rgba(205,42,62,0.4); }
.stamp-hu:hover .stamp-code, .stamp-hu:hover h4 { color: #cd2a3e; }

/* Lithuania — Yellow, Green, Red */
.stamp-lt:hover { background: linear-gradient(to bottom, rgba(253,185,19,0.25) 33%, rgba(0,106,68,0.15) 33% 66%, rgba(193,39,45,0.15) 66%); border-color: #fdb913; }
.stamp-lt:hover .stamp-inner-ring { border-color: rgba(0,106,68,0.4); }
.stamp-lt:hover .stamp-code, .stamp-lt:hover h4 { color: #006a44; }

/* Slovakia — White, Blue, Red */
.stamp-sk:hover { background: linear-gradient(to bottom, rgba(255,255,255,0.6) 33%, rgba(11,78,162,0.18) 33% 66%, rgba(238,28,37,0.18) 66%); border-color: #0b4ea2; }
.stamp-sk:hover .stamp-inner-ring { border-color: rgba(11,78,162,0.4); }
.stamp-sk:hover .stamp-code, .stamp-sk:hover h4 { color: #0b4ea2; }

/* Germany — Black, Red, Gold */
.stamp-de:hover { background: linear-gradient(to bottom, rgba(0,0,0,0.1) 33%, rgba(221,0,0,0.15) 33% 66%, rgba(255,206,0,0.25) 66%); border-color: #dd0000; }
.stamp-de:hover .stamp-inner-ring { border-color: rgba(221,0,0,0.4); }
.stamp-de:hover .stamp-code, .stamp-de:hover h4 { color: #dd0000; }

/* Netherlands — Red, White, Blue */
.stamp-nl:hover { background: linear-gradient(to bottom, rgba(174,28,40,0.2) 33%, rgba(255,255,255,0.5) 33% 66%, rgba(33,70,139,0.18) 66%); border-color: #ae1c28; }
.stamp-nl:hover .stamp-inner-ring { border-color: rgba(174,28,40,0.4); }
.stamp-nl:hover .stamp-code, .stamp-nl:hover h4 { color: #ae1c28; }

/* Belgium — Black, Yellow, Red */
.stamp-be:hover { background: linear-gradient(to right, rgba(0,0,0,0.12) 33%, rgba(253,209,22,0.3) 33% 66%, rgba(241,38,57,0.18) 66%); border-color: #f12639; }
.stamp-be:hover .stamp-inner-ring { border-color: rgba(241,38,57,0.4); }
.stamp-be:hover .stamp-code, .stamp-be:hover h4 { color: #f12639; }

/* Flags styled beautifully via gradients */
.flag-swatch {
  width: 48px;
  height: 32px;
  margin: 0 auto 1.2rem;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.15);
}

/* Swatches styling */
.swatch-pl { background: linear-gradient(to bottom, #ffffff 50%, #dc143c 50%); } /* Poland */
.swatch-hr { background: linear-gradient(to bottom, #ff0000 33.3%, #ffffff 33.3% 66.6%, #171796 66.6%); position: relative; } /* Croatia */
.swatch-cz { background: linear-gradient(35deg, #11457e 45%, transparent 45%), linear-gradient(to bottom, #ffffff 50%, #d7141a 50%); } /* Czech */
.swatch-hu { background: linear-gradient(to bottom, #cd2a3e 33.3%, #ffffff 33.3% 66.6%, #436f4d 66.6%); } /* Hungary */
.swatch-lt { background: linear-gradient(to bottom, #fdb913 33.3%, #006a44 33.3% 66.6%, #c1272d 66.6%); } /* Lithuania */
.swatch-sk { background: linear-gradient(to bottom, #ffffff 33.3%, #0b4ea2 33.3% 66.6%, #ee1c25 66.6%); } /* Slovakia */
.swatch-de { background: linear-gradient(to bottom, #000000 33.3%, #dd0000 33.3% 66.6%, #ffce00 66.6%); } /* Germany */
.swatch-nl { background: linear-gradient(to bottom, #ae1c28 33.3%, #ffffff 33.3% 66.6%, #21468b 66.6%); } /* Netherlands */
.swatch-be { background: linear-gradient(to right, #000000 33.3%, #fdd116 33.3% 66.6%, #f12639 66.6%); } /* Belgium */

.stamp-code {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  opacity: 0.6;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.stamp:hover .stamp-code {
  opacity: 1;
}

.stamp h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: inherit;
  transition: color 0.3s ease;
}

.stamp p {
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

.countries-note {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

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

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

/* ==========================================
   PROCESS (TIMELINE Timings)
   ========================================== */
.process {
  background: var(--bg-dark);
  color: var(--color-text-light);
}

.process h2 {
  color: var(--color-text-light);
}

.process .section-head p {
  color: var(--color-text-muted);
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

/* Timeline vertical line */
.timeline-track {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--color-gold) 0 8px, transparent 8px 16px);
}

.legs-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.leg {
  display: flex;
  gap: 2.2rem;
  position: relative;
}

.leg-indicator {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #111111;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--bg-dark);
  z-index: 5;
  transition: var(--transition-smooth);
}

.leg:hover .leg-indicator {
  background: var(--color-gold);
  color: #111111;
  box-shadow: 0 0 15px rgba(203, 161, 53, 0.4), 0 0 0 8px var(--bg-dark);
}

.leg-card {
  background: var(--bg-dark-accent);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 2.2rem 2.5rem;
  flex-grow: 1;
  transition: var(--transition-smooth);
}

.leg:hover .leg-card {
  border-color: var(--color-gold);
  transform: translateX(5px);
}

.leg-stage {
  font-size: 0.72rem;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
  display: block;
}

.leg-card h4 {
  color: var(--color-text-light);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

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

.process-cta {
  text-align: center;
  margin-top: 4.5rem;
}

@media (max-width: 768px) {
  .timeline-track { left: 18px; }
  .leg-indicator { width: 38px; height: 38px; font-size: 0.85rem; box-shadow: 0 0 0 6px var(--bg-dark); }
  .leg { gap: 1.2rem; }
  .leg-card { padding: 1.5rem 1.8rem; }
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.2rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text-primary);
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  user-select: none;
}

.faq-trigger:hover {
  background-color: var(--bg-secondary);
}

.faq-item .idx {
  color: var(--color-accent);
  margin-right: 0.8rem;
  font-size: 0.95rem;
}

.faq-item .chev {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-trigger {
  border-bottom: 1px solid var(--color-border);
}

.faq-item.active .chev {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a {
  padding: 1.8rem 2.2rem;
  background: #fafafa;
}

.faq-a p {
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 68ch;
}

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  background: var(--color-accent);
  color: var(--color-text-light);
  text-align: center;
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 10px, transparent 10px 20px);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--color-text-light);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
}

.info-rows {
  display: flex;
  flex-direction: column;
}

.info-row {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  padding: 1.1rem 0;
}

.info-row:first-child {
  padding-top: 0;
}

.info-row .key {
  width: 120px;
  font-size: 0.72rem;
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.info-row .val {
  font-size: 1.05rem;
  color: var(--color-text-primary);
}

.info-row .val a {
  border-bottom: 1px dashed transparent;
}

.info-row .val a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.whatsapp-link {
  color: #25d366 !important;
  font-weight: 600;
}

.whatsapp-link:hover {
  border-bottom-color: #25d366 !important;
}

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--color-text-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

/* Contact Form Card */
.contact-form-container {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 3.5rem 3rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-success-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  animation: fade-in-up 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--color-teal-light);
  color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.form-success-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.form-success-card p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.6;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-up {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--color-text-primary);
  transition: var(--transition-smooth);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(238, 0, 0, 0.08);
}

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

/* CV File Dropzone styling */
.cv-dropzone {
  border: 2px dashed var(--color-border);
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  padding: 1.8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.cv-dropzone:hover,
.cv-dropzone.dragover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.dropzone-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

.dropzone-prompt .upload-icon {
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.cv-dropzone:hover .upload-icon,
.cv-dropzone.dragover .upload-icon {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.cv-dropzone .accent-link {
  color: var(--color-accent);
  text-decoration: underline;
}

.dropzone-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-teal);
  font-weight: 600;
  font-size: 0.96rem;
  animation: slideUp 0.3s ease;
}

.dropzone-success .success-icon {
  color: var(--color-teal);
}

.file-name-display {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.btn-remove-file {
  background: rgba(217, 37, 37, 0.1);
  color: var(--color-accent);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  line-height: 1;
}

.btn-remove-file:hover {
  background: var(--color-accent);
  color: var(--color-text-light);
}

@keyframes slideUp {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: -0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-note::before {
  content: "i";
  font-family: var(--font-mono);
  width: 14px;
  height: 14px;
  background: var(--color-text-secondary);
  color: var(--bg-secondary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--bg-dark);
  color: var(--color-text-light);
  padding: 5rem 0 3rem;
  border-top: 4px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.col-brand h4 {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.col-brand p {
  color: var(--color-text-muted);
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

.footer-col a:hover {
  color: var(--color-accent);
  padding-left: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom-links a {
  color: var(--color-text-muted);
}

.footer-bottom-links a:hover {
  color: var(--color-text-light);
}

.footer-bottom-links .bullet {
  opacity: 0.3;
}

/* ==========================================
   RESPONSIVE LAYOUT MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-bar-card {
    border-bottom: 1px solid var(--color-border);
  }
  .stat-bar-card:nth-child(2n) {
    border-right: none;
  }
  .stat-bar-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .employers-split-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  
  /* Mobile Hamburger Nav Drawer toggle */
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 98px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 5%;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    /* Prevent cutting off on small screens */
    max-height: calc(100vh - 98px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
  
  .nav-link {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }
  
  .nav-btn {
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .info-row {
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .info-row .key {
    width: auto;
    padding-top: 0;
  }
  
  .info-row .val {
    word-wrap: break-word;
    word-break: break-word;
  }



  .hero {
    padding: 6rem 0 8rem;
  }
  .hero-stats-bar {
    position: relative;
    transform: none;
    margin-top: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  .seal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-bar-grid {
    grid-template-columns: 1fr;
  }
  .stat-bar-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .stat-bar-card:last-child {
    border-bottom: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================
   RESPONSIVE LOGO SIZING — All Devices
   ========================================== */

/* Phone (≤ 480px) — compact, still readable */
@media (max-width: 480px) {
  .header-logo-img,
  .footer-logo-img {
    height: 60px;
  }
  .nav-menu {
    top: 75px; /* match slimmer logo height */
    max-height: calc(100vh - 75px);
  }
}

/* Small tablet (481px – 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .header-logo-img,
  .footer-logo-img {
    height: 70px;
  }
  .nav-menu {
    top: 85px;
    max-height: calc(100vh - 85px);
  }
}

/* Tablet / small laptop (769px – 1199px) — default 85px already set */

/* Large desktop / widescreen monitor (≥ 1440px) */
@media (min-width: 1440px) {
  .header-logo-img,
  .footer-logo-img {
    height: 90px;
  }
}

/* TV / ultra-wide (≥ 1920px) */
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
  .header-logo-img,
  .footer-logo-img {
    height: 100px;
  }
}

/* ==========================================
   FLOATING WHATSAPP FAB WIDGET
   ========================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.3s ease,
              background-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid #25d366;
  border-radius: 50%;
  opacity: 0.8;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background-color: #1e1e1e;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1e1e1e;
}

.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}
