/* ============================================================
   CARGO DUTY AGENCIES â€” Premium Logistics Website CSS
   ============================================================ */

/* ─── CSS Variables ─── */
:root {
  --blue-500: #0EA5E9;
  --blue-700: #0369A1;
  --blue-900: #0C4A6E;
  --purple-500: #8B5CF6;
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --green-500: #10B981;
  --red-500: #EF4444;

  --bg-dark: #060B14;
  --bg-dark-2: #0A1628;
  --bg-dark-3: #0F2040;
  --surface: #0D1B2E;
  --surface-2: #112240;
  --surface-3: #162B4A;
  --border: rgba(14, 165, 233, 0.15);
  --border-light: rgba(255,255,255,0.06);

  --text-primary: #F0F8FF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #8B5CF6 100%);
  --gradient-blue: linear-gradient(135deg, #0EA5E9 0%, #0369A1 100%);
  --gradient-dark: linear-gradient(135deg, #0A1628 0%, #0F2040 100%);
  --glow-blue: 0 0 40px rgba(14, 165, 233, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.5);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 76px;
  --nav-bg: rgba(6, 11, 20, 0.95);
}

/* ─── Light Theme Overrides ─── */
html[data-theme="light"] {
  --bg-dark: #F8FAFC;
  --bg-dark-2: #F1F5F9;
  --bg-dark-3: #E2E8F0;
  --surface: #FFFFFF;
  --surface-2: #F8FAFC;
  --surface-3: #F1F5F9;
  --border: rgba(14, 165, 233, 0.22);
  --border-light: rgba(15, 23, 42, 0.08);

  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #475569;

  --gradient-dark: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  --glow-blue: 0 0 40px rgba(14, 165, 233, 0.08);
  --nav-bg: rgba(255, 255, 255, 0.95);
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 16px 48px rgba(15, 23, 42, 0.12);
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* â”€â”€ Container â”€â”€ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* â”€â”€ Utility â”€â”€ */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* â”€â”€ Buttons â”€â”€ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.5);
}
.btn-primary:hover::after { opacity: 0.1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* â”€â”€ Section Shared â”€â”€ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-tag--light {
  color: white;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.06);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.nav-cta { font-size: 0.875rem; padding: 10px 24px; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blue-500);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
  transform: translateY(-1px);
}
.theme-toggle svg {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

/* Default / Dark Theme: Hide moon icon, show sun icon to switch to light mode */
.theme-toggle .moon-icon {
  transform: rotate(-90deg) scale(0);
  opacity: 0;
  position: absolute;
}
.theme-toggle .sun-icon {
  transform: rotate(0) scale(1);
  opacity: 1;
}

/* Light Theme overrides for toggle icon */
html[data-theme="light"] .theme-toggle .sun-icon {
  transform: rotate(90deg) scale(0);
  opacity: 0;
  position: absolute;
}
html[data-theme="light"] .theme-toggle .moon-icon {
  transform: rotate(0) scale(1);
  opacity: 1;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    135deg,
    rgba(6,11,20,0.92) 0%,
    rgba(6,11,20,0.75) 50%,
    rgba(6,11,20,0.88) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(14,165,233,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 80px;
  animation: heroFadeIn 1s ease forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--amber-400);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: heroFadeIn 1s 0.2s both;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-500);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: heroFadeIn 1s 0.3s both;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,248,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: heroFadeIn 1s 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: heroFadeIn 1s 0.5s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 40px;
  animation: heroFadeIn 1s 0.6s both;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}
.hstat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-500);
}
.hstat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.hstat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s infinite;
}
.scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-bar {
  background: var(--gradient-primary);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track { overflow: hidden; white-space: nowrap; }
.ticker-content {
  display: inline-flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
}
.ticker-content span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(14,165,233,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: var(--surface-2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: linear-gradient(135deg, rgba(14,165,233,0.12) 0%, rgba(139,92,246,0.12) 100%);
  border-color: rgba(14, 165, 233, 0.3);
  grid-column: span 1;
}
.service-card--featured::before { transform: scaleX(1); }

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  filter: blur(20px);
}
.service-card--featured:hover .card-glow { opacity: 0.3; }

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-2deg);
}
.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-list {
  margin-bottom: 24px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: 'â†’';
  color: var(--blue-500);
  font-size: 0.75rem;
}
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-500);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: white; gap: 8px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--bg-dark-2);
}
.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;
  box-shadow: var(--shadow-hover);
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--bg-dark-2);
  box-shadow: var(--shadow-hover);
}
.about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-img-secondary:hover img { transform: scale(1.06); }

.about-badge-float {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(14,165,233,0.4);
  animation: float 4s ease-in-out infinite;
}
.about-badge-float strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: white;
}
.about-badge-float span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-content { padding-bottom: 40px; }
.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feat-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.about-feat p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-dark-3);
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(14,165,233,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139,92,246,0.12) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.stat-card:hover {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-4px);
}
.stat-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-500);
  display: inline;
}
.stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-500);
  display: inline;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 120px 0;
  background: var(--bg-dark);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.process-step:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.process-step:hover::before { transform: scaleX(1); }
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(14,165,233,0.12);
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.process-arrow {
  font-size: 1.8rem;
  color: var(--blue-500);
  flex-shrink: 0;
  align-self: center;
  padding: 0 8px;
  opacity: 0.4;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--bg-dark-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.testi-card--featured {
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(139,92,246,0.1));
  border-color: rgba(14,165,233,0.3);
}
.testi-stars {
  color: var(--amber-500);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-text::before { content: '"'; }
.testi-text::after { content: '"'; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(14,165,233,0.3);
  background: var(--surface-2);
}
.contact-icon {
  font-size: 1.4rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-500);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.contact-item a:hover { color: var(--blue-500); }

.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

/* â”€â”€ Form â”€â”€ */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}
.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  color: #34D399;
  font-size: 0.9rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark-2); }
.footer-top { padding: 80px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 32px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0 24px;
}
.footer-cert { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.footer-icon {
  display: inline-block;
  width: 20px;
  margin-right: 8px;
  text-align: center;
}
.footer-col a {
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--blue-500); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blue-500); }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.03); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,11,20,0.94) 0%,
    rgba(6,11,20,0.8) 50%,
    rgba(6,11,20,0.9) 100%
  );
}
.page-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(14,165,233,0.15) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  animation: heroFadeIn 0.8s ease both;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--blue-500); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--text-muted); }
.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(240,248,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   UTILITY SECTION PADS & BGs
   ============================================================ */
.section-pad { padding: 100px 0; }
.bg-dark   { background: var(--bg-dark); }
.bg-dark-2 { background: var(--bg-dark-2); }
.bg-dark-3 { background: var(--bg-dark-3); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 0 24px;
  margin: 0;
  position: relative;
}
.cta-inner {
  background: linear-gradient(135deg, rgba(14,165,233,0.15) 0%, rgba(139,92,246,0.15) 100%);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: var(--radius-xl);
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(14,165,233,0.1) 0%, transparent 60%);
}
.cta-text { position: relative; }
.cta-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 1rem;
  color: var(--text-secondary);
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   SERVICE DETAILS (services.html)
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}
.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }
.service-detail--featured { background: rgba(14,165,233,0.04); border-radius: var(--radius-lg); padding: 60px 40px; border: 1px solid rgba(14,165,233,0.1); }

.service-detail-icon {
  width: 96px; height: 96px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
}
.service-detail-content { flex: 1; }
.service-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--blue-500);
  display: block;
  margin-bottom: 12px;
}
.service-detail-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.service-detail-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}
.detail-item:hover {
  border-color: rgba(14,165,233,0.3);
  background: var(--surface-2);
}
.detail-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.detail-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.detail-item p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }
.service-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0 0 0 0;
}

/* ============================================================
   MISSION / VISION CARDS (about.html)
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(14,165,233,0.3); }
.mv-card--featured {
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(139,92,246,0.12));
  border-color: rgba(14,165,233,0.3);
}
.mv-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mv-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.mv-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   TIMELINE (about.html)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-500), var(--purple-500));
  opacity: 0.4;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 24px 1fr;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-500);
  text-align: right;
  padding-top: 2px;
}
.timeline-dot {
  width: 16px; height: 16px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(14,165,233,0.2);
  flex-shrink: 0;
}
.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}
.timeline-content:hover { border-color: rgba(14,165,233,0.3); background: var(--surface-2); }
.timeline-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.timeline-content p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* ============================================================
   TEAM GRID (about.html)
   ============================================================ */
.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-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(14,165,233,0.3); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}
.team-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.team-card span { display: block; font-size: 0.78rem; color: var(--blue-500); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   ADVANTAGES GRID (why-us.html)
   ============================================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.advantage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.advantage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(14,165,233,0.3); }
.advantage-num {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(14,165,233,0.08);
  position: absolute;
  top: 8px; right: 16px;
  line-height: 1;
}
.advantage-icon { font-size: 2rem; margin-bottom: 16px; }
.advantage-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.advantage-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   CERTIFICATIONS (why-us.html)
   ============================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { transform: translateY(-4px); border-color: rgba(14,165,233,0.3); box-shadow: var(--shadow-hover); }
.cert-logo { font-size: 2.4rem; margin-bottom: 12px; }
.cert-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.cert-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   PROCESS DETAIL (process.html)
   ============================================================ */
.process-intro { text-align: center; margin-bottom: 80px; }
.process-detail {
  display: grid;
  grid-template-columns: 80px 100px 1fr;
  gap: 36px;
  align-items: flex-start;
  padding: 48px 0;
  position: relative;
}
.process-detail--alt { background: rgba(14,165,233,0.03); border-radius: var(--radius-lg); padding: 48px 36px; border: 1px solid rgba(14,165,233,0.07); }
.process-detail--last .process-connector { display: none; }
.process-detail-num {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(14,165,233,0.1);
  line-height: 1;
  text-align: right;
  padding-top: 8px;
}
.process-detail-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.process-big-icon {
  font-size: 3rem;
  width: 80px; height: 80px;
  background: var(--surface);
  border: 2px solid rgba(14,165,233,0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(14,165,233,0.15);
}
.process-connector {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(to bottom, rgba(14,165,233,0.4), rgba(14,165,233,0.05));
  margin: 8px 0;
}
.process-detail-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.process-detail-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.process-detail-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.pdi {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pdi-check {
  width: 22px; height: 22px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34D399;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION (process.html)
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(14,165,233,0.4); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { background: rgba(14,165,233,0.05); }
.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--blue-500);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   CONTACT CARDS (contact.html)
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(14,165,233,0.3); }
.contact-card--featured {
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(139,92,246,0.1));
  border-color: rgba(14,165,233,0.3);
}
.contact-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.contact-card h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 14px; }
.contact-card-link {
  display: block;
  font-size: 0.85rem;
  color: var(--blue-500);
  font-weight: 600;
  margin-bottom: 6px;
  transition: var(--transition);
}
.contact-card-link:hover { color: white; }

/* ============================================================
   CONTACT SIDEBAR (contact.html)
   ============================================================ */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.hours-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.hours-row span { color: var(--text-secondary); }
.hours-row strong { color: var(--text-primary); }
.sidebar-note { font-size: 0.82rem; color: var(--text-secondary); }
.office-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.office-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.office-item strong { display: block; font-size: 0.88rem; margin-bottom: 4px; color: var(--text-primary); }
.office-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* â”€â”€ Back to Top â”€â”€ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(14,165,233,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(14,165,233,0.6);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .mv-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 80px 1fr; gap: 28px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-detail { grid-template-columns: 60px 80px 1fr; gap: 20px; }
  .cta-inner { padding: 48px 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; background: var(--bg-dark-2); padding: 24px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; gap: 16px; }
  .process-arrow { transform: rotate(90deg); align-self: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 24px; }
  .hstat-divider { width: 40px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  /* new page components */
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 20px; }
  .service-detail-icon { width: 72px; height: 72px; }
  .service-detail--reverse { direction: ltr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-detail { grid-template-columns: 1fr; gap: 16px; }
  .process-detail-num { display: none; }
  .process-detail-icon-wrap { flex-direction: row; align-items: center; }
  .process-connector { display: none; }
  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 52px 20px 1fr; gap: 12px; }
  .timeline-year { font-size: 0.8rem; }
  .cta-inner { flex-direction: column; padding: 40px 28px; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { order: -1; }
  .page-hero { min-height: 300px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   TRUSTED PARTNERS & GLOBAL NETWORK
   ============================================================ */
.partner-category {
  margin-top: 48px;
}
.partner-cat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.partner-cat-title::before,
.partner-cat-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  max-width: 150px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}
.partner-logo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.partner-logo-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.logo-img-wrap {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.partner-logo-img {
  max-width: 85%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.partner-logo-card:hover .partner-logo-img {
  filter: brightness(1) invert(0) opacity(1);
  transform: scale(1.08);
}
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  opacity: 0.8;
  text-align: center;
  transition: opacity 0.3s ease;
}
.partner-logo-card:hover .logo-name {
  opacity: 1;
}

/* Partner Brand-specific Glow Effects */
.partner-logo-card.glow-cosco:hover { border-color: #0ea5e9; box-shadow: 0 12px 30px rgba(14, 165, 233, 0.25); }
.partner-logo-card.glow-msc:hover { border-color: #fbbf24; box-shadow: 0 12px 30px rgba(251, 191, 36, 0.25); }
.partner-logo-card.glow-pil:hover { border-color: #ef4444; box-shadow: 0 12px 30px rgba(239, 68, 68, 0.25); }
.partner-logo-card.glow-maersk:hover { border-color: #38bdf8; box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25); }
.partner-logo-card.glow-kq:hover { border-color: #10b981; box-shadow: 0 12px 30px rgba(16, 185, 129, 0.25); }
.partner-logo-card.glow-emirates:hover { border-color: #e11d48; box-shadow: 0 12px 30px rgba(225, 29, 72, 0.25); }
.partner-logo-card.glow-qatar:hover { border-color: #be123c; box-shadow: 0 12px 30px rgba(190, 18, 60, 0.25); }
.partner-logo-card.glow-signon:hover { border-color: #06b6d4; box-shadow: 0 12px 30px rgba(6, 182, 212, 0.25); }
.partner-logo-card.glow-kephis:hover { border-color: #22c55e; box-shadow: 0 12px 30px rgba(34, 197, 94, 0.25); }
.partner-logo-card.glow-kebs:hover { border-color: #3b82f6; box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25); }

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

/* ─── Light Mode Overrides for Specific Components ─── */
html[data-theme="light"] .navbar.scrolled .logo-main,
html[data-theme="light"] .footer .logo-main {
  color: var(--text-primary);
}
html[data-theme="light"] .navbar.scrolled .hamburger span {
  background: var(--text-primary);
}
html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link.active {
  color: var(--blue-500);
  background: rgba(14, 165, 233, 0.06);
}
html[data-theme="light"] .btn-ghost {
  color: var(--text-primary);
  border-color: rgba(15, 23, 42, 0.15);
  background: rgba(15, 23, 42, 0.04);
}
html[data-theme="light"] .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: var(--blue-500);
  color: var(--blue-500);
}
html[data-theme="light"] .partner-logo-card {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.04);
}
html[data-theme="light"] .partner-logo-card:hover {
  background: #ffffff;
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .partner-logo-img {
  filter: grayscale(1) contrast(0.8) opacity(0.65);
}
html[data-theme="light"] .partner-logo-card:hover .partner-logo-img {
  filter: none opacity(1);
}
html[data-theme="light"] .partner-cat-title::before,
html[data-theme="light"] .partner-cat-title::after {
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
}
html[data-theme="light"] .timeline::before {
  opacity: 0.15;
}
html[data-theme="light"] .social-link:hover {
  color: white;
}
html[data-theme="light"] .stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
html[data-theme="light"] .process-detail-num {
  color: rgba(14, 165, 233, 0.25);
}

/* Transparent Navbar state over dark hero in Light Mode */
@media (min-width: 769px) {
  html[data-theme="light"] .navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.8);
  }
  html[data-theme="light"] .navbar:not(.scrolled) .nav-link:hover,
  html[data-theme="light"] .navbar:not(.scrolled) .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
  }
}
html[data-theme="light"] .navbar:not(.scrolled) .logo-main {
  color: white;
}
html[data-theme="light"] .navbar:not(.scrolled) .hamburger span {
  background: white;
}
html[data-theme="light"] .navbar:not(.scrolled) .theme-toggle {
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}
html[data-theme="light"] .navbar:not(.scrolled) .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
html[data-theme="light"] .service-link:hover {
  color: #000000;
}
html[data-theme="light"] .contact-card-link:hover {
  color: #000000;
}




