/* ================================================================
   READSEA SHIPPING LLP — Global Stylesheet
   ================================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@300;400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --red:          #E32020;
  --red-dark:     #B51A1A;
  --red-light:    #FFECEC;
  --orange:       #FF6A00;
  --grad:         linear-gradient(90deg, #E32020, #FF6A00);
  --dark:         #0D1F2D;
  --dark-2:       #162838;
  --body-bg:      #FFFFFF;
  --surface:      #F8FAFB;
  --surface-2:    #EEF3F8;
  --text:         #0D1F2D;
  --text-muted:   #637587;
  --text-light:   #9BA7B4;
  --border:       #E4EAF0;
  --border-dark:  rgba(255,255,255,0.10);
  --shadow-sm:    0 2px 12px rgba(13,31,45,0.08);
  --shadow-md:    0 8px 32px rgba(13,31,45,0.12);
  --shadow-lg:    0 20px 60px rgba(13,31,45,0.15);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --nav-h:        80px;
  --transition:   0.3s ease;
}

[data-theme="dark"] {
  --body-bg:      #07131D;
  --surface:      #0D1F2D;
  --surface-2:    #111E2B;
  --text:         #F5F7FA;
  --text-muted:   #9BA7B4;
  --text-light:   #637587;
  --border:       rgba(255,255,255,0.08);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.25);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.45);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  transition: background var(--transition), color var(--transition);
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

/* ── Selection ── */
::selection { background: var(--red); color: #fff; }

/* ================================================================
   UTILITIES
   ================================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; box-sizing: border-box; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--red); }
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .section-tag { justify-content: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,32,32,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.6);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

/* Gradient text */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* __ Fade up animation __ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.16s; }
.fade-up.d3 { transition-delay: 0.24s; }
.fade-up.d4 { transition-delay: 0.32s; }
.fade-up.d5 { transition-delay: 0.40s; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  width: 100%;
}
.nav .container {
  width: 100%;
}
[data-theme="dark"] .nav {
  background: rgba(7,19,29,0);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
[data-theme="dark"] .nav.scrolled {
  background: rgba(7,19,29,0.94);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  justify-content: space-between;
}

/* Nav links centered */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  flex: 1;
  justify-content: center;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { 
  height: 36px; 
  width: auto;
  object-fit: contain;
}
.nav-logo .logo-light { 
  display: block; 
}
.nav-logo .logo-dark { 
  display: none; 
}
[data-theme="dark"] .nav-logo .logo-light { 
  display: none; 
}
[data-theme="dark"] .nav-logo .logo-dark { 
  display: block; 
}

/* Links */
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.mode-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mode-btn:hover { border-color: var(--red); color: var(--red); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hamburger:hover {
  background: var(--red-light);
  border-color: var(--red);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  z-index: 9999;
  background: var(--body-bg);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 0 32px;
  overflow-y: auto;
}
[data-theme="dark"] .mobile-overlay {
  box-shadow: -4px 0 24px rgba(0,0,0,0.4);
}
.mobile-overlay.open { 
  right: 0;
}
.mobile-overlay a {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 28px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  display: block;
}
.mobile-overlay a:hover,
.mobile-overlay a.active { 
  color: var(--red);
  background: var(--surface);
  border-left-color: var(--red);
}
.mobile-overlay .btn { 
  font-family: 'Manrope', sans-serif; 
  font-size: 14px;
  margin: 20px 28px 0;
  width: calc(100% - 56px);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10000;
}
.mobile-close:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
/* Mobile overlay backdrop */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
}
.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ================================================================
   HERO (Home)
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--surface-2);
}
[data-theme="dark"] .hero {
  background: linear-gradient(160deg, #07131D 0%, #0D1F2D 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - var(--nav-h));
  padding: 60px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.hero-tag span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .red { color: var(--red); }
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 38px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.btn-play:hover { color: var(--red); }
.play-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text);
  transition: all var(--transition);
}
.btn-play:hover .play-circle {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* Hero image right side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-clip {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
  border-radius: 0 80px 0 80px;
  box-shadow: var(--shadow-lg);
}
.hero-img-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
/* Route dot overlay */
.hero-route-overlay {
  position: absolute;
  top: -20px; right: -20px;
  width: 160px; height: 160px;
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: -16px; left: -24px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: 0 12px 32px rgba(227,32,32,0.4);
}
.hero-badge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 3px;
}
.hero-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.85;
  text-transform: uppercase;
}
/* dot map bg decoration */
.hero-dots {
  position: absolute;
  bottom: 40px; right: -40px;
  width: 120px; height: 120px;
  pointer-events: none;
  opacity: 0.25;
}
[data-theme="dark"] .hero-dots { opacity: 0.12; }

/* ── Hero dots map (world) ── */
.hero-worldmap {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.07;
}
[data-theme="dark"] .hero-worldmap { opacity: 0.05; }
.hero-worldmap svg { width: 100%; height: 100%; }

/* ── Hero wave bottom ── */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
}
.hero-wave svg { display: block; }

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--dark);
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(227,32,32,0.15);
  border: 2px solid rgba(227,32,32,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 24px; height: 24px; color: var(--red); }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num sup {
  font-size: 20px;
  vertical-align: super;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.stat-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.services-intro { position: sticky; top: 120px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(227,32,32,0.2);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-num {
  position: absolute;
  top: 20px; right: 22px;
  font-size: 40px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  transition: color var(--transition);
}
[data-theme="dark"] .service-card-num { color: rgba(255,255,255,0.05); }
.service-card:hover .service-card-num { color: rgba(227,32,32,0.08); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}
[data-theme="dark"] .service-icon { background: rgba(227,32,32,0.12); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 10px; }

/* Full-width service cards (for services page) */
.service-card-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 36px;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card-full:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(227,32,32,0.2);
}
.service-card-full .service-icon { width: 70px; height: 70px; border-radius: 18px; margin: 0; }
.service-card-full .service-icon svg { width: 30px; height: 30px; }
.service-card-full h3 { font-size: 24px; margin-bottom: 10px; }
.service-card-full p { font-size: 15px; }
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.service-feature-tag {
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 220px; height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--body-bg);
  box-shadow: var(--shadow-md);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(227,32,32,0.4);
  min-width: 100px;
}
.about-badge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  opacity: 0.85;
  text-transform: uppercase;
}
.about-content { }
.about-check-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.about-check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-check-icon svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2.5; fill: none; }

/* ================================================================
   NETWORK SECTION
   ================================================================ */
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.network-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.region-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.region-card:hover {
  border-color: rgba(227,32,32,0.25);
  box-shadow: var(--shadow-sm);
}
.region-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.region-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.region-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.network-map-wrap {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
}
.network-map-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(227,32,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ================================================================
   TESTIMONIALS / WHY US
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
[data-theme="dark"] .why-icon { background: rgba(227,32,32,0.12); }
.why-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(227,32,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}
.cta-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-icon-wrap svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 1.5; }
.cta-left { display: flex; align-items: center; gap: 22px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--red-light);
  border: 1px solid rgba(227,32,32,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
[data-theme="dark"] .contact-detail-icon { background: rgba(227,32,32,0.12); }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.8; }
.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-detail-text span {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.contact-form h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--body-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,32,32,0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23637587' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; margin-top: 8px; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--surface-2);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--body-bg), transparent);
}
[data-theme="dark"] .page-hero::after {
  background: linear-gradient(to top, var(--body-bg), transparent);
}
.page-hero-glow {
  position: absolute;
  top: 50%; right: 10%;
  transform: translateY(-50%);
  width: 500px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(227,32,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { font-size: 10px; }
.breadcrumb-current { color: var(--red); }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 66px);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 18px;
  transition: color var(--transition);
}
.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
  transition: color var(--transition);
}

[data-theme="dark"] .page-hero {
  background: linear-gradient(160deg, #07131D 0%, #0D1F2D 100%);
}
[data-theme="dark"] .page-hero h1 {
  color: #ffffff;
}
[data-theme="dark"] .page-hero p {
  color: var(--text-muted);
}
[data-theme="dark"] .breadcrumb {
  color: rgba(255,255,255,0.45);
}
[data-theme="dark"] .breadcrumb a {
  color: rgba(255,255,255,0.45);
}
[data-theme="dark"] .breadcrumb a:hover {
  color: rgba(255,255,255,0.8);
}

/* ================================================================
   TEAM (About Page)
   ================================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-img {
  width: 100%; height: 220px;
  overflow: hidden;
  background: var(--surface-2);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 22px 20px; }
.team-info h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-info span { font-size: 12.5px; color: var(--red); font-weight: 600; display: block; margin-bottom: 12px; }
.team-info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ================================================================
   TIMELINE (About)
   ================================================================ */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}
[data-theme="dark"] .timeline-item::before { box-shadow: 0 0 0 3px rgba(227,32,32,0.2); }
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.10em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.timeline-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================================================================
   VALUES (About)
   ================================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border-top: 3px solid var(--red);
}
.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   PARTNERS / CERTIFICATIONS
   ================================================================ */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.partner-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.partner-logo:hover { opacity: 1; }

.partner-logo-item {
  flex: 0 1 auto;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  min-height: 60px;
  min-width: 120px;
  transition: all var(--transition);
  cursor: pointer;
}

.partner-logo-box:hover {
  border-color: var(--red);
  background: rgba(227, 32, 32, 0.05);
  color: var(--text);
  transform: translateY(-2px);
}

/* ================================================================
   SUCCESS TOAST
   ================================================================ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: #1A7A3C;
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 18px 0 24px;
  max-width: 260px;
}
.footer-brand img { 
  height: 42px; 
  width: auto;
}
.footer-brand .logo-light { 
  display: block; 
}
.footer-brand .logo-dark { 
  display: none; 
}
[data-theme="dark"] .footer-brand .logo-light { 
  display: none; 
}
[data-theme="dark"] .footer-brand .logo-dark { 
  display: block; 
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
  color: rgba(255,255,255,0.85);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
.fc-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  margin-top: 1px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  font-size: 12.5px;
  color: rgba(255,255,255,0.30);
}
.footer-bottom-right {
  display: flex;
  gap: 24px;
}
.footer-bottom-right a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.30);
  transition: color var(--transition);
}
.footer-bottom-right a:hover { color: rgba(255,255,255,0.65); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(36px, 7vw, 56px); }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding: 48px 0 60px; }
  .services-layout { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
  .stat-item:nth-child(even) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-grid,
  .network-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { display: none; }
  .about-badge { right: 12px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; gap: 28px; text-align: center; }
  .cta-left { flex-direction: column; }
  .cta-actions { justify-content: center; }
  .service-card-full { grid-template-columns: 1fr; }
  .service-card-full .btn { display: none; }
}
@media (max-width: 700px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 16px; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .mode-btn { display: flex; }
  .nav-right { gap: 8px; }
  .hamburger { 
    width: 38px; 
    height: 38px; 
    padding: 0;
  }
  .mode-btn { width: 38px; height: 38px; }
  .nav { z-index: 10000; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 72px 0; }
  .network-regions { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: var(--nav-h); }
  .hero-grid { min-height: auto; padding: 36px 0 48px; }
  .hero-worldmap { display: none; }
  svg[viewBox*="1400"] { max-width: 100%; }
  .cta-banner .cta-inner { padding: 32px 24px; }
  .cta-banner h2 { font-size: 22px; }

  /* Mobile overflow safety */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .page-hero p { font-size: 15px; }
  .page-hero-glow { width: 300px; height: 240px; right: -40px; }
  .about-img-main { height: 280px; }
  .about-img-secondary { display: none; }
  .about-badge { right: 12px; top: 12px; padding: 12px 14px; }
  .about-badge-num { font-size: 22px; }
  .hero-badge { left: 0; bottom: -10px; padding: 16px 18px; }
  .hero-badge-num { font-size: 24px; }
  .showcase-item { padding: 28px 20px; gap: 24px; }
  .stat-num { font-size: 32px; }
  .section-title { font-size: clamp(24px, 5vw, 36px); }
  .timeline-grid, .value-grid { grid-template-columns: 1fr !important; }

  /* Force-clip any wide grids to viewport */
  section, footer, main { max-width: 100vw; overflow-x: hidden; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] { 
    grid-template-columns: 1fr !important; 
    gap: 32px !important;
  }
}
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 36px; }
  .contact-form { padding: 28px 22px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PREMIUM SERVICE SHOWCASE
   ================================================================ */
.service-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.showcase-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition: all var(--transition);
  overflow: hidden;
}
.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227,32,32,0.18);
}
.showcase-image-col {
  position: relative;
  width: 100%;
}
.showcase-image-wrap {
  position: relative;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface-2);
}
.showcase-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-item:hover .showcase-image-wrap img {
  transform: scale(1.06);
}
.showcase-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,45,0.25), transparent);
  pointer-events: none;
}
.showcase-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.showcase-item .service-icon {
  margin-bottom: 24px;
}
.showcase-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}
.showcase-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.showcase-item:nth-child(even) .showcase-image-col {
  order: -1;
}

@media (max-width: 900px) {
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .showcase-image-wrap {
    height: 240px;
  }
  .showcase-item:nth-child(even) .showcase-image-col {
    order: 0;
  }
}

