/* ===== VARIABLES ===== */
:root {
  --accent:      #FF6B35;
  --accent-dark: #E05520;
  --accent-2:    #FFAA00;

  /* Light backgrounds */
  --bg:          #FFFFFF;
  --bg-2:        #F5F7FA;
  --bg-3:        #EEF1F6;

  /* Dark (hero / stats / footer) */
  --dark:        #0B0F18;
  --dark-2:      #131925;

  /* Text on light */
  --text:        #0D1117;
  --text-2:      rgba(13,17,23,0.58);
  --text-3:      rgba(13,17,23,0.32);

  /* Text on dark */
  --tw:          #FFFFFF;
  --tw-2:        rgba(255,255,255,0.62);
  --tw-3:        rgba(255,255,255,0.32);

  --border:      rgba(0,0,0,0.09);
  --border-dark: rgba(255,255,255,0.09);
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:   0 10px 44px rgba(0,0,0,0.12);
  --gradient:    linear-gradient(135deg, #FF6B35 0%, #FFAA00 100%);
  --radius:      10px;
  --radius-lg:   18px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:       72px;
  --topbar-h:    38px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.text-accent { color: var(--accent); }

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.section-header p { color: var(--text-2); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,53,0.38); }
.btn-primary.large { padding: 16px 44px; font-size: 1rem; border-radius: 100px; }
.btn-primary.full { width: 100%; justify-content: center; border-radius: var(--radius); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s var(--ease);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: white; transform: translateY(-2px); }

/* ===== TOP BAR ===== */
#topbar {
  height: var(--topbar-h);
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 200;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left, .topbar-right { display: flex; }
.topbar-left a, .topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  height: var(--topbar-h);
  color: rgba(255,255,255,0.4);
  font-size: 0.71rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
  white-space: nowrap;
}
.topbar-left a:first-child { border-left: 1px solid rgba(255,255,255,0.05); }
.topbar-right a { border-left: 1px solid rgba(255,255,255,0.05); border-right: none; }
.topbar-left a i, .topbar-right a i { color: var(--accent); font-size: 0.62rem; }
.topbar-left a:hover, .topbar-right a:hover { color: rgba(255,255,255,0.85); }
@media (max-width: 900px) { .topbar-left a:nth-child(n+3) { display: none; } }
@media (max-width: 600px) { .topbar-left { display: none; } }

/* ===== NAVBAR (LIGHT) ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.25s, transform 0.25s;
}
.logo:hover .logo-img { opacity: 0.85; transform: scale(1.02); }
.footer-logo { height: 46px; filter: brightness(10); }

.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px;
  color: var(--text-2);
  font-size: 0.87rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-2); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.btn-cta:hover { background: var(--accent-dark); box-shadow: 0 4px 20px rgba(255,107,53,0.4); transform: translateY(-1px); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu.open { max-height: 320px; }
.mobile-menu a {
  display: block; padding: 14px 28px;
  color: var(--text-2); font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid var(--border); transition: all 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); padding-left: 36px; }
.mobile-menu .mobile-cta { color: var(--accent); font-weight: 700; }

/* ===== HERO (DARK + VIDEO) ===== */
#hero {
  position: relative;
  height: calc(100vh - var(--topbar-h));
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(11,15,24,0.92) 0%,
    rgba(11,15,24,0.65) 55%,
    rgba(11,15,24,0.35) 100%
  );
  z-index: 1;
}
/* Animated CSS video fallback (port / cargo scene) */
.hero-fallback {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 55% 45% at 15% 65%, rgba(255,80,0,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 90% 70% at 72% 35%, rgba(8,24,60,0.6) 0%, transparent 70%),
    linear-gradient(165deg, #07080E 0%, #0B1520 30%, #081018 65%, #050A0F 100%);
  animation: heroFallback 14s ease-in-out infinite alternate;
}
@keyframes heroFallback {
  0%   { filter: brightness(0.9) hue-rotate(0deg); }
  100% { filter: brightness(1.1) hue-rotate(5deg); }
}
/* Light beam (crane/port light) */
.hero-fallback::before {
  content: '';
  position: absolute;
  width: 3px; height: 100%;
  top: 0; left: 72%;
  background: linear-gradient(to bottom, rgba(255,200,80,0.12), transparent 60%);
  transform-origin: top center;
  animation: lightBeam 10s ease-in-out infinite alternate;
  box-shadow: 0 0 60px 30px rgba(255,170,50,0.05);
}
@keyframes lightBeam {
  0%   { transform: rotate(-8deg); opacity: 0.5; }
  100% { transform: rotate(4deg);  opacity: 1; }
}
/* Water shimmer at bottom */
.hero-fallback::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px, transparent 3px,
    rgba(30,60,120,0.07) 3px, rgba(30,60,120,0.07) 4px
  );
  animation: waterShimmer 5s ease-in-out infinite alternate;
}
@keyframes waterShimmer {
  from { opacity: 0.4; transform: scaleX(1)    translateX(0); }
  to   { opacity: 0.7; transform: scaleX(1.015) translateX(-8px); }
}

#particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.hero-content {
  position: relative; z-index: 3;
  max-width: 760px;
  padding: 0 28px 72px;
  margin: 0 auto 0 max(28px, calc(50vw - 600px));
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 100px;
  color: rgba(255,190,140,0.95);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: white;
}
.hero-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero bottom modes bar */
.hero-modes {
  position: relative; z-index: 3;
  display: flex;
  background: rgba(11,15,24,0.88);
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
}
.hmode {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: default;
}
.hmode:last-child { border-right: none; }
.hmode i { color: var(--accent); font-size: 1rem; }
.hmode:hover { color: white; background: rgba(255,107,53,0.08); }

/* ===== ABOUT (LIGHT) ===== */
#about { padding: 100px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-wrap { position: relative; }
.about-img-main {
  height: 460px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 80% 50% at 50% 70%, rgba(20,50,100,0.4) 0%, transparent 70%),
    linear-gradient(160deg, #0A1020 0%, #12202E 50%, #0D1828 100%);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-main::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 28px, rgba(255,107,53,0.04) 28px, rgba(255,107,53,0.04) 30px);
}
.about-img-main::after {
  content: '\f21a';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 6rem; color: rgba(255,107,53,0.1);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 116px; height: 116px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(255,107,53,0.45);
}
.badge-num { font-size: 2.2rem; font-weight: 900; color: white; line-height: 1; }
.badge-txt { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.85); text-align: center; line-height: 1.3; }

.about-text-col h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 800; line-height: 1.2; margin-bottom: 18px; color: var(--text); }
.about-text-col > p { color: var(--text-2); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.about-points { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.apoint { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--text-2); }
.apoint i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ===== SERVICES (LIGHT) ===== */
#services { padding: 100px 0; background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow);
}
.service-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.12);
}
.svc-img {
  height: 180px;
  position: relative; overflow: hidden;
}
.svc-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
}
.aerien   { background: linear-gradient(135deg, #0A1828 0%, #1A3060 50%, #0D1520 100%); }
.aerien::before   { content: '\f072'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4.5rem; color: rgba(255,107,53,0.3); }
.maritime { background: linear-gradient(135deg, #051020 0%, #0D2540 50%, #071520 100%); }
.maritime::before { content: '\f21a'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4.5rem; color: rgba(59,130,246,0.3); }
.routier  { background: linear-gradient(135deg, #100D0A 0%, #2A1800 50%, #150F00 100%); }
.routier::before  { content: '\f0d1'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4.5rem; color: rgba(255,170,0,0.3); }
.fluvial  { background: linear-gradient(135deg, #051510 0%, #0A2820 50%, #051510 100%); }
.fluvial::before  { content: '\f773'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4.5rem; color: rgba(34,197,94,0.25); }

.svc-body { padding: 24px 26px 26px; }
.svc-icon {
  width: 46px; height: 46px;
  background: rgba(255,107,53,0.08);
  border: 1.5px solid rgba(255,107,53,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.service-card:hover .svc-icon { background: var(--accent); color: white; border-color: var(--accent); }
.svc-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.svc-body p { color: var(--text-2); font-size: 0.87rem; line-height: 1.7; margin-bottom: 14px; }
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.svc-tags span { padding: 3px 10px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 100px; font-size: 0.72rem; color: var(--text-2); font-weight: 500; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 0.82rem; font-weight: 600; transition: gap 0.2s; }
.svc-link:hover { gap: 13px; }

.extra-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  justify-content: center;
  box-shadow: var(--shadow);
}
.extra-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-2);
  transition: all 0.2s;
}
.extra-item i { color: var(--accent); font-size: 0.82rem; }
.extra-item:hover { border-color: rgba(255,107,53,0.3); color: var(--text); background: rgba(255,107,53,0.05); }

/* ===== STATS (DARK / ORANGE) ===== */
#stats {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background: var(--dark);
}
.stats-bg-video { position: absolute; inset: 0; }
.stats-bg-video video { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.stats-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FF5500 0%, #FF7A00 50%, #E04500 100%);
  opacity: 0.92;
}
.stats-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E");
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-icon { font-size: 1.5rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.stat-number {
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 900; color: white; line-height: 1;
  font-family: 'Inter', sans-serif;
}
.stat-suffix { font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,0.8); }
.stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.75); font-weight: 500; margin-top: 4px; }

/* ===== PROCESS (LIGHT) ===== */
#process { padding: 100px 0; background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: start;
  margin-bottom: 64px;
}
.process-step { text-align: center; padding: 20px 16px; }
.pstep-num { font-size: 5rem; font-weight: 900; color: rgba(255,107,53,0.08); line-height: 1; margin-bottom: -18px; font-family: 'Inter', sans-serif; }
.pstep-icon {
  width: 72px; height: 72px;
  background: rgba(255,107,53,0.07);
  border: 2px solid rgba(255,107,53,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent);
  margin: 0 auto 18px;
  position: relative; z-index: 1;
  transition: all 0.35s var(--ease);
}
.process-step:hover .pstep-icon { background: var(--accent); color: white; border-color: var(--accent); box-shadow: 0 0 32px rgba(255,107,53,0.35); transform: scale(1.1); }
.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.process-step p { color: var(--text-2); font-size: 0.87rem; line-height: 1.75; }
.pstep-arrow { display: flex; align-items: center; justify-content: center; padding-top: 80px; color: rgba(255,107,53,0.25); font-size: 1.2rem; }

.values-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.val {
  padding: 30px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}
.val:hover { border-color: rgba(255,107,53,0.25); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.val i { font-size: 1.7rem; color: var(--accent); margin-bottom: 12px; display: block; }
.val h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.val p { color: var(--text-2); font-size: 0.84rem; line-height: 1.7; }

/* ===== BANNER (DARK) ===== */
#banner { position: relative; padding: 120px 0; overflow: hidden; }
.banner-bg { position: absolute; inset: 0; }
.banner-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,15,24,0.93) 0%, rgba(11,15,24,0.7) 55%, rgba(11,15,24,0.88) 100%);
}
.banner-fallback {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #07080E 0%, #0C1825 40%, #0A1520 100%);
}
.banner-content { position: relative; z-index: 1; max-width: 660px; }
.banner-content .section-tag { color: rgba(255,200,140,0.9); border-color: rgba(255,107,53,0.3); background: rgba(255,107,53,0.12); }
.banner-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; margin: 12px 0 16px; color: white; }
.banner-content p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 32px; }

/* ===== CONTACT (LIGHT) ===== */
#contact { padding: 100px 0; background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 72px; align-items: start; }

.contact-info h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; color: var(--text); }
.contact-info > p { color: var(--text-2); font-size: 0.93rem; line-height: 1.8; margin-bottom: 32px; }

.cinfo-list { display: flex; flex-direction: column; gap: 12px; }
.cinfo-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow);
}
a.cinfo-item:hover { border-color: rgba(255,107,53,0.35); transform: translateX(5px); box-shadow: 0 4px 20px rgba(255,107,53,0.1); }
.cinfo-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,107,53,0.1);
  border: 1.5px solid rgba(255,107,53,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.9rem;
}
.cinfo-item > div { display: flex; flex-direction: column; gap: 1px; }
.cinfo-item strong { font-size: 0.68rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.cinfo-item span { font-size: 0.88rem; font-weight: 600; color: var(--text); }

.contact-person {
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px; padding: 15px 18px;
  background: rgba(59,130,246,0.05);
  border: 1.5px solid rgba(59,130,246,0.15);
  border-radius: var(--radius);
}
.person-photo {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0; font-size: 0.95rem;
}
.person-info { display: flex; flex-direction: column; gap: 2px; }
.person-info strong { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.person-info span { font-size: 0.76rem; color: var(--text-2); }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border); color: var(--text); }
#contactForm { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { display: flex; flex-direction: column; gap: 6px; }
.fgroup label { font-size: 0.74rem; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; }
.fgroup input, .fgroup select, .fgroup textarea {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  appearance: none;
  transition: all 0.25s var(--ease);
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: var(--text-3); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.fgroup select option { background: white; color: var(--text); }
.fgroup textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER (DARK) ===== */
footer { background: var(--dark); }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; }
.footer-brand p { color: var(--tw-2); font-size: 0.85rem; line-height: 1.8; margin: 16px 0 8px; max-width: 280px; }
.f-address { display: flex; align-items: flex-start; gap: 8px; color: var(--tw-2); font-size: 0.82rem; margin: 8px 0 20px; }
.f-address i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tw-2); font-size: 0.78rem;
  transition: all 0.25s;
}
.social-links a:hover { background: rgba(255,107,53,0.15); border-color: rgba(255,107,53,0.35); color: var(--accent); transform: translateY(-3px); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--tw-3); margin-bottom: 18px; }
.footer-col a { display: flex; align-items: center; gap: 8px; color: var(--tw-2); font-size: 0.85rem; margin-bottom: 10px; transition: all 0.2s; }
.footer-col a i { color: var(--tw-3); font-size: 0.66rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--tw); padding-left: 4px; }
.footer-col a:hover i { color: var(--accent); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; font-size: 0.77rem; color: var(--tw-3); }
.footer-bottom i { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .pstep-arrow { display: none; }
  .values-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { margin-left: 0; padding-left: 20px; padding-right: 20px; padding-bottom: 56px; }
  .hmode span { display: none; }
  .hmode { padding: 14px 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr; }
}
