/* =========================================================
   CSS CUSTOM PROPERTIES — White + Red + Black theme
========================================================= */
:root {
  /* Brand */
  --red:        #CC0000;
  --red-bright: #E60000;
  --red-dark:   #990000;
  --red-light:  #FFF0F0;
  --red-glow:   rgba(204, 0, 0, 0.2);
  --black:      #111111;
  --charcoal:   #222222;

  /* Backgrounds */
  --page-bg:    #FFFFFF;
  --section-alt:#F7F7F7;   /* subtle off-white for alternating sections */
  --card-bg:    #FFFFFF;
  --input-bg:   #F8F8F8;
  --footer-bg:  #111111;

  /* Surfaces */
  --border:     #E5E5E5;
  --border-red: rgba(204, 0, 0, 0.25);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 30px rgba(0,0,0,0.10);
  --shadow-red: 0 8px 32px rgba(204,0,0,0.20);

  /* Text */
  --text-head:  #111111;
  --text-body:  #444444;
  --text-muted: #888888;
  --text-light: #FFFFFF;

  /* Misc */
  --white:      #FFFFFF;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
  --nav-h:      72px;
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

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

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 36px 0;
  background: var(--page-bg);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
}

.section > .container { width: 100%; }

.section-alt {
  background: var(--section-alt);
}

.text-red { color: var(--red); }

/* =========================================================
   TYPOGRAPHY HELPERS
========================================================= */
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--border-red);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-head);
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(204,0,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

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

/* Black outline button — for white sections */
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse-ring {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 var(--red-glow); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 16px rgba(204,0,0,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0  rgba(204,0,0,0); }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

/* Intersection Observer reveal classes
   Only applied when JS has loaded (progressive enhancement —
   if JS never runs, content is always visible) */
body.js-loaded .fade-up,
body.js-loaded .fade-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.js-loaded .fade-right { transform: translateX(-40px); }

.fade-up.visible,
.fade-right.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero reveal elements start hidden */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Over hero image — transparent bg, white text */
.navbar .nav-link         { color: rgba(255,255,255,0.75); }
.navbar .nav-link:hover,
.navbar .nav-link.active  { color: var(--white); }
.navbar .logo-ie,
.navbar .logo-group       { color: var(--white); }
.navbar .hamburger span   { background: var(--white); }

/* Scrolled — white bg, dark text */
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled .nav-link         { color: var(--text-muted); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active  { color: var(--black); }
.navbar.scrolled .logo-ie,
.navbar.scrolled .logo-group       { color: var(--black); }
.navbar.scrolled .hamburger span   { background: var(--black); }
.navbar.scrolled .nav-link.nav-cta { color: var(--white); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-dot { color: var(--red); font-size: 1.8rem; line-height: 0.5; }

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

.nav-link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-link.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 20px;
}

.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover  { background: var(--red-bright); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO — Pure image slideshow, no text overlay
========================================================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Each slide is a full-cover background layer */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: heroZoom 6s ease forwards;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* Very light tint — image stays clearly visible */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 2;
  pointer-events: none;
}

/* Progress bar at top of hero */
.hero-progress {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  transition: width linear;
}

/* Slide dot indicators */
.hero-slide-dots {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slide-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 10;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  animation: scroll-bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}

.hero-scroll-hint:hover { color: var(--red); }

/* =========================================================
   ABOUT — white background
========================================================= */
.about {
  background: var(--page-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 24px;
}

.about-desc {
  color: var(--text-body);
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.about-mvs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mv-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  transition: border-left-color var(--transition), box-shadow var(--transition);
}

.mv-card:hover {
  border-left-color: var(--red-bright);
  box-shadow: var(--shadow-red);
}

.mv-card i {
  font-size: 1.4rem;
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.mv-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 6px;
}

.mv-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  margin: 0;
}

/* About Image */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

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

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-red);
  animation: pulse-ring 3s ease-in-out infinite;
}

.badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 20px 14px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--red-light); }

.stat-item i {
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 4px;
}

.stat-item .count {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-head);
  line-height: 1;
}

.stat-item .plus {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
}

.stat-item span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================================
   COMPANIES — alt (light grey) background
========================================================= */
.companies {
  background: var(--section-alt);
}

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

.company-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), var(--shadow-red);
  border-color: var(--border-red);
}

.company-card--featured {
  border-color: var(--border-red);
  background: linear-gradient(180deg, var(--red-light) 0%, var(--card-bg) 24%);
}

.company-card--featured::before { transform: scaleX(1); }

.company-card-inner {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--border-red);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}

.company-logo-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--section-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  padding: 6px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.company-card:hover .company-logo-wrap {
  border-color: var(--border-red);
  box-shadow: 0 0 0 3px var(--red-light);
}

.company-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-body { flex: 1; }

.company-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.company-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-head);
  margin-bottom: 8px;
}

.company-body p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.company-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.company-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.825rem;
  color: var(--text-body);
}

.company-features li i {
  color: var(--red);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.company-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* =========================================================
   BLOG — white background
========================================================= */
.blog {
  background: var(--page-bg);
}

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

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}

.blog-img-link { display: block; }

.blog-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img { transform: scale(1.07); }

.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.blog-body { padding: 16px; }

.blog-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--red);
}

.blog-body h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.blog-body h3 a {
  color: var(--text-head);
  transition: color var(--transition);
}

.blog-body h3 a:hover { color: var(--red); }

.blog-body p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-family: var(--font-head);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.read-more:hover { gap: 10px; color: var(--red-bright); }

.blog-cta { text-align: center; }

/* =========================================================
   WHY CHOOSE US — alt (light grey) background
========================================================= */
.why {
  background: var(--section-alt);
}

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

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover::after { opacity: 1; }

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border-color: var(--border-red);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-light);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background var(--transition), box-shadow var(--transition);
}

.why-icon i {
  font-size: 1.1rem;
  color: var(--red);
}

.why-card:hover .why-icon {
  background: var(--red);
  box-shadow: 0 0 24px rgba(204,0,0,0.30);
}

.why-card:hover .why-icon i { color: var(--white); }

.why-card h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* =========================================================
   CONTACT — white background
========================================================= */
.contact {
  background: var(--page-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.required { color: var(--red); }

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-head);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #BBBBBB; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
  background: var(--white);
}

.form-group input.error,
.form-group textarea.error { border-color: #E53935; }

.form-error {
  display: block;
  font-size: 0.775rem;
  color: #E53935;
  margin-top: 6px;
  min-height: 18px;
}

.form-success {
  display: none;
  background: #F0FFF4;
  border: 1px solid #A3D9A5;
  border-radius: var(--radius);
  color: #2E7D32;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.875rem;
  text-align: center;
}

.form-success i { margin-right: 8px; }

/* Contact Info */
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-head);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--red);
  font-size: 0.95rem;
}

.info-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  font-size: 0.9rem;
  color: var(--text-head);
}

.info-item a:hover { color: var(--red); }

.contact-social { display: flex; gap: 12px; }

.contact-social a {
  width: 40px;
  height: 40px;
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   FOOTER — always dark (black)
========================================================= */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  border-top: 3px solid var(--red);
}

.footer-top { padding: 60px 0 44px; }

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

.footer-brand p {
  font-size: 0.875rem;
  color: #AAAAAA;
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 280px;
}

.footer-logo { font-size: 1.6rem; }

/* Footer logo — white on dark */
.footer .logo-ie,
.footer .logo-group { color: var(--white); }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  background: #1E1E1E;
  border: 1px solid #2E2E2E;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAAAAA;
  font-size: 0.8rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2E2E2E;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: #AAAAAA;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-col ul li a i    { font-size: 0.65rem; color: var(--red); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: #AAAAAA;
  margin-bottom: 12px;
}

.footer-contact li i    { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a    { color: #AAAAAA; transition: color var(--transition); }
.footer-contact li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid #2E2E2E;
  padding: 20px 0;
}

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

.footer-bottom p,
.footer-links-inline a {
  font-size: 0.8rem;
  color: #777777;
}

.footer-links-inline a:hover { color: var(--red); }

/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-red);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--red-bright);
  transform: translateY(-4px) !important;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 92px;          /* sits above the back-to-top button */
  right: 32px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.40);
  z-index: 900;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0.30); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.40), 0 0 0 12px rgba(37,211,102,0); }
}

.whatsapp-btn:hover {
  background: #1ebe5e;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

/* Tooltip label */
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(-50%) translateX(6px);
}

/* Arrow on tooltip */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #1a1a1a;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* =========================================================
   JOURNEY — Horizontal auto-sliding carousel
========================================================= */
.journey {
  background: var(--section-alt);
}

/* ── Outer wrapper ── */
.journey-slider-wrap {
  position: relative;
  padding: 0 52px; /* space for prev/next buttons */
}

/* ── Clipping viewport ── */
.journey-slider-viewport {
  overflow: hidden;
  position: relative;
}

/* ── Scrolling track ── */
.journey-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Horizontal connector line behind dots */
.journey-track::before {
  content: '';
  position: absolute;
  /* sits at mid-point of the connector row: year(28px) + gap(8px) + dot centre */
  top: calc(28px + 8px + 10px);
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--border), var(--red));
  z-index: 0;
}

/* ── Individual slide ── */
.journey-slide {
  flex: 0 0 calc(100% / 3); /* 3 visible on desktop */
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Year label */
.journey-slide-year {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--red);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-red);
  position: relative;
  z-index: 1;
}

.journey-slide--current .journey-slide-year {
  background: var(--red-dark);
  box-shadow: 0 0 0 4px var(--red-light), var(--shadow-red);
}

/* Dot connector row */
.journey-slide-connector {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.journey-dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
  transition: background var(--transition), box-shadow var(--transition);
}

.journey-dot--current {
  background: var(--red);
  box-shadow: 0 0 0 4px var(--red-light), var(--shadow-red);
}

/* Content card */
.journey-slide-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.journey-slide-content:hover {
  border-color: var(--border-red);
  box-shadow: var(--shadow-red);
  transform: translateY(-4px);
}

.journey-slide-content--current {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--card-bg) 50%);
  border-color: var(--border-red);
}

.journey-slide-content h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 8px;
  line-height: 1.3;
}

.journey-slide-content p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.journey-milestone-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--border-red);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ── Prev / Next buttons ── */
.journey-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-head);
  font-size: 0.85rem;
  z-index: 10;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.journey-btn:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
  border-color: var(--red);
}

.journey-btn--prev { left: 0; }
.journey-btn--next { right: 0; }

/* ── Dot indicators ── */
.journey-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.journey-dots-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--text-muted);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.journey-dots-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .journey-slide { flex: 0 0 50%; } /* 2 visible on tablet */
}

@media (max-width: 600px) {
  .journey-slide { flex: 0 0 100%; } /* 1 visible on mobile */
  .journey-slider-wrap { padding: 0 44px; }
}

/* =========================================================
   LEADERSHIP — white background
========================================================= */
.leadership {
  background: var(--page-bg);
}

.leadership-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.leader-photo-wrap {
  position: relative;
}

.leader-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--red-light) 0%, #f0e8e8 100%);
  border: 2px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.leader-photo-placeholder i {
  font-size: 5rem;
  color: var(--red);
  opacity: 0.5;
}

.leader-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-country-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-red);
}

.leader-country-badge i { margin-right: 5px; }

.leader-info { padding-top: 4px; }

.leader-tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.leader-name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text-head);
  margin-bottom: 20px;
  line-height: 1.15;
}

.leader-bio {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 10px;
}

.leader-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 14px 0;
}

.leader-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.leader-stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.leader-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.leader-social {
  display: flex;
  gap: 10px;
}

.leader-social a {
  width: 38px;
  height: 38px;
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all var(--transition);
}

.leader-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

/* =========================================================
   GLOBAL MAP — under Leadership  (modern redesign)
========================================================= */
.global-map-wrap {
  margin-top: 32px;
}

/* ── Dark card container ── */
.global-map-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0e0e0e 0%, #1a0000 55%, #0e0e0e 100%);
  border-radius: 16px;
  padding: 24px 32px 24px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(204,0,0,0.18);
}

/* ── Decorative blobs ── */
.gm-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}
.gm-blob--tl {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #cc0000 0%, transparent 70%);
  top: -120px;
  left: -120px;
}
.gm-blob--br {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #cc0000 0%, transparent 70%);
  bottom: -100px;
  right: -80px;
}

/* ── Header ── */
.global-map-header {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.section-tag--light {
  background: rgba(204, 0, 0, 0.15);
  color: #ff4d4d;
  border: 1px solid rgba(204, 0, 0, 0.35);
}

.global-map-title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 5px 0 7px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gm-accent {
  color: var(--red);
  background: linear-gradient(90deg, #cc0000, #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.global-map-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Map image frame ── */
.global-map-img-wrap {
  position: relative;
  z-index: 1;
}

.gm-map-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(204, 0, 0, 0.15),
    0 8px 48px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(204, 0, 0, 0.08);
  max-width: 720px;
  max-height: 260px;
  margin: 0 auto;
}

.gm-map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(14, 14, 14, 0.55) 100%
  );
  border-radius: 16px;
  pointer-events: none;
}

.global-map-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.95) contrast(1.05);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .global-map-card {
    padding: 20px 16px 18px;
  }

  .global-map-img {
    height: 180px;
  }
}

/* =========================================================
   CSR / PHILANTHROPY — alt (light grey) background
========================================================= */
.csr {
  background: var(--section-alt);
}

.csr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.csr-highlight {
  background: var(--card-bg);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.csr-foundation-logo {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  animation: pulse-ring 3s ease-in-out infinite;
}

.csr-foundation-logo i {
  font-size: 1.8rem;
  color: var(--white);
}

.csr-foundation-text h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-head);
  margin-bottom: 8px;
  line-height: 1.2;
}

.csr-foundation-text p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.csr-foundation-text p:last-child { margin-bottom: 0; }

.csr-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csr-pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.csr-pillar-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--red-dark));
}

.csr-pillar-card:hover {
  border-color: var(--border-red);
  box-shadow: var(--shadow-red);
  transform: translateY(-4px);
}

.csr-pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--red-light);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background var(--transition), box-shadow var(--transition);
}

.csr-pillar-icon i {
  font-size: 1.25rem;
  color: var(--red);
  transition: color var(--transition);
}

.csr-pillar-card:hover .csr-pillar-icon {
  background: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

.csr-pillar-card:hover .csr-pillar-icon i { color: var(--white); }

.csr-pillar-card h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 6px;
}

.csr-pillar-card p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 10px;
}

.csr-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.csr-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--text-body);
}

.csr-list li i {
  color: var(--red);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* =========================================================
   SERVICES — white background
========================================================= */
.services {
  background: var(--page-bg);
}

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

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Red top-bar accent — grows in on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10), var(--shadow-red);
  border-color: var(--border-red);
}

/* Large decorative number — background watermark */
.service-card-num {
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.35s ease;
}

.service-card:hover .service-card-num {
  color: rgba(204, 0, 0, 0.08);
}

/* Icon circle */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-light);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background var(--transition), box-shadow var(--transition);
}

.service-icon i {
  font-size: 1.2rem;
  color: var(--red);
  transition: color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.30);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

/* Card heading */
.service-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.35;
  margin-bottom: 8px;
}

/* Card body text */
.service-card p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* Red accent line at bottom */
.service-card-line {
  height: 2px;
  width: 32px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 16px;
  transition: width 0.35s ease;
}

.service-card:hover .service-card-line { width: 56px; }

/* =========================================================
   STAGGERED ANIMATION DELAYS
========================================================= */
.why-card:nth-child(1)  { transition-delay: 0.05s; }
.why-card:nth-child(2)  { transition-delay: 0.12s; }
.why-card:nth-child(3)  { transition-delay: 0.19s; }
.why-card:nth-child(4)  { transition-delay: 0.26s; }
.why-card:nth-child(5)  { transition-delay: 0.33s; }
.why-card:nth-child(6)  { transition-delay: 0.40s; }

.company-card:nth-child(1) { transition-delay: 0.05s; }
.company-card:nth-child(2) { transition-delay: 0.15s; }
.company-card:nth-child(3) { transition-delay: 0.25s; }

.blog-card:nth-child(1)  { transition-delay: 0.05s; }
.blog-card:nth-child(2)  { transition-delay: 0.15s; }
.blog-card:nth-child(3)  { transition-delay: 0.25s; }

.stat-item:nth-child(1)  { transition-delay: 0.05s; }
.stat-item:nth-child(2)  { transition-delay: 0.12s; }
.stat-item:nth-child(3)  { transition-delay: 0.19s; }
.stat-item:nth-child(4)  { transition-delay: 0.26s; }

.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.12s; }
.service-card:nth-child(3) { transition-delay: 0.19s; }
.service-card:nth-child(4) { transition-delay: 0.26s; }
.service-card:nth-child(5) { transition-delay: 0.33s; }
.service-card:nth-child(6) { transition-delay: 0.40s; }

/* =========================================================
   RESPONSIVE — TABLET (≤1024px)
========================================================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image { order: -1; }

  .about-img-wrapper img { height: 340px; }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .companies-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card:last-child { grid-column: span 2; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand { grid-column: span 2; }

  /* Leadership */
  .leader-card {
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding: 24px;
  }

  /* CSR */
  .csr-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤768px)
========================================================= */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section {
    padding: 28px 0;
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 32px;
  }

  .section-header { margin-bottom: 20px; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* On mobile, nav links are always on white panel */
  .navbar .nav-links .nav-link { color: var(--text-body); }
  .navbar .nav-links .nav-link:hover,
  .navbar .nav-links .nav-link.active { color: var(--red); }
  .navbar .hamburger span { background: var(--white); }
  .navbar.scrolled .hamburger span { background: var(--black); }

  .nav-link {
    padding: 13px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
  }

  .nav-link::after { display: none; }

  .nav-link.active,
  .nav-link:hover {
    background: var(--red-light);
    color: var(--red);
  }

  .nav-link.nav-cta { text-align: center; margin-top: 8px; }

  /* Hero — keep overflow hidden, adjust dots for mobile */
  .hero { overflow: hidden; height: 100svh; }
  .hero-slide-dots { bottom: 52px; }
  .hero-scroll-hint { bottom: 22px; }

  /* About */
  .about-grid { gap: 28px; }
  .about-img-wrapper img { height: 260px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 14px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  /* Companies */
  .companies-grid { max-width: 100%; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card  { padding: 20px 16px 16px; }
  .service-card-num { font-size: 2.8rem; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { grid-column: span 1; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Leadership */
  .leader-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 28px;
  }
  .leader-photo-placeholder { max-width: 180px; margin: 0 auto; }
  .leader-country-badge { bottom: -12px; }
  .leader-info { padding-top: 20px; }
  .leader-stats { gap: 16px; flex-wrap: wrap; }

  /* CSR */
  .csr-highlight { padding: 24px 20px; }
  .csr-pillar-card { padding: 22px 18px; }

  /* Contact */
  .contact-grid { gap: 24px; }
  .contact-form-wrap { padding: 22px 18px; }
  .contact-info-card  { padding: 22px 18px; }

  /* Footer */
  .footer-top { padding: 40px 0 28px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: span 1; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top   { bottom: 20px; right: 16px; }
  .whatsapp-btn  { bottom: 80px; right: 16px; width: 48px; height: 48px; font-size: 1.3rem; }
  .whatsapp-tooltip { display: none; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
========================================================= */
@media (max-width: 480px) {
  .section            { padding: 24px 0; padding-top: 28px; min-height: 100svh; }
  .section-title      { font-size: 1.3rem; }
  .section-header     { margin-bottom: 18px; }

  /* Hero */
  .hero               { height: 100svh; }

  /* About */
  .about-mvs          { gap: 10px; }
  .about-img-wrapper img { height: 220px; }
  .stats-row          { grid-template-columns: repeat(2, 1fr); }
  .stat-item          { padding: 20px 12px; }
  .stat-item .count   { font-size: 1.8rem; }

  /* Companies */
  .company-card-inner { padding: 22px 18px; }
  .company-logo-wrap  { width: 64px; height: 64px; margin-bottom: 18px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card  { padding: 18px 14px 14px; }

  /* Blog */
  .blog-body          { padding: 18px 16px; }
  .blog-img-wrap      { height: 180px; }

  /* Why */
  .why-card           { padding: 22px 18px; }
  .why-icon           { width: 52px; height: 52px; }

  /* Leadership */
  .leader-card        { padding: 20px 16px; gap: 24px; }
  .leader-photo-placeholder { max-width: 160px; }
  .leader-stats       { gap: 12px; }
  .leader-stat-num    { font-size: 1.4rem; }
  .leader-name        { font-size: 1.5rem; }

  /* CSR */
  .csr-highlight      { padding: 20px 16px; }
  .csr-pillar-card    { padding: 18px 14px; }

  /* Contact */
  .contact-form-wrap  { padding: 18px 14px; }
  .contact-info-card  { padding: 18px 14px; }
  .form-group         { margin-bottom: 18px; }

  /* Footer */
  .footer-top         { padding: 32px 0 24px; }
  .footer-grid        { gap: 24px; }
}

/* =========================================================
   RESPONSIVE — EXTRA SMALL PHONES (≤375px)
========================================================= */
@media (max-width: 375px) {
  .container          { padding: 0 14px; }

  .nav-logo           { font-size: 1.15rem; }
  .logo-dot           { font-size: 1.4rem; }

  .hero-title         { font-size: clamp(1.5rem, 9vw, 2rem); }
  .hero-subtitle      { font-size: 0.85rem; }
  .hero-badge         { font-size: 0.55rem; padding: 6px 10px; }

  .section-title      { font-size: 1.2rem; }
  .section            { padding: 20px 0; padding-top: 24px; }
  .section-header     { margin-bottom: 14px; }

  .stat-item          { padding: 16px 10px; }
  .stat-item .count   { font-size: 1.6rem; }

  .company-card-inner { padding: 18px 14px; }
  .blog-body          { padding: 14px 12px; }
  .why-card           { padding: 18px 14px; }

  .leader-card        { padding: 16px 12px; }
  .leader-name        { font-size: 1.3rem; }

  .footer-top         { padding: 28px 0 20px; }
  .back-to-top        { width: 40px; height: 40px; bottom: 16px; right: 12px; }
  .whatsapp-btn       { width: 44px; height: 44px; bottom: 68px; right: 12px; font-size: 1.2rem; }
}
