/* ============================================================
   IMAM SOFT — Modern Design System
   Fonts: Syne (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* === CSS Custom Properties === */
:root {
  --primary:       #0d9488;
  --primary-light: #2dd4bf;
  --primary-dark:  #0f766e;
  --dark:          #0f172a;
  --dark-2:        #1e293b;
  --dark-3:        #334155;
  --accent:        #f59e0b;
  --accent-light:  #fbbf24;
  --light:         #f8fafc;
  --light-2:       #e2e8f0;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --white:         #ffffff;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.15), 0 8px 20px rgba(0,0,0,.10);
  --shadow-teal: 0 8px 30px rgba(13,148,136,.35);

  --font-heading: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --transition:      .3s var(--ease);
  --transition-slow: .6s var(--ease);

  --max-w:    1200px;
  --nav-h:    88px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }

/* === Utilities === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-alt  { background: var(--light-2); }
.text-center  { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(13,148,136,.08);
  border: 1px solid rgba(13,148,136,.2);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-dark .section-tag {
  color: var(--accent);
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-dark .section-title { color: var(--white); }
.section-title span, .section-title .hl { color: var(--primary); }
.section-dark .section-title .hl { color: var(--primary-light); }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}
.section-dark .section-sub { color: rgba(255,255,255,.55); }
.text-center .section-sub { margin: 0 auto; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(13,148,136,.45); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--dark); font-weight: 700; }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(15,23,42,.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15,23,42,.97);
  box-shadow: 0 4px 40px rgba(0,0,0,.3);
  border-bottom-color: rgba(255,255,255,.04);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 70px; width: auto; object-fit: contain; filter: brightness(1.1) contrast(1.05); }
.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-left: 10px;
}
.nav-logo .logo-text span { color: var(--primary-light); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a svg { width: 15px; height: 15px; transition: transform var(--transition); }
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav-menu > li.dropdown:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,.65);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-panel a svg { width: 16px; height: 16px; color: var(--primary); }
.dropdown-panel a:hover {
  background: rgba(13,148,136,.12);
  color: var(--primary-light);
  padding-left: 18px;
}

/* CTA in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: var(--transition) !important;
  box-shadow: var(--shadow-teal);
}
.nav-cta:hover { background: var(--primary-dark) !important; background-color: var(--primary-dark) !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — Home
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(13,148,136,.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 85% 20%, rgba(13,148,136,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 85%, rgba(245,158,11,.07) 0%, transparent 55%),
    #0f172a;
  animation: heroPulse 14s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  0%   { opacity: 1; }
  50%  { opacity: .85; }
  100% { opacity: 1; }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: rgba(13,148,136,.18);
  top: -150px; left: -150px;
  animation: orbFloat 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(245,158,11,.1);
  bottom: -100px; right: -80px;
  animation: orbFloat 22s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 20px) scale(.97); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 28px 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 820px;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}
.hero-heading .hl { color: var(--primary-light); }
.hero-heading .tw {
  color: var(--accent);
  border-right: 3px solid var(--accent);
  padding-right: 3px;
  animation: blink .7s step-end infinite;
}
@keyframes blink { 0%,100%{border-color:var(--accent)} 50%{border-color:transparent} }

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,.58);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}
.hero-stats {
  display: flex;
  gap: 52px;
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s 1.05s forwards;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num .accent { color: var(--primary-light); }
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-hint svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--dark);
  color: var(--white);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 0% 50%, rgba(13,148,136,.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(13,148,136,.1) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at 0% 0%, black 20%, transparent 80%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 22px;
}
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb a { color: var(--primary-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero-title .hl { color: var(--primary-light); }
.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  max-width: 540px;
  line-height: 1.75;
}
.page-hero-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  margin: 28px 0 0;
}

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-body  { order: 1; }

.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
.split-media::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 2px solid rgba(13,148,136,.25);
  border-radius: var(--radius-lg);
  z-index: -1;
  transition: var(--transition);
}
.split-media:hover::before { inset: -20px -20px 20px 20px; border-color: rgba(13,148,136,.4); }

.split-badge {
  position: absolute;
  bottom: 28px;
  right: -18px;
  background: var(--accent);
  color: var(--dark);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-family: var(--font-heading);
}
.split-badge .badge-num { font-size: 34px; font-weight: 800; line-height: 1; }
.split-badge .badge-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.split-body .section-tag { margin-bottom: 16px; }
.split-body .section-title { margin-bottom: 18px; }
.split-body p { color: var(--text-muted); line-height: 1.8; font-size: 16px; margin-bottom: 16px; }
.split-body p:last-child { margin-bottom: 0; }

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 26px;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.benefit-dot {
  width: 22px; height: 22px;
  background: rgba(13,148,136,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-dot svg { width: 13px; height: 13px; }

/* ============================================================
   VISION / MISSION CARDS
   ============================================================ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
}
.vm-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.vm-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.vm-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(13,148,136,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.vm-accent {
  width: 56px; height: 56px;
  background: rgba(13,148,136,.12);
  border: 1px solid rgba(13,148,136,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 24px;
}
.vm-accent svg { width: 28px; height: 28px; }
.vm-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 10px;
}
.vm-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.vm-text { color: rgba(255,255,255,.55); line-height: 1.8; font-size: 15px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  border: 1px solid var(--light-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .sc-icon { background: var(--primary); color: var(--white); box-shadow: var(--shadow-teal); }
.sc-icon {
  width: 54px; height: 54px;
  background: rgba(13,148,136,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--transition);
}
.sc-icon svg { width: 26px; height: 26px; }
.sc-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.sc-text { color: var(--text-muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 22px; }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.sc-link svg { width: 16px; height: 16px; }
.sc-link:hover { gap: 10px; color: var(--primary-dark); }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-2);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.team-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.75) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  gap: 10px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-soc {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.team-soc:hover { background: var(--primary); }
.team-soc svg { width: 15px; height: 15px; }
.team-info { padding: 22px 24px; }
.team-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-role { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-wrap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: var(--light-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.client-cell {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  filter: grayscale(100%);
  opacity: .45;
  transition: var(--transition);
}
.client-cell:hover { filter: grayscale(0%); opacity: 1; }
.client-cell img { max-height: 44px; object-fit: contain; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%, rgba(13,148,136,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(13,148,136,.12) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner .section-title { font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; }
.cta-inner .section-sub { margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 48px;
  align-items: start;
}
.info-stack { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--light-2);
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); border-color: rgba(13,148,136,.2); transform: translateX(4px); }
.info-icon {
  width: 46px; height: 46px;
  background: rgba(13,148,136,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.info-icon svg { width: 21px; height: 21px; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.info-value { font-weight: 600; color: var(--dark); font-size: 15px; line-height: 1.5; }
.info-value a { color: var(--primary); }
.info-value a:hover { color: var(--primary-dark); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--light-2);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-field {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-field:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.form-field::placeholder { color: rgba(100,116,139,.5); }
textarea.form-field { min-height: 130px; }

.map-embed {
  margin-top: 60px;
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.4);
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.map-embed svg { width: 36px; height: 36px; color: var(--primary); opacity: .7; }
.map-embed span { font-size: 13px; }
.map-address {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.85; max-width: 270px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: var(--white); }
.footer-socials a svg { width: 15px; height: 15px; }
.footer-col-h {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col-h::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 6px; }
.footer-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: rgba(255,255,255,.45);
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact-row svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer-contact-row a { color: rgba(255,255,255,.45); }
.footer-contact-row a:hover { color: var(--primary-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,.28);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.28); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.55); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal);
  opacity: 0;
  transform: translateY(16px) scale(.8);
  transition: var(--transition);
  z-index: 999;
  pointer-events: none;
}
.scroll-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px) scale(1.05); }
.scroll-top svg { width: 20px; height: 20px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .26s; }
.reveal-d4 { transition-delay: .34s; }

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

/* preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s, visibility .5s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 48px; height: 48px;
  border: 3px solid rgba(13,148,136,.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-media { order: 0; }
  .split.reverse .split-body  { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .clients-wrap { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 72px 0; }
  .nav-burger { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(15,23,42,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: var(--transition);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,.05);
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu > li > a { justify-content: space-between; padding: 12px 14px; border-radius: var(--radius-sm); }
  .dropdown-panel {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    border: none;
    border-radius: var(--radius-sm);
    display: none;
    padding: 4px 0 4px 12px;
    margin-top: 4px;
    min-width: unset;
    pointer-events: all !important;
  }
  .dropdown.open .dropdown-panel { display: block; }
  .hero-stats { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .split-badge { right: 0; bottom: -16px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .clients-wrap { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-heading { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .clients-wrap { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
}
